/* ============================================================
   Ressuscita Zumbi v2026 — Edição IA · LP de vendas
   Paleta: roxo #580d8e + preto + branco · Poppins única
   Direção: block-based · bold · alto contraste · premium
   Ritmo de blocos alternados (branco / tint / dark / roxo sólido)
   mobile-first · responsivo 375 / 768 / 1024 / 1440
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ───── núcleo de marca ───── */
  --violet:     #580d8e;
  --violet-h:   #7218b3;   /* hover (mais claro) */
  --violet-d:   #3d0863;   /* dark */
  --violet-dd:  #2a0546;   /* deep */
  --violet-l:   #f6ecff;   /* tint background claro */
  --violet-l2:  #efe1fc;   /* tint um tom mais forte */
  --violet-t:   rgba(88, 13, 142, 0.16);
  --violet-glow:rgba(123, 35, 184, 0.45);

  /* near-black da marca pros dark blocks */
  --near:       #140a1f;   /* near-black roxo (dark block) */
  --near2:      #1d0f2e;   /* gradiente do dark block */

  --black:      #1a1320;   /* texto principal (preto suave) */
  --ink:        #100016;
  --white:      #ffffff;

  --fg:         #18101f;
  --fg2:        #4a4257;   /* secundário (AA sobre branco) */
  --fg3:        #6b6379;   /* terciário */

  /* texto sobre dark blocks */
  --on-dark:    #f3ecfb;
  --on-dark-2:  #c9b8e0;
  --on-dark-3:  #9d8bbb;

  /* funcionais (uso restrito) */
  --gold:       #FFC107;   /* selo garantia */
  --gold-d:     #b8860b;
  --green:      #1f7a34;   /* economia/save */
  --green-l:    #28a745;
  --red:        #c62828;   /* perda */
  --red-l:      #e53935;
  --red-bg:     #fdecee;
  --green-bg:   #e8f7ed;

  --gray-bg:    #f6f4f9;   /* tint neutro */
  --strike:     #948c9f;   /* riscado/disclaimer */
  --border:     #ece6f3;
  --border-h:   #ddd3ec;

  /* ───── raios ───── */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 999px;
  --r:     18px;           /* radius padrão de card grande */

  /* ───── escala de sombra consistente ───── */
  --shadow-sm: 0 1px 2px rgba(24,16,31,0.05), 0 2px 6px rgba(24,16,31,0.05);
  --shadow-md: 0 4px 10px rgba(24,16,31,0.06), 0 10px 24px rgba(24,16,31,0.08);
  --shadow-lg: 0 12px 28px rgba(24,16,31,0.10), 0 24px 56px rgba(24,16,31,0.12);
  --shadow-violet: 0 10px 28px rgba(88,13,142,0.30);
  --shadow-violet-lg: 0 18px 48px rgba(88,13,142,0.40);

  /* ───── layout ───── */
  --maxw:  1120px;
  --readw: 720px;

  /* ───── ritmo vertical premium (seção respira) ───── */
  --sec-pad: clamp(64px, 9vw, 112px);
  --gutter:  clamp(20px, 5vw, 40px);
}

html, body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--fg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
@media (min-width: 880px) { body { font-size: 18px; } }

img, video { max-width: 100%; display: block; }

::selection { background: var(--violet); color: #fff; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--violet-h), var(--violet-d));
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--shadow-violet);
}
.logo-name .dot { color: var(--violet); }
.top-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--violet);
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--border-h);
  border-radius: var(--r-pill);
  background: var(--violet-l);
}
@media (max-width: 480px) { .top-meta { font-size: 11px; padding: 4px 9px; } }

/* ============================================================
   SECTION SHELL — ritmo de blocos alternados
   ============================================================ */
.section {
  position: relative;
  z-index: 2;
  padding: var(--sec-pad) var(--gutter);
}
.section--tint { background: var(--violet-l); }

/* DARK BLOCK — usado na Urgência (e disponível p/ outros) cria ritmo escuro */
.section--dark {
  background:
    radial-gradient(120% 120% at 80% -10%, var(--violet-d) 0%, var(--near2) 45%, var(--near) 100%);
  color: var(--on-dark);
}

.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap--read { max-width: var(--readw); margin: 0 auto; }

/* eyebrow — maiúscula, letter-spacing, cor roxa, com traço */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--violet);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--violet), var(--violet-h));
}
.section--dark .eyebrow { color: #c79bf0; }
.section--dark .eyebrow::before { background: linear-gradient(90deg, var(--gold), #ffd95e); }

/* section heading — grande e bold */
.sec-title {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  text-wrap: balance;
  max-width: 24ch;
}
.sec-title .vi { color: var(--violet); }
.sec-title .em { font-style: italic; }
.section--dark .sec-title { color: #fff; }
.section--dark .sec-title .vi { color: var(--gold); }

.sec-lead {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--fg2);
  max-width: 62ch;
  text-wrap: pretty;
}
.sec-lead strong { color: var(--fg); font-weight: 700; }
.sec-lead em { font-style: italic; }
.sec-lead + .sec-lead { margin-top: 14px; }
.section--dark .sec-lead { color: var(--on-dark-2); }
.section--dark .sec-lead strong { color: #fff; }

/* ============================================================
   VSL-HERO (Blocos 1+2 + vídeo na 1ª dobra)
   Fundo gradiente premium roxo→escuro · SEM foto de pessoa.
   O vídeo (.vsl-frame) é o herói visual: centralizado, 16:9, glow roxo.
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 56px) var(--gutter) clamp(40px, 7vw, 72px);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}
/* fundo gradiente premium dark — combina com o vídeo, sem foto */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 95% at 50% -10%, var(--violet-h) 0%, var(--violet) 30%, var(--violet-d) 62%, var(--near) 100%);
}
/* brilho roxo sutil atrás do vídeo */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 58%, var(--violet-glow) 0%, transparent 62%);
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 3vw, 22px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: #ecd7ff;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.headline {
  font-size: clamp(1.8rem, 5.2vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  max-width: 20ch;
}
.headline .em {
  color: var(--gold);
  font-style: normal;
}
.headline .place { color: #e2c5ff; }
.hero-sub {
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  line-height: 1.55;
  color: #efe6f8;
  font-weight: 400;
  text-wrap: pretty;
  max-width: 50ch;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-sub strong { color: var(--white); font-weight: 700; }

@media (min-width: 880px) {
  .hero { padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(56px, 7vw, 88px); min-height: auto; }
}

/* ============================================================
   CTA — botão roxo com profundidade (gradiente + sombra roxa)
   ============================================================ */
.cta-block { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-block--center { align-items: center; margin-top: clamp(28px, 5vw, 44px); }
.cta-block--center .cta { max-width: 540px; }

.cta {
  width: 100%;
  min-height: 62px;
  padding: 17px 26px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet-h) 0%, var(--violet) 55%, var(--violet-d) 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
  box-shadow: var(--shadow-violet), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.2s ease;
}
.cta:hover {
  background: linear-gradient(135deg, #8526c4 0%, var(--violet-h) 60%, var(--violet) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-violet-lg), inset 0 1px 0 rgba(255,255,255,0.22);
}
.cta:active { transform: translateY(-1px) scale(0.99); }
.cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.cta--big { min-height: 72px; font-size: clamp(1.1rem, 2.8vw, 1.3rem); padding: 20px 30px; }
.cta-label { line-height: 1.18; }

/* pulse na 1ª view (só transform — performance) */
.cta--pulse { animation: cta-pulse 2s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

.cta-micro {
  font-size: 13.5px;
  font-weight: 600;
  color: #efe6f8;
  text-align: center;
  line-height: 1.5;
}
/* sobre fundo claro */
.section .cta-micro,
.price-box .cta-micro { color: var(--fg2); }
/* sobre blocos escuros: Urgência (sobrescreve o claro acima) */
[data-screen-label="Urgência"] .cta-micro,
.section--dark .cta-micro { color: var(--on-dark-2); }
.hero .cta-micro { color: #efe6f8; }

/* trust bar — pills/chips */
.trust-bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}
/* no VSL-hero centrado, as pills ficam centralizadas abaixo do CTA */
.hero .trust-bar { justify-content: center; }
.cta-block--center .trust-bar { justify-content: center; }
.trust-bar li {
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  color: #ecdcff;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}

/* ============================================================
   Bloco 3 — abertura / cena viva (fundo branco)
   ============================================================ */
.story-lead { margin-top: 16px; font-size: clamp(1.05rem, 2.4vw, 1.18rem); line-height: 1.65; color: var(--fg2); }
.story-lead:first-of-type { margin-top: 20px; }
.story-lead strong { color: var(--fg); font-weight: 700; }
.story-punch {
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  font-weight: 800;
  color: var(--violet);
  padding-left: 16px;
  border-left: 4px solid var(--violet);
}
.author-intro {
  margin-top: 32px;
  padding: 26px 26px 26px 28px;
  background: linear-gradient(135deg, var(--violet-l) 0%, var(--violet-l2) 100%);
  border-radius: var(--r);
  border-left: 5px solid var(--violet);
  box-shadow: var(--shadow-sm);
}
.author-intro p { font-size: 17px; line-height: 1.62; color: var(--fg2); }
.author-intro p + p { margin-top: 12px; }
.author-intro strong { color: var(--violet-d); font-weight: 700; }

/* ============================================================
   Bloco 5 — dor + calculadora + faq top-3 (fundo tint)
   ============================================================ */
.pain-list {
  list-style: none;
  margin-top: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) { .pain-list { grid-template-columns: 1fr 1fr; gap: 16px; } }
.pain-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pain-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-h); }
.pain-emoji {
  font-size: 22px; line-height: 1;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--violet-l);
}
.pain-item p { font-size: 15.5px; line-height: 1.5; color: var(--fg2); align-self: center; }

/* calculadora — bloco interativo premium */
.calc {
  margin-top: clamp(36px, 6vw, 56px);
  padding: clamp(26px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--border-h);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--violet-h), var(--violet), var(--violet-d));
}
.calc-title { font-size: clamp(1.25rem, 3.4vw, 1.6rem); font-weight: 800; color: var(--fg); letter-spacing: -0.02em; }
.calc-help { margin-top: 8px; font-size: 15px; color: var(--fg3); }
.calc-slider-wrap { display: block; margin-top: 24px; }
.calc input[type="range"] {
  width: 100%;
  height: 10px;
  -webkit-appearance: none; appearance: none;
  background: linear-gradient(90deg, var(--violet-h) 0%, var(--violet) var(--fill, 30%), var(--border) var(--fill, 30%));
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-h), var(--violet-d));
  border: 4px solid #fff;
  box-shadow: 0 3px 12px rgba(88,13,142,0.5);
  cursor: grab;
}
.calc input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
.calc input[type="range"]::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-h), var(--violet-d));
  border: 4px solid #fff;
  box-shadow: 0 3px 12px rgba(88,13,142,0.5);
  cursor: grab;
}
.calc input[type="range"]:focus-visible { box-shadow: 0 0 0 4px var(--violet-t); }
.calc-fat-label { margin-top: 16px; font-size: 16px; color: var(--fg2); text-align: center; }
.calc-fat-label strong { color: var(--violet); font-weight: 800; font-size: 21px; }
.calc-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .calc-grid { grid-template-columns: 1fr 1fr; } }
.calc-cell {
  padding: 22px 18px;
  border-radius: var(--r);
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid transparent;
}
.calc-cell--loss { background: var(--red-bg); border-color: rgba(198,40,40,0.18); }
.calc-cell--save { background: var(--green-bg); border-color: rgba(31,122,52,0.20); }
.calc-cell-label { font-size: 13px; font-weight: 700; line-height: 1.35; }
.calc-cell--loss .calc-cell-label { color: var(--red); }
.calc-cell--save .calc-cell-label { color: var(--green); }
.calc-cell-num { font-size: clamp(2.1rem, 9vw, 2.9rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.calc-cell--loss .calc-cell-num { color: var(--red); }
.calc-cell--save .calc-cell-num { color: var(--green); }
.calc-cell-sub { font-size: 12px; font-weight: 600; }
.calc-cell--loss .calc-cell-sub { color: var(--red); }
.calc-cell--save .calc-cell-sub { color: var(--green); }
.calc-disclaimer { margin-top: 16px; font-size: 12px; color: var(--strike); line-height: 1.45; }

.dor-faq-title { margin-top: clamp(40px, 6vw, 56px); font-size: clamp(1.2rem, 3.2vw, 1.5rem); font-weight: 800; color: var(--fg); text-wrap: balance; }

/* ============================================================
   Bloco 6 — solução / mecanismo / IA (fundo branco)
   ============================================================ */
.mechanism {
  margin-top: clamp(28px, 5vw, 44px);
  padding: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(120% 130% at 90% -20%, var(--violet-d) 0%, var(--near2) 55%, var(--near) 100%);
  color: var(--on-dark);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.mechanism-title {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.mechanism p { margin-top: 14px; font-size: 17px; line-height: 1.62; color: var(--on-dark-2); }
.mechanism p strong { color: #fff; font-weight: 700; }
.mechanism em { font-style: italic; color: #e2c5ff; font-weight: 600; }
.mechanism-badge {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r);
}
.mechanism-badge-num {
  font-size: clamp(2.4rem, 11vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(255,193,7,0.3);
}
.mechanism-badge-txt { font-size: 15.5px; line-height: 1.5; color: var(--on-dark-2); }
.mechanism-disclaimer { margin-top: 14px; font-size: 13px; color: var(--on-dark-3); font-style: italic; }

.ai-title { margin-top: clamp(36px, 5vw, 52px); font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800; color: var(--fg); letter-spacing: -0.02em; }
.ai-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 620px) { .ai-grid { grid-template-columns: 1fr 1fr; } }
.ai-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-h); }
.ai-ico {
  font-size: 24px;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet-l), var(--violet-l2));
  display: grid; place-items: center; flex-shrink: 0;
}
.ai-card p { font-size: 15px; line-height: 1.42; color: var(--fg); font-weight: 600; }
.ai-foot {
  margin-top: clamp(26px, 4vw, 36px);
  font-size: clamp(1.1rem, 2.6vw, 1.25rem);
  line-height: 1.5; color: var(--fg); font-weight: 700;
  text-align: center;
  padding: 22px 24px;
  background: var(--violet-l);
  border-radius: var(--r);
  border: 1px solid var(--border-h);
}

/* ============================================================
   Bloco 7 — benefícios (fundo tint)
   ============================================================ */
.benefits {
  list-style: none;
  margin-top: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) { .benefits { grid-template-columns: 1fr 1fr; } }
.benefit {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-h); }
.benefit-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-h), var(--violet-d));
  color: var(--white);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
  box-shadow: var(--shadow-violet);
}
.benefit-check svg { width: 17px; height: 17px; }
.benefit p { font-size: 15.5px; line-height: 1.55; color: var(--fg2); }
.benefit p strong { color: var(--fg); font-weight: 700; }
.benefit-num { color: var(--green); font-size: 19px; font-weight: 900; }
.benefit-badge {
  display: inline-block;
  font-size: 11.5px; font-weight: 800;
  color: var(--green);
  background: var(--green-bg);
  padding: 3px 10px; border-radius: var(--r-pill);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.benefit-disc { display: block; margin-top: 6px; font-size: 13px; color: var(--strike); font-weight: 400; }

/* ============================================================
   Bloco 8 — prova social (fundo branco, denso)
   ============================================================ */
.proof-stats {
  margin-top: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .proof-stats { grid-template-columns: repeat(3, 1fr); } }
.proof-stat {
  text-align: center;
  padding: clamp(28px, 4vw, 40px) 22px;
  background:
    radial-gradient(130% 120% at 50% -10%, var(--violet-h) 0%, var(--violet) 50%, var(--violet-d) 100%);
  border-radius: var(--r-xl);
  color: var(--white);
  box-shadow: var(--shadow-violet-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proof-stat:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(88,13,142,0.48); }
.proof-num {
  display: block;
  font-size: clamp(2.8rem, 11vw, 4.2rem);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.proof-label { display: block; margin-top: 14px; font-size: 14px; line-height: 1.45; color: #f0e3fc; }
.proof-note {
  margin-top: 26px; max-width: 66ch;
  font-size: 15px; line-height: 1.6; color: var(--fg2);
  padding: 20px 22px; background: var(--gray-bg); border-radius: var(--r);
  border-left: 4px solid var(--violet);
}
.proof-note em { font-style: italic; font-weight: 700; color: var(--fg); }
.proof-note strong { color: var(--fg); font-weight: 700; }
.proof-sub { margin-top: clamp(40px, 6vw, 60px); font-size: clamp(1.1rem, 2.6vw, 1.25rem); color: var(--fg); font-weight: 700; }

/* carousel prints — scroll horizontal suave */
.prints-carousel {
  margin-top: 20px;
  overflow: hidden;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
}
.prints-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  padding: 4px var(--gutter) 16px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
}
.prints-track::-webkit-scrollbar { height: 8px; }
.prints-track::-webkit-scrollbar-thumb { background: var(--border-h); border-radius: 999px; }
.prints-track::-webkit-scrollbar-thumb:hover { background: var(--violet); }
.print-card {
  flex: 0 0 auto;
  width: 250px;
  aspect-ratio: 9 / 16;
  background: var(--gray-bg) repeating-linear-gradient(135deg, #ece6f4 0 12px, #f4eefb 12px 24px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.print-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.print-card img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 880px) { .print-card { width: 290px; } }

/* cases vídeo — grid de cards elegantes */
.cases {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-video { position: relative; aspect-ratio: 9 / 12; background: var(--near); }
.case-vid { width: 100%; height: 100%; object-fit: cover; }
.case-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--r-pill);
  padding: 5px 13px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.case-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.case-body h4 { font-size: 18px; font-weight: 800; color: var(--fg); }
.case-role { font-size: 11.5px; color: var(--violet); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.case-body p { font-size: 15px; line-height: 1.45; color: var(--fg2); }

.proof-disclaimer {
  margin-top: 26px;
  max-width: 66ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--strike);
  font-style: italic;
}
.proof-disclaimer strong { color: var(--fg2); font-weight: 700; font-style: normal; }

/* sobre quem ensina */
.author {
  margin-top: clamp(44px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(135deg, var(--violet-l) 0%, var(--violet-l2) 100%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; background: var(--violet-d); border: 4px solid #fff; box-shadow: var(--shadow-violet); flex-shrink: 0; }
.author-text p { font-size: 16px; line-height: 1.62; color: var(--fg2); }
.author-text p + p { margin-top: 12px; }
.author-text .eyebrow { margin-bottom: 12px; }
.author-text strong { color: var(--violet-d); font-weight: 700; }
@media (min-width: 720px) {
  .author { flex-direction: row; align-items: flex-start; gap: 28px; }
  .author-photo { width: 130px; height: 130px; }
}

/* ============================================================
   Bloco 9 — oferta / stack / preço (fundo tint)
   ============================================================ */
.stack {
  list-style: none;
  margin-top: clamp(28px, 5vw, 44px);
  max-width: 700px;
  margin-left: auto; margin-right: auto;
  background: var(--white);
  border: 1px solid var(--border-h);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stack-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--fg2);
  transition: background 0.2s ease;
}
.stack-row:last-child { border-bottom: none; }
.stack-row:hover { background: #faf7fd; }
.stack-row .sc {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-h), var(--violet-d)); color: #fff;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  box-shadow: var(--shadow-violet);
}
.stack-row .sc svg { width: 15px; height: 15px; }
.stack-desc { flex: 1; line-height: 1.5; }
.stack-desc strong { color: var(--fg); font-weight: 700; }
.stack-modules { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.stack-modules li { font-size: 14px; color: var(--fg2); padding-left: 18px; position: relative; }
.stack-modules li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.stack-row--main { background: linear-gradient(135deg, var(--violet-l) 0%, var(--violet-l2) 100%); }
.stack-row--main:hover { background: linear-gradient(135deg, var(--violet-l2) 0%, var(--violet-l) 100%); }

.why-cheap { margin-top: clamp(32px, 5vw, 48px); max-width: 700px; margin-left: auto; margin-right: auto; }
.why-cheap h3 { font-size: clamp(1.3rem, 3.4vw, 1.6rem); font-weight: 800; color: var(--fg); letter-spacing: -0.02em; }
.why-cheap p { margin-top: 14px; font-size: 16px; line-height: 1.62; color: var(--fg2); }
.why-cheap strong { color: var(--fg); font-weight: 700; }
.why-cheap-compare { font-weight: 700; color: var(--fg); }
.anchors { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.anchors li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border-h);
  border-radius: var(--r);
  font-size: 15px; color: var(--fg2);
  box-shadow: var(--shadow-sm);
}
.anchors strong { color: var(--fg); font-weight: 700; }
.anchor-emoji {
  font-size: 22px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--violet-l);
  flex-shrink: 0;
}

/* PRICE BOX — peça central premium (dark + glow) */
.price-box {
  margin-top: clamp(40px, 6vw, 60px);
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  text-align: center;
  padding: clamp(36px, 5vw, 52px) clamp(24px, 4vw, 40px);
  background:
    radial-gradient(130% 110% at 50% -10%, var(--violet-d) 0%, var(--near2) 55%, var(--near) 100%);
  border: 1px solid rgba(123,35,184,0.5);
  border-radius: var(--r-xl);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 60px rgba(123,35,184,0.30),
    var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  color: var(--on-dark);
}
.price-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(80% 50% at 50% 0%, rgba(255,193,7,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.price-anchor { font-size: 16px; font-weight: 600; color: var(--on-dark-2); position: relative; }
.price-anchor s { color: var(--on-dark-3); }
.price-main { display: flex; align-items: flex-start; justify-content: center; gap: 3px; color: #fff; line-height: 1; position: relative; }
.price-currency { font-size: 30px; font-weight: 800; margin-top: 12px; color: var(--gold); }
.price-value {
  font-size: clamp(4.5rem, 22vw, 6.2rem);
  font-weight: 900; letter-spacing: -0.05em;
  background: linear-gradient(180deg, #fff 0%, #e9d6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}
.price-cents { font-size: 30px; font-weight: 800; margin-top: 12px; color: var(--gold); }
.price-installments { font-size: 17px; color: var(--on-dark-2); position: relative; }
.price-installments strong { color: #fff; font-weight: 800; }
.price-economy {
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  color: #fff; background: linear-gradient(135deg, var(--green-l), var(--green));
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: 6px;
  box-shadow: 0 6px 18px rgba(31,122,52,0.4);
  position: relative;
}
.price-box .cta { margin-top: 10px; position: relative; }
.price-box .cta {
  background: linear-gradient(135deg, var(--gold) 0%, #ffb300 100%);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(255,193,7,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.price-box .cta:hover {
  background: linear-gradient(135deg, #ffce3a 0%, var(--gold) 100%);
  box-shadow: 0 18px 44px rgba(255,193,7,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}
.price-box .cta:focus-visible { outline: 3px solid #fff; }
.price-box .cta-micro { color: var(--on-dark-2); position: relative; }

.ascension { margin-top: 26px; max-width: 60ch; margin-left: auto; margin-right: auto; text-align: center; font-size: 14px; line-height: 1.55; color: var(--fg3); }
.ascension em { font-style: italic; }
.ascension strong { color: var(--violet); font-weight: 700; }

/* ============================================================
   Blocos 10 + 13 — accordion FAQ / objeções (+ top-3 do bloco 5)
   ============================================================ */
.qa-list { margin-top: clamp(28px, 5vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.qa {
  background: var(--white);
  border: 1px solid var(--border-h);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.qa:hover { box-shadow: var(--shadow-md); }
.qa[open] { border-color: var(--violet); box-shadow: var(--shadow-md); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px; font-weight: 700; color: var(--fg);
  line-height: 1.4;
  transition: color 0.16s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--violet); }
.qa[open] summary { color: var(--violet); }
.qa .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-h);
  position: relative;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), background 0.2s ease, border-color 0.2s ease;
  margin-top: 1px;
}
.qa .chev::before, .qa .chev::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--violet);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}
.qa .chev::before { width: 12px; height: 2.5px; border-radius: 2px; }
.qa .chev::after { width: 2.5px; height: 12px; border-radius: 2px; }
.qa[open] .chev { transform: rotate(135deg); background: var(--violet); border-color: var(--violet); }
.qa[open] .chev::before, .qa[open] .chev::after { background: var(--white); }
.qa .answer {
  padding: 0 22px 22px;
  font-size: 15.5px; line-height: 1.65; color: var(--fg2);
}
.qa .answer strong { color: var(--fg); font-weight: 700; }

/* ============================================================
   Bloco 11 — garantia (selo amarelo, fundo tint)
   ============================================================ */
.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.guarantee-seal {
  width: 176px; height: 176px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ffd95e 0%, var(--gold) 55%, #e6a700 100%);
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 5px var(--gold), 0 14px 36px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: rotate(-8deg);
  flex-shrink: 0;
  color: var(--ink);
}
.guarantee-seal-top { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.guarantee-seal-big { font-size: 68px; font-weight: 900; line-height: 0.9; }
.guarantee-seal-bot { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.guarantee-text { max-width: 60ch; }
.guarantee-text .sec-title { margin: 0 auto 16px; max-width: none; }
.guarantee-text p { font-size: 17px; line-height: 1.62; color: var(--fg2); }
.guarantee-text p + p { margin-top: 14px; }
.guarantee-text strong { color: var(--fg); font-weight: 700; }
.guarantee-punch { font-size: clamp(1.2rem, 3vw, 1.4rem); font-weight: 800; color: var(--violet); }
@media (min-width: 820px) {
  .guarantee { flex-direction: row; text-align: left; gap: 48px; }
  .guarantee-text .sec-title { margin: 0 0 16px; }
}

/* ============================================================
   Bloco 12 — urgência matemática (DARK BLOCK via data-screen-label)
   A seção é .section (branco) no HTML; aqui viramos um bloco escuro
   pelo atributo estável data-screen-label="Urgência" (sem tocar o HTML).
   ============================================================ */
[data-screen-label="Urgência"] {
  background:
    radial-gradient(120% 120% at 80% -10%, var(--violet-d) 0%, var(--near2) 45%, var(--near) 100%);
  color: var(--on-dark);
}
[data-screen-label="Urgência"] .eyebrow { color: #c79bf0; }
[data-screen-label="Urgência"] .eyebrow::before { background: linear-gradient(90deg, var(--gold), #ffd95e); }
[data-screen-label="Urgência"] .sec-title { color: #fff; }
[data-screen-label="Urgência"] .sec-title .vi { color: var(--gold); }
[data-screen-label="Urgência"] .sec-lead { color: var(--on-dark-2); }
[data-screen-label="Urgência"] .sec-lead strong { color: #fff; }
[data-screen-label="Urgência"] .sec-lead em { color: #e2c5ff; }

.math {
  margin: clamp(32px, 5vw, 48px) auto 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.math-cell {
  flex: 1;
  padding: clamp(28px, 4vw, 40px) 24px;
  border-radius: var(--r-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid;
}
.math-cell--loss { background: rgba(229,57,53,0.12); border-color: rgba(229,57,53,0.35); }
.math-cell--save { background: rgba(40,167,69,0.12); border-color: rgba(40,167,69,0.40); }
.math-num { font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.math-cell--loss .math-num { font-size: clamp(2.4rem, 11vw, 4rem); color: #ff6b6b; }
.math-cell--save .math-num { font-size: clamp(3.4rem, 16vw, 5.6rem); color: #5bd877; }
.math-label { font-size: 14px; font-weight: 700; line-height: 1.4; }
.math-cell--loss .math-label { color: #ffb3b3; }
.math-cell--save .math-label { color: #a6e8b5; }
.math-arrow { display: none; }
@media (min-width: 720px) {
  .math { flex-direction: row; align-items: center; }
  .math-arrow { display: block; font-size: 44px; font-weight: 900; color: var(--gold); flex: 0 0 auto; }
}
.math-foot { margin-top: 18px; text-align: center; font-size: 16px; font-weight: 700; color: var(--on-dark); }
.urgency-punch { margin-top: 18px; font-size: clamp(1.2rem, 3vw, 1.45rem); line-height: 1.4; color: #fff; }
.urgency-punch strong { color: var(--gold); font-weight: 800; }

/* ============================================================
   Bloco 14 — CTA final / duas rotas (fundo branco)
   ============================================================ */
.final .sec-title { font-size: clamp(1.6rem, 4.5vw, 2.6rem); }
.routes {
  margin: clamp(28px, 5vw, 40px) auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .routes { grid-template-columns: 1fr 1fr; } }
.route {
  padding: clamp(26px, 4vw, 36px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.route:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.route--bad { background: var(--gray-bg); border: 1px solid var(--border); }
.route--good {
  background:
    radial-gradient(130% 120% at 90% -20%, var(--violet-h) 0%, var(--violet) 50%, var(--violet-d) 100%);
  border: 1px solid rgba(123,35,184,0.5);
  box-shadow: var(--shadow-violet);
}
.route p { font-size: 16.5px; line-height: 1.55; font-weight: 600; }
.route--bad p { color: var(--fg2); }
.route--good p { color: #f3ecfb; }
.route-bridge { margin-top: clamp(28px, 5vw, 40px); font-size: clamp(1.1rem, 2.8vw, 1.3rem); color: var(--fg); }
.route-bridge strong { color: var(--violet); font-weight: 900; font-size: clamp(1.4rem, 4vw, 1.8rem); }

/* ============================================================
   Bloco 15 — PS (fundo tint)
   ============================================================ */
.ps {
  max-width: var(--readw);
  margin: 0 auto;
  background: var(--white);
  border: 2px dashed var(--violet);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.ps-label {
  display: inline-block;
  font-size: 13px; font-weight: 900; letter-spacing: 0.12em;
  color: #fff; text-transform: uppercase;
  background: var(--violet);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.ps p { font-size: 17px; line-height: 1.68; color: var(--fg2); font-style: italic; }
.ps p + p { margin-top: 12px; }
.ps-punch { font-style: normal !important; font-size: 18px; }
.ps-punch strong { color: var(--violet); font-weight: 800; }
.ps-cta { margin-top: 26px; max-width: 380px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px var(--gutter) calc(100px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--fg3); line-height: 1.6;
  background: var(--white);
}
@media (min-width: 880px) { .footer { padding-bottom: 52px; } }
.footer .logo { justify-content: center; margin-bottom: 14px; font-size: 14px; }

/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-h);
  box-shadow: 0 -8px 28px rgba(24,16,31,0.14);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-info { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.sticky-prod { font-size: 14px; font-weight: 800; color: var(--fg); }
.sticky-price { font-size: 12px; font-weight: 600; color: var(--fg2); }
.sticky-cta a {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet-h), var(--violet-d));
  color: var(--white);
  font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: var(--shadow-violet);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.sticky-cta a:hover { box-shadow: var(--shadow-violet-lg); }
.sticky-cta a:active { transform: scale(0.97); }
.sticky-cta a:focus-visible { outline: 3px solid var(--violet); outline-offset: 2px; }
@media (min-width: 880px) { .sticky-cta { display: none !important; } }

/* ============================================================
   BANNER LGPD
   ============================================================ */
.lgpd {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
  background: var(--near);
  color: var(--white);
  box-shadow: 0 -10px 36px rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lgpd[hidden] { display: none; }
.lgpd-text { font-size: 13.5px; line-height: 1.5; color: #d9cfe8; }
.lgpd-actions { display: flex; gap: 10px; }
.lgpd-btn {
  flex: 1;
  min-height: 46px;
  border: none; border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.lgpd-btn:active { transform: scale(0.98); }
.lgpd-btn--reject { background: transparent; color: #cfc4dd; border: 1px solid #463b56; }
.lgpd-btn--reject:hover { border-color: #6b5d80; color: #e6e0f0; }
.lgpd-btn--accept { background: linear-gradient(135deg, var(--violet-h), var(--violet-d)); color: var(--white); }
.lgpd-btn--accept:hover { filter: brightness(1.1); }
.lgpd-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (min-width: 720px) {
  .lgpd { flex-direction: row; align-items: center; justify-content: center; gap: 24px; }
  .lgpd-text { max-width: 62ch; }
  .lgpd-actions { flex: 0 0 auto; }
  .lgpd-btn { padding: 0 24px; }
}

/* ============================================================
   VSL — vídeo de vendas (facade click-to-load) · herói visual do hero
   Proeminente, centralizado, 16:9, moldura premium + glow roxo.
   ============================================================ */
.vsl-frame {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: clamp(6px, 2vw, 12px) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 60px var(--violet-glow),
    0 28px 80px rgba(0,0,0,0.55);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vsl-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 80px var(--violet-glow),
    0 36px 96px rgba(0,0,0,0.6);
}
.vsl-thumb { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .94; transition: opacity .25s, transform .35s ease; }
.vsl-frame:hover .vsl-thumb { opacity: 1; transform: scale(1.03); }
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-play {
  position: absolute; inset: 0; margin: auto; width: 100px; height: 70px;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.vsl-play svg { width: 100px; height: 70px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.55)); transition: transform .2s; }
.vsl-frame:hover .vsl-play svg { transform: scale(1.1); }
.vsl-frame:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* ============================================================
   SCROLL REVEAL + A11Y
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s cubic-bezier(.2,.7,.3,1), transform 0.5s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .cta:hover, .pain-item:hover, .ai-card:hover, .benefit:hover,
  .case:hover, .print-card:hover, .proof-stat:hover, .route:hover,
  .vsl-frame:hover { transform: none; }
}

.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;
}

:focus-visible { outline: 3px solid var(--violet); outline-offset: 2px; }
