/* =========================================================
   RESET / BASE
   - box-sizing global
   - overflow-x hidden para nunca ter scroll lateral
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;       /* trava scroll horizontal */
  width: 100%;
  max-width: 100%;
}

:root {
  /* Paleta escura premium */
  --bg: #0e0f12;
  --bg-soft: #141519;
  --surface: #16181d;
  --surface-2: #1c1f26;
  --border: #262a32;
  --hairline: rgba(255, 255, 255, 0.07);
  --text: #f4f6fa;
  --text-dim: #d3d8e2;     /* secundário mais claro = melhor leitura/acessibilidade */
  --text-mute: #9aa0ad;
  --red: #e11d2a;
  --red-strong: #ff2d3b;
  --green: #1fbd6a;
  --green-2: #34d685;
  --accent: #18b663;       /* verde do botão (boa conversão) */
  --accent-hover: #14a058;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Fundo com profundidade: brilhos sutis da marca em cima de um preto suave */
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(225, 29, 42, 0.14), transparent 62%),
    radial-gradient(700px 500px at 100% 12%, rgba(31, 189, 106, 0.07), transparent 60%),
    radial-gradient(700px 600px at 0% 40%, rgba(225, 29, 42, 0.05), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* =========================================================
   FAIXA SUPERIOR VERMELHA
   ========================================================= */
.top-bar {
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(180deg, var(--red-strong), var(--red));
  padding: 10px 14px;
  text-align: center;
}

.top-bar__text {
  color: #fff;
  font-weight: 700;
  font-size: clamp(13px, 3.4vw, 16px);
  letter-spacing: 0.2px;
  /* quebra com segurança no mobile, sem estourar layout */
  word-break: break-word;
  line-height: 1.3;
}

/* =========================================================
   CONTAINER PRINCIPAL
   ========================================================= */
.container {
  width: 100%;
  max-width: 720px;        /* limite elegante no desktop */
  margin: 0 auto;
  padding: 22px 16px 40px;  /* padding seguro nas laterais */
}

/* =========================================================
   HEADLINE
   ========================================================= */
.headline {
  text-align: center;
  margin-bottom: 22px;
}

.headline__title {
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  /* leve caixa de destaque, sem poluir */
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================================
   ÁREA DO VÍDEO (VERTICAL 9:16)
   - aspect-ratio evita CLS (reserva o espaço antes de carregar)
   - max-width controla o tamanho no desktop
   ========================================================= */
.video-section {
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;        /* vídeo vertical fica elegante e centralizado no desktop */
  aspect-ratio: 9 / 16;    /* formato vertical */
  margin: 0 auto;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #2ce06a; /* borda fina verde ao redor do vídeo */
}

/* ---- Feixe neon contínuo percorrendo a borda (sem aumentar a espessura) ----
   Usa um gradiente cônico que gira, recortado só na faixa de 1px da borda. */
@property --beam-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;                 /* fica acima do vídeo/capa, só na borda */
  border-radius: inherit;
  padding: 1px;              /* espessura do feixe = espessura da borda */
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg,
    transparent 250deg,
    rgba(44, 224, 106, 0.45) 305deg,
    #34d685 338deg,
    #ffffff 350deg,
    #34d685 356deg,
    transparent 360deg
  );
  /* mostra apenas a faixa da borda (recorte tipo "anel") */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: drop-shadow(0 0 3px rgba(44, 224, 106, 0.85));
  pointer-events: none;
  animation: beamSpin 3.5s linear infinite;
}

@keyframes beamSpin {
  to { --beam-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .video-wrapper::after { animation: none; }
}

/* O iframe ocupa 100% do wrapper, sem ultrapassar */
.video-frame,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Camada de play própria (cobre o vídeo até o clique) */
.video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  color: #fff;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0.25), rgba(0,0,0,0.7)),
    linear-gradient(180deg, #1a1f29, #0c0e13);
  transition: opacity 0.2s ease;
}

.video-cover__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  /* Mesmo verde do botão "Liberar acesso" */
  background: linear-gradient(325deg, #0a8f3c 0%, #2ce06a 55%, #0a8f3c 90%);
  box-shadow: 0 8px 24px rgba(44, 224, 106, 0.45);
  padding-left: 4px; /* centraliza opticamente o triângulo */
  /* Pulsa para chamar atenção e incentivar o clique */
  animation: playPulse 1.8s ease-in-out infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(44, 224, 106, 0.45), 0 0 0 0 rgba(44, 224, 106, 0.55);
  }
  70% {
    transform: scale(1.07);
    box-shadow: 0 8px 24px rgba(44, 224, 106, 0.45), 0 0 0 20px rgba(44, 224, 106, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(44, 224, 106, 0.45), 0 0 0 0 rgba(44, 224, 106, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-cover__play { animation: none; }
}

.video-cover__label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Esconde a camada de play depois do clique */
.video-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Camada que bloqueia visualmente o vídeo enquanto o modal não é enviado.
   Fica acima do iframe para impedir interação com o player. */
.video-lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(2px);
}
.video-lock.is-active {
  display: block;
}

/* =========================================================
   BOTÃO DE CTA (CHECKOUT) ABAIXO DO VÍDEO
   ========================================================= */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;          /* 10px abaixo do vídeo */
}

.cta-btn {
  display: none;             /* oculto até o JS revelar no tempo certo */
  width: 100%;
  max-width: 380px;          /* mesma largura do vídeo */
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;               /* letras brancas */
  border: none;
  border-radius: 12px;
  /* Efeito "shiny" (adaptado em verde): gradiente diagonal com área extra
     para o brilho deslizar (background-size > 100%). */
  background-image: linear-gradient(325deg, #0a8f3c 0%, #2ce06a 55%, #0a8f3c 90%);
  background-size: 280% auto;
  background-position: 0% center;
  /* Brilho externo + reflexos internos (aparência glossy 3D). */
  box-shadow:
    0 0 20px rgba(44, 224, 106, 0.5),
    0 5px 5px -1px rgba(16, 140, 60, 0.35),
    inset 4px 4px 8px rgba(190, 255, 215, 0.5),
    inset -4px -4px 8px rgba(8, 110, 48, 0.45);
  transition: background-position 0.7s ease, transform 0.05s ease;
}

/* Desktop: ao passar o mouse, desliza o brilho para o outro lado. */
.cta-btn:hover {
  background-position: 100% center;
}

.cta-btn:active { transform: scale(0.99); }

/* Quando revelado: exibe + pulse + brilho deslizante contínuo
   (o shine roda sozinho, então o efeito também aparece no mobile). */
.cta-btn.is-visible {
  display: block;
  animation:
    ctaPulse 1.5s ease-in-out infinite,
    ctaShine 3s linear infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

@keyframes ctaShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Respeita usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  .cta-btn.is-visible { animation: none; }
}

/* =========================================================
   MODAL DE BLOQUEIO
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;             /* controlado por .is-open */
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #1c1c1c, #141414);
  /* borda vermelha sutil ao redor do modal (estilo premium) */
  border: 1px solid rgba(225, 29, 42, 0.55);
  border-radius: 18px;
  overflow: hidden;          /* faz a faixa do topo respeitar o arredondado */
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(225, 29, 42, 0.12),
    0 0 40px rgba(225, 29, 42, 0.12);
  /* animação leve, sem peso */
  animation: modalIn 0.18s ease-out;
}

@keyframes modalIn {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}

/* Faixa superior do modal */
.modal__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  background: linear-gradient(90deg, #b3121d, var(--red-strong), #b3121d);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Conteúdo interno do modal */
.modal__body {
  padding: 24px 22px 20px;
}

/* Ícone de cadeado em círculo */
.modal__icon {
  width: 58px;
  height: 58px;
  margin: 2px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--red-strong);
  background: radial-gradient(circle at 50% 40%, rgba(225,29,42,0.22), rgba(225,29,42,0.06));
  border: 1px solid rgba(225, 29, 42, 0.45);
}

.modal__title {
  font-size: clamp(20px, 5vw, 25px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 20px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Selo de segurança no rodapé do modal */
.modal__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #7d8493;
}

/* Acessível: esconde visualmente, mantém para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== FORM ===================== */
.field {
  margin-bottom: 14px;
}

.field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dim);
}

.field__input {
  width: 100%;
  max-width: 100%;
  padding: 15px 16px;
  font-size: 16px;          /* >=16px evita zoom automático no iOS */
  color: var(--text);
  background: #222222;
  border: 1px solid #333333;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__input::placeholder { color: #6b7280; }

.field__input:focus {
  border-color: var(--red-strong);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, 0.18);
}

.field__input.is-invalid {
  border-color: var(--red-strong);
}

.field__error {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--red-strong);
}

.field__error--form {
  text-align: center;
  margin-top: 10px;
}

.modal__btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #c4121d, var(--red-strong), #c4121d);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(225, 29, 42, 0.35);
  transition: filter 0.15s ease, transform 0.05s ease;
}

.modal__btn:hover { filter: brightness(1.08); }
.modal__btn:active { transform: scale(0.99); }

.modal__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =========================================================
   CONTEÚDO DE VENDAS (revelado por tempo)
   - .sales-content começa oculto (display:none)
   - cada .reveal faz fade-in suave quando revelado
   ========================================================= */
.sales-content {
  display: none;            /* oculto até o JS revelar */
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* Cada seção entra suavemente ao aparecer na rolagem
   (a classe .is-inview é adicionada pelo JS via IntersectionObserver) */
.reveal.is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
}

/* ---------- Seção genérica ---------- */
.section { margin-top: 52px; }

.section__title {
  font-size: clamp(21px, 5.4vw, 29px);
  font-weight: 800;
  text-align: center;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

/* Detalhe de marca: linha curta com gradiente abaixo do título */
.section__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-strong));
}

.section__lead {
  font-size: 15.5px;
  color: var(--text-dim);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

/* ---------- Cards (o que você recebe / membros) ----------
   Mobile-first: 1 coluna por padrão; 2 colunas só em telas maiores. */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  min-width: 0;            /* evita overflow do grid no mobile */
  position: relative;
  /* Layout: ícone + título na 1ª linha; descrição ocupando as 2 colunas embaixo */
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
  row-gap: 8px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  /* Estado inicial da animação lateral (revelado via scroll, um a um) */
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Alterna o lado de entrada (zig-zag) */
.card:nth-child(even) { transform: translateX(44px); }

/* Quando entra na tela, desliza para a posição final */
.card.is-inview { opacity: 1; transform: none; }

.card:hover {
  border-color: rgba(31, 189, 106, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .card { opacity: 1; transform: none; transition: none; }
}

.card__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--green-2);
  background:
    radial-gradient(circle at 50% 35%, rgba(31, 189, 106, 0.28), rgba(31, 189, 106, 0.08));
  border: 1px solid rgba(31, 189, 106, 0.45);
  box-shadow: 0 6px 18px rgba(31, 189, 106, 0.18);
}

.card__ic svg { width: 26px; height: 26px; }

/* O ícone da IA tem mais detalhes, então fica maior dentro do chip */
.card__ic svg[viewBox="0 0 1000 1000"] { width: 34px; height: 34px; }

.card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Descrição ocupa a largura toda do card, abaixo do ícone+título */
.card__text {
  grid-column: 1 / -1;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---------- Lista do modelo ---------- */
.model-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
}

.model-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hairline);
  border-radius: 14px;
  font-size: 14.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  counter-increment: model;
}

.model-list { counter-reset: model; }

.model-list li::before {
  content: counter(model);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.disclaimer {
  font-size: 12.5px;
  color: #8a91a0;
  text-align: center;
  max-width: 520px;
  margin: 16px auto 0;
  font-style: italic;
}

/* ---------- Comparativo ----------
   Mobile-first: colunas empilhadas; lado a lado só no desktop. */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.compare__col {
  min-width: 0;            /* impede o conteúdo de estourar para a direita */
  border-radius: 18px;
  padding: 0 18px 18px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare__col--bad { border-color: rgba(225, 29, 42, 0.35); }
.compare__col--good { border-color: rgba(31, 189, 106, 0.4); }

/* Cabeçalho em barra com leve degradê da cor */
.compare__head {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  margin: 0 -18px 14px;
  padding: 12px 14px;
}

.compare__col--bad .compare__head {
  color: #ff8a92;
  background: linear-gradient(180deg, rgba(225, 29, 42, 0.16), transparent);
  border-bottom: 1px solid rgba(225, 29, 42, 0.25);
}
.compare__col--good .compare__head {
  color: var(--green-2);
  background: linear-gradient(180deg, rgba(31, 189, 106, 0.16), transparent);
  border-bottom: 1px solid rgba(31, 189, 106, 0.25);
}

.compare__list { list-style: none; }

.compare__list li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.compare__col--bad .compare__list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ff6b75;
  font-weight: 700;
}

.compare__col--good .compare__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34d685;
  font-weight: 700;
}

/* ---------- Para quem é (duas listas) ---------- */
.two-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.qlist {
  min-width: 0;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.qlist--yes { border-color: rgba(31, 189, 106, 0.4); }
.qlist--no { border-color: rgba(225, 29, 42, 0.35); }

.qlist__head {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.qlist--yes .qlist__head { color: #34d685; }
.qlist--no .qlist__head { color: #ff6b75; }

.qlist ul { list-style: none; }

.qlist li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.45;
}

.qlist--yes li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #34d685; font-weight: 700;
}

.qlist--no li::before {
  content: "✕";
  position: absolute; left: 0;
  color: #ff6b75; font-weight: 700;
}

/* ---------- Passo a passo ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;   /* mobile-first: empilhado */
  gap: 12px;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 16px;
  font-size: 14.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step:hover { transform: translateY(-2px); border-color: rgba(31, 189, 106, 0.35); }

.step__num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #19c065, #12a052);
  color: #fff;
  font-weight: 800;
}

/* ---------- Área de membros ---------- */
.member-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.member-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hairline);
  border-radius: 14px;
  font-size: 14.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.member-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #34d685;
  font-weight: 800;
}

/* ---------- Reforço da oferta ---------- */
.offer {
  position: relative;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(31, 189, 106, 0.12), transparent 70%),
    linear-gradient(180deg, #1b1f27, #121419);
  border: 1px solid rgba(31, 189, 106, 0.45);
  border-radius: 22px;
  padding: 30px 22px;
  overflow: hidden;          /* faz a faixa do topo respeitar os cantos arredondados */
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(31, 189, 106, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(31, 189, 106, 0.12);
}

.offer__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.offer__title {
  font-size: clamp(21px, 5.5vw, 28px);
  font-weight: 800;
  margin-bottom: 14px;
}

/* Faixa vermelha de ponta a ponta no topo do card (anula o padding do .offer) */
.offer__title--red {
  color: #fff;
  background: linear-gradient(90deg, #b3121d, var(--red-strong), #b3121d);
  margin: -30px -22px 20px;
  padding: 14px 18px;
}

.offer__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.offer__from { font-size: 13px; color: var(--text-dim); }

.offer__value {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  /* verde forte em gradiente, no mesmo tom do botão */
  background: linear-gradient(180deg, #2ce06a, #12a052);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #19c065; /* fallback se o clip não for suportado */
}

.offer__cond { font-size: 13px; color: var(--text-dim); }

.offer__receive {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.offer__list {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 0 auto 20px;
}

.offer__list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
}

.offer__list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #34d685; font-weight: 800;
}

.offer__safe {
  font-size: 12.5px;
  color: #8a91a0;
  margin-top: 14px;
  line-height: 1.5;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.offer__intro,
.offer__cta-line {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 16px;
}

.offer__cta-line { margin-top: 18px; color: var(--text); font-weight: 600; }

/* ---------- Blocos de texto corrido (por que R$47) ---------- */
.prose {
  max-width: 600px;
  margin: 0 auto;
}

.prose p {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.prose strong { color: var(--text); }

.prose__highlight {
  text-align: center;
  font-size: clamp(16px, 4.4vw, 19px);
  font-weight: 700;
  color: var(--text);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

/* ---------- Bloco de quebra de risco ---------- */
.risk {
  max-width: 600px;
  margin: 0 auto;
  background:
    radial-gradient(500px 200px at 50% 0%, rgba(31, 189, 106, 0.1), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(31, 189, 106, 0.4);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: var(--shadow);
}

.risk p {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.risk strong { color: var(--text); }

/* =========================================================
   BOTÃO DE COMPRA (reforço + sticky) - verde shiny
   ========================================================= */
.btn-buy {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-radius: 12px;
  background-image: linear-gradient(325deg, #0a8f3c 0%, #2ce06a 55%, #0a8f3c 90%);
  background-size: 280% auto;
  background-position: 0% center;
  box-shadow:
    0 0 20px rgba(44, 224, 106, 0.45),
    inset 4px 4px 8px rgba(190, 255, 215, 0.45),
    inset -4px -4px 8px rgba(8, 110, 48, 0.4);
  transition: background-position 0.7s ease, transform 0.05s ease;
  animation: ctaShine 3s linear infinite;
}

.btn-buy:hover { background-position: 100% center; }
.btn-buy:active { transform: scale(0.99); }

@media (prefers-reduced-motion: reduce) {
  .btn-buy { animation: none; }
}

/* =========================================================
   TELAS MAIORES (tablet/desktop): grids em 2 colunas
   Mobile-first: por padrão tudo fica empilhado (1 coluna);
   só a partir daqui as colunas aparecem lado a lado.
   ========================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: repeat(2, 1fr); }
  .two-lists { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   AJUSTES MOBILE PEQUENOS (≤360px)
   ========================================================= */
@media (max-width: 360px) {
  .container { padding: 18px 12px 32px; }
  .modal { padding: 22px 16px; }
  .video-cover__play { width: 64px; height: 64px; }
}
