:root {
  --bg-main: #05060a;
  --bg-card: #12131a;
  --bg-card-alt: #181927;
  --bg-strip: #7b3eff;
  --bg-strip-secondary: #262742;
  --text-main: #f7f7ff;
  --text-muted: #a1a4c2;
  --accent: #ff5c5c;
  --accent-strong: #ff914d;
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
}

/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: radial-gradient(
    circle at top,
    #17182a 0,
    #05060a 45%,
    #020208 100%
  );
  color: var(--text-main);
  line-height: 1.5;
}

/* Espaçamento geral das seções */
.section {
  padding: 6rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

/* Barra superior fixa */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    90deg,
    rgba(5, 6, 10, 0.85),
    rgba(9, 10, 20, 0.85)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.topbar-logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.topbar-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.topbar-nav {
  display: flex;
  gap: 1.75rem;
}

.topbar-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar-nav a:hover {
  color: var(--text-main);
}

/* Faixa com timer */
.top-strip {
  margin-top: 64px;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(90deg, #d92b2b, #ff6b6b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 8px 30px rgba(217, 43, 43, 0.15);
  border-bottom: 1px solid rgba(255, 100, 100, 0.12);
}

.top-strip-secondary {
  margin-top: 0;
  background: var(--bg-strip-secondary);
}

.top-strip-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.timer {
  display: flex;
  gap: 0.5rem;
}

.timer-box {
  width: 70px;
  height: 70px;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Estilo especial para timer dentro da primeira faixa (mais chamativo) */
.top-strip .timer-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 120, 120, 0.32);
  box-shadow: 0 6px 20px rgba(217, 43, 43, 0.12);
}

/* Animação expandir/encolher apenas para os timer-box dentro da primeira faixa */
.top-strip .timer-box {
  animation: expandShrink 1.6s ease-in-out infinite;
  transform-origin: center;
}

.top-strip .timer-box:nth-child(1) {
  animation-delay: 0s;
}
.top-strip .timer-box:nth-child(2) {
  animation-delay: 0.08s;
}
.top-strip .timer-box:nth-child(3) {
  animation-delay: 0.16s;
}
.top-strip .timer-box:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes expandShrink {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(217, 43, 43, 0.12);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 18px 40px rgba(217, 43, 43, 0.22);
  }
}

.timer-number {
  font-size: 1.1rem;
  font-weight: 700;
}

.timer-label {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Títulos */
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem auto;
}

.center {
  text-align: center;
}

/* Botões */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1.05rem 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-strong), #ff5c8a);
  color: #f0f0f0ff;
  box-shadow: 0 20px 40px rgba(255, 145, 77, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(255, 145, 77, 0.55);
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
}

.hero-title {
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Pré-visualizações */
.hero-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
  max-width: 900px;
  width: 100%;
}

.preview-card {
  border-radius: 18px;
  background: radial-gradient(
    circle at top left,
    #353a64 0,
    #161824 40%,
    #090914 100%
  );
  border: 1px solid var(--border-soft);
  height: 180px;
  box-shadow: var(--shadow-soft);
}

/* Hero offer */
.hero-offer {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(18, 19, 26, 0.94),
    rgba(30, 32, 52, 0.96)
  );
  border-radius: 24px;
  padding: 2rem 1.75rem 1.75rem 1.75rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-price-box {
  margin-bottom: 1.5rem;
}

.hero-price-old {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero-price-current {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.hero-price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-cta {
  margin-top: 0.25rem;
}

.hero-cta-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Para quem é */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.for-who-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.for-who-icon {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}

.for-who-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.for-who-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* O que não precisa fazer */
.no-need {
  padding-top: 4rem;
}

.no-need-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.no-need-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  padding: 1rem 0.75rem;
  text-align: center;
}

.no-need-icon {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.no-need-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Layout para seção de serviço (inclusos / não inclusos) */
.service-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.service-included,
.service-excluded {
  flex: 1 1 340px;
  max-width: 560px;
}
.service-included h3,
.service-excluded h3 {
  margin-bottom: 0.75rem;
}
.service-excluded h4 {
  margin: 0.6rem 0 0.25rem 0;
  color: #ffd6d6;
}
.exclude-block ul {
  margin-left: 1rem;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .service-grid {
    flex-direction: column;
    gap: 1rem;
  }
}

.benefit-card {
  background: var(--bg-card-alt);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Modelos */
.models-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  scroll-behavior: smooth;
}

/* Barra de rolagem - webkit (Chrome, Safari, Edge) */
.models-gallery::-webkit-scrollbar {
  height: 8px;
}

.models-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.models-gallery::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7b3eff, #ff914d);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.models-gallery::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9955ff, #ffaa66);
}

/* Barra de rolagem - Firefox */
.models-gallery {
  scrollbar-color: #7b3eff rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
}

.model-card {
  min-width: 200px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem 1.35rem 1rem;
  border: 1px solid var(--border-soft);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123, 62, 255, 0.15);
  cursor: pointer;
}

.model-thumb {
  height: 350px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  background: linear-gradient(145deg, #353a64, #181927);
  overflow: hidden;
}

.model-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bônus */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
}

.bonus-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.bonus-card h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Preço final */
.final-price {
  padding-top: 0;
}

.final-price-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}

.final-list .section-title {
  margin-bottom: 1.25rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
}

.check-icon {
  color: #49d48c;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.final-offer-box {
  background: var(--bg-card-alt);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.final-offer-title {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.final-offer-prices {
  margin-bottom: 1.5rem;
}

.final-price-old {
  display: block;
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.final-price-current {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.final-price-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.final-cta {
  margin-bottom: 0.9rem;
}

.final-cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Garantia */
.guarantee {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.guarantee-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-soft);
  text-align: center;
}

.final-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.final-box-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

/* Animação de pulsação */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.guarantee-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.guarantee p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(10, 11, 20, 0.85);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Estado ativo do accordion */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Rodapé */
.footer {
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  background: #020208;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4rem;
}

.footer-logo {
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-title {
    /* Frase urgente na seção final */
    .final-urgent {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffdede;
      background: linear-gradient(
        90deg,
        rgba(217, 43, 43, 0.12),
        rgba(255, 107, 107, 0.06)
      );
      padding: 0.6rem 1rem;
      border-radius: 10px;
      margin: 0.8rem auto 1rem auto;
      max-width: 760px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(217, 43, 43, 0.06);
    }

    @media (max-width: 640px) {
      .final-urgent {
        font-size: 0.98rem;
        padding: 0.5rem 0.7rem;
      }
      .topbar-logo img {
        height: 34px;
      }
      .hero-logo img {
        height: 80px;
      }
    }
    font-size: 2.2rem;
  }

  .for-who-grid,
  .benefits-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .no-need-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-price-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    justify-content: space-between;
  }

  .topbar-nav {
    display: none; /* simples para foco na estrutura */
  }

  .top-strip,
  .top-strip-secondary {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-previews {
    grid-template-columns: 1fr;
  }

  .no-need-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-gallery {
    grid-auto-columns: 80%;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 4.5rem 1.25rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .no-need-row {
    grid-template-columns: 1fr;
  }

  .top-strip,
  .top-strip-secondary {
    align-items: center;
  }

  .timer {
    width: 100%;
    justify-content: center;
  }
}

/* Modal de Galeria */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(123, 62, 255, 0.2);
  border: 2px solid #7b3eff;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.modal-close:hover {
  background: rgba(123, 62, 255, 0.4);
  transform: scale(1.1);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(123, 62, 255, 0.2);
  border: 2px solid #7b3eff;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.modal-nav:hover {
  background: rgba(123, 62, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid rgba(123, 62, 255, 0.3);
}

@media (max-width: 768px) {
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 10px;
    right: 10px;
  }
}
