/* Página VSL B — "VTSD creme": storytelling em capítulos, CTAs repetidos,
   oferta com 2 planos. Identidade Método de Aprovação: navy #000B5A,
   vermelho #D20015, creme #EFE7DC. Sora (títulos), Archivo (corpo),
   Caveat (anotações manuscritas). */

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

:root {
  --navy: #000B5A;
  --navy-mid: #4A5B8C;
  --blue-light: #A3B5CB;
  --red: #D20015;
  --red-dark: #B00012;
  --cream: #EFE7DC;
  --cream-card: #FBF8F2;
  --cream-line: #E8E0D0;
  --cream-line-2: #F0EBE0;
  --ink: #2B3245;
  --gray: #5C6478;
  --gray-warm: #6B6357;
  --marker-yellow: rgba(249, 226, 125, 0.75);
  --marker-green: rgba(154, 214, 164, 0.75);
  --shadow-card: 0 6px 24px rgba(0, 11, 90, 0.05);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); }
a:hover { color: var(--red); }

.container { max-width: 1020px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; color: var(--navy); text-wrap: pretty; }

.hand { font-family: 'Caveat', cursive; }

/* ---------- Grifos ---------- */
.grifo {
  background: linear-gradient(180deg, transparent 55%, var(--marker-yellow) 55%, var(--marker-yellow) 96%, transparent 96%);
  padding: 0 2px;
}
.grifo-verde {
  background: linear-gradient(180deg, transparent 55%, var(--marker-green) 55%, var(--marker-green) 96%, transparent 96%);
  padding: 0 2px;
}
.grifo-dark {
  background: linear-gradient(180deg, transparent 55%, rgba(210, 0, 21, 0.65) 55%, rgba(210, 0, 21, 0.65) 96%, transparent 96%);
  padding: 0 2px;
}

/* ---------- Aviso ---------- */
.aviso-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 16px;
}

/* ---------- Hero ---------- */
.vsl-hero { background: var(--cream); padding: 0 0 56px; }
.hero-background { display: none; }

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  margin-bottom: 32px;
  text-decoration: none;
}
.brand-symbol { height: 36px; width: auto; }
.brand-word {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-word-2 { font-weight: 600; color: var(--navy-mid); }

.headline {
  font-weight: 800;
  text-align: center;
  font-size: 33px;
  line-height: 1.3;
  max-width: 880px;
  margin: 0 auto 30px;
}
.highlight-green {
  background: linear-gradient(180deg, transparent 55%, var(--marker-yellow) 55%, var(--marker-yellow) 96%, transparent 96%);
  padding: 0 2px;
}

.subheadline {
  text-align: center;
  color: var(--ink);
  font-weight: 500;
  text-wrap: balance;
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
  margin: -12px auto 30px;
}
.subheadline strong { color: var(--navy); }

.video-shell { max-width: 860px; margin: 0 auto; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  border: 6px solid #fff;
  box-shadow: 0 22px 60px rgba(0, 11, 90, 0.25);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.noscript-warn { text-align: center; color: var(--gray-warm); padding: 16px; }
.pre-reveal-hint { text-align: center; color: var(--gray-warm); font-size: 15px; margin-top: 22px; }
.pre-reveal-hint.hint-revealed { font-size: 18px; font-weight: 700; color: var(--navy); }

/* ---------- Bloco CTA (hero + repetidos) ---------- */
.cta-stack { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 32px 28px 0; }
.avatars-row { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; padding-left: 8px; }
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.avatar-1 { background: var(--navy); color: var(--cream); }
.avatar-2 { background: var(--navy-mid); color: var(--cream); }
.avatar-3 { background: var(--red); color: #fff; }
.avatar-4 { background: var(--blue-light); color: var(--navy); }
.avatar-5 { background: var(--ink); color: var(--cream); }
.avatars-label { font-weight: 700; color: var(--navy); font-size: 14.5px; }

.cta-button {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 18px 44px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cta-button:hover { background: var(--red-dark); }
.cta-trust { display: flex; gap: 18px; font-size: 13px; color: var(--gray-warm); font-weight: 600; flex-wrap: wrap; justify-content: center; }

.cta-belt { padding: 40px 0; }
.cta-belt-white { background: #fff; }
.cta-belt-white .avatar { border-color: #fff; }
.cta-belt .cta-stack { padding-top: 0; }

/* ---------- Seções ---------- */
.sec { padding: 72px 0; }
.sec-white { background: #fff; }
.sec-cream { background: var(--cream); }
.sec-navy { background: var(--navy); }

.sec-header { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.sec-header h2 { font-size: 34px; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.sec-sub { color: var(--gray); font-size: 17px; }
.sec-cream .sec-sub { color: var(--gray-warm); }

.card-white { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.card-cream { background: var(--cream-card); border: 1px solid var(--cream-line); border-radius: var(--radius); }

.hand-note {
  font-family: 'Caveat', cursive;
  font-size: 23px;
  color: var(--red);
  text-align: center;
  transform: rotate(-0.6deg);
}
.hand-note-navy { color: var(--navy); }
.hand-num { font-family: 'Caveat', cursive; font-weight: 700; font-size: 30px; color: var(--red); display: block; }
.hand-check { font-family: 'Caveat', cursive; font-weight: 700; font-size: 22px; color: var(--navy); flex-shrink: 0; }
.hand-x { font-family: 'Caveat', cursive; font-weight: 700; font-size: 22px; color: var(--red); flex-shrink: 0; }

/* canvas rabiscados */
.sketch-wrap { width: 100%; }
.sketch-wrap canvas { width: 100%; height: 100%; display: block; }
.ring-wrap { position: relative; display: inline-block; padding: 6px 18px; }
.ring-wrap canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.ring-num { font-family: 'Caveat', cursive; font-weight: 700; font-size: 44px; color: var(--red); }

/* ---------- Pergunta certa ---------- */
.sec-question { padding: 64px 0; }
.sec-question .container { max-width: 820px; text-align: center; }
.sec-question .lead { color: var(--ink); font-size: 20px; font-weight: 500; line-height: 1.6; margin-bottom: 14px; }
.sec-question .lead strong { color: var(--navy); font-weight: 700; }
.sec-question h2 { font-size: 30px; line-height: 1.35; margin-bottom: 8px; }
.sec-question .hand-sign {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--red);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 18px;
}

/* ---------- Capítulos da história ---------- */
.chapter { padding: 36px 0; }
.chapter:first-of-type { padding-top: 72px; }
.chapter-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: center; }
.chapter-grid-flip { grid-template-columns: 1.2fr 1fr; }
.chapter h2 { font-size: 30px; line-height: 1.28; margin-bottom: 16px; }
.chapter p { color: #3E4358; font-size: 16px; }
.chapter p strong { color: var(--navy); }
.chapter p strong.reprovei { color: var(--red); }
.chapter p + p { margin-top: 12px; }
.chapter .punch { color: var(--navy); font-weight: 700; font-size: 17px; }
.material-cover { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 11, 90, 0.25); transform: rotate(-1.5deg); }
.material-cover img { width: 100%; display: block; }

.polaroid {
  border: 6px solid #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 11, 90, 0.12);
  overflow: hidden;
  transform: rotate(-1deg);
}
.polaroid img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.polaroid-r { transform: rotate(1deg); }
.polaroid-caption {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--navy);
  text-align: center;
  margin-top: 12px;
  transform: rotate(-1.5deg);
}
.polaroid-caption-red { color: var(--red); }

.polaroid-stack { display: flex; flex-direction: column; }
.polaroid-stack .polaroid img { min-height: 300px; max-height: 320px; }
.polaroid-sm { width: 78%; align-self: flex-end; margin-top: -40px; transform: rotate(1.4deg); }
.polaroid-stack .polaroid-sm img { min-height: 180px; max-height: 190px; }
.polaroid-stack .polaroid-caption { margin-top: 14px; }

.aprov-list { display: flex; flex-direction: column; margin-top: 4px; }
.aprov-row { display: flex; gap: 14px; align-items: baseline; padding: 9px 0; font-size: 15px; color: var(--ink); }
.aprov-row + .aprov-row { border-top: 1px solid #E0D6C4; }
.aprov-row .ord { font-family: 'Caveat', cursive; font-weight: 700; font-size: 22px; color: var(--red); flex-shrink: 0; width: 30px; }
.aprov-fecho { font-size: 15px; color: var(--navy); font-style: italic; font-weight: 600; margin-top: 16px !important; }

.lesson-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.lesson-card { background: #fff; border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow-card); }
.lesson-card .t { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.lesson-card .d { font-size: 13.5px; color: var(--gray); }
.decision-card { background: #fff; border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow-card); margin-top: 20px; }
.decision-card p { font-size: 14.5px; color: var(--ink); }

/* ---------- Placar caderno ---------- */
.placar-sec { padding: 36px 0 72px; }
.notebook {
  max-width: 760px;
  margin: 0 auto;
  background: #FDFBF6;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(163, 181, 203, 0.30) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(163, 181, 203, 0.30) 23px 24px);
  border: 1px solid #D8CFBC;
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0, 11, 90, 0.10);
  padding: 34px 42px;
  transform: rotate(-0.4deg);
}
.notebook-title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: rgba(249, 226, 125, 0.9);
  text-decoration-thickness: 8px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}
.notebook-rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 40px; }
.notebook-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.notebook-row .lab { font-family: 'Caveat', cursive; font-size: 23px; color: var(--ink); }
.notebook-row .num {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 32px;
  color: var(--navy);
  background: linear-gradient(180deg, transparent 20%, var(--marker-yellow) 20%, var(--marker-yellow) 90%, transparent 90%);
  padding: 0 6px;
}
.notebook-row:nth-child(even) .num {
  background: linear-gradient(180deg, transparent 20%, var(--marker-green) 20%, var(--marker-green) 90%, transparent 90%);
}
.notebook-taxa { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.notebook-taxa .lab { font-family: 'Caveat', cursive; font-size: 26px; color: var(--ink); }
.notebook-motto { font-family: 'Caveat', cursive; font-size: 23px; color: var(--gray); text-align: center; margin-top: 18px; transform: rotate(-0.8deg); }
/* Fecho da história (virada de ato) + pivô que abre o diagnóstico */
.story-close { max-width: 720px; margin: 44px auto 0; text-align: center; }
.story-close-quote { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 26px; line-height: 1.4; color: var(--navy); }
.story-close-by { font-family: 'Caveat', cursive; font-weight: 700; font-size: 24px; color: var(--red); margin-top: 14px; transform: rotate(-1.5deg); }
.section-pivot { max-width: 700px; margin: 0 auto 36px; text-align: center; font-size: 17px; line-height: 1.6; color: var(--gray); }
.section-pivot strong { color: var(--navy); font-size: 19px; }

/* ---------- Vilões ---------- */
.villains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.villain-card { padding: 26px; }
.villain-card h3 { font-size: 18px; margin: 6px 0 10px; }
.villain-card p { color: var(--gray); font-size: 15px; }
.villain-card p + p { margin-top: 10px; }
.villain-card strong { color: var(--ink); }
.villain-ask { font-family: 'Caveat', cursive; font-size: 21px; color: var(--red); margin-top: 12px !important; transform: rotate(-1deg); }

.pull-quote {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: var(--navy);
  text-align: center;
  max-width: 720px;
  margin: 44px auto 0;
  line-height: 1.45;
}

/* ---------- Mecanismo / pizza ---------- */
.mech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 860px; margin: 0 auto 52px; }
.mech-pair { padding: 20px 18px; text-align: center; }
.mech-no { color: var(--gray); font-size: 15px; }
.mech-yes { color: var(--navy); font-weight: 700; font-size: 16px; margin-top: 6px; }

.pie-card { max-width: 820px; margin: 0 auto; padding: 34px 38px 24px; }
.pie-title { text-align: center; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.pie-sub { text-align: center; font-family: 'Caveat', cursive; font-size: 24px; color: var(--gray); margin-bottom: 8px; }
.pie-canvas { height: 330px; }
.pie-note { text-align: center; color: var(--gray); font-size: 16px; margin-top: 8px; }
.pie-note .invert { color: var(--red); font-weight: 700; }
.pie-note strong { color: var(--navy); }
.stat-bars-fallback { display: none; text-align: center; color: var(--gray); }
.no-js .stat-bars-fallback { display: block; }
.no-js .pie-canvas { display: none; }

/* ---------- Rotina ---------- */
.routine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.routine-card { padding: 26px; }
.routine-min {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 15%, var(--marker-yellow) 15%, var(--marker-yellow) 90%, transparent 90%);
  color: var(--navy);
  font-size: 24px;
  padding: 0 8px;
  margin-bottom: 12px;
}
.routine-card:nth-child(2) .routine-min {
  background: linear-gradient(180deg, transparent 15%, var(--marker-green) 15%, var(--marker-green) 90%, transparent 90%);
}
.routine-card h3 { font-size: 18px; margin-bottom: 8px; }
.routine-card p { color: var(--gray); font-size: 15px; }
.routine-sum {
  text-align: center;
  margin: 34px auto 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
}
.flash-card { display: flex; gap: 20px; align-items: flex-start; max-width: 860px; margin: 36px auto 0; padding: 26px; }
.flash-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--cream);
  font-size: 18px;
  flex-shrink: 0;
}
.flash-card h3 { font-size: 17px; margin-bottom: 6px; }
.flash-card p { color: var(--gray); font-size: 15px; }
.flash-stat {
  color: var(--navy);
  font-weight: 700;
}

/* roadmap */
.cycle { max-width: 900px; margin: 56px auto 0; }
.cycle h3 { text-align: center; font-size: 22px; margin-bottom: 4px; }
.cycle .hand-note { margin-bottom: 10px; }
.roadmap-canvas { height: 210px; }
.cycle-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 6px; }
.cycle-step { text-align: center; }
.cycle-step .mes { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 2px; }
.cycle-step .materia { font-weight: 700; color: var(--navy); font-size: 14px; }
.cycle-step .simulado { display: block; font-family: 'Caveat', cursive; font-size: 18px; color: var(--gray); }
.cycle-note { text-align: center; color: var(--gray); margin-top: 20px; font-size: 15px; }
.cycle-note strong { color: var(--navy); }

/* ---------- Comparativo ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 0 auto; }
.compare-card { padding: 30px; }
.compare-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 18px;
}
.compare-chip-up { background: var(--navy); color: var(--cream); }
.compare-chip-down { background: #FBE7E9; color: var(--red); }
.compare-card h3 { font-size: 21px; margin-bottom: 18px; }
.compare-card .com { text-decoration: underline; text-decoration-color: rgba(154, 214, 164, 0.95); text-decoration-thickness: 6px; }
.compare-card .sem { color: var(--red); }
.compare-list { list-style: none; }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; font-size: 15px; color: var(--ink); }
.compare-list li + li { border-top: 1px solid var(--cream-line-2); }
.compare-list em { display: block; font-size: 13.5px; color: var(--gray); font-style: italic; margin-top: 2px; }

/* ---------- Provas ---------- */
.proof-stat { display: flex; justify-content: center; align-items: baseline; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.proof-stat .ring-num { color: var(--navy); font-size: 52px; }
.proof-stat-text { font-size: 17px; color: var(--ink); max-width: 330px; }
.proof-videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 840px; margin: 0 auto; }
.video-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-card);
}
.video-slot iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-slot-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.video-slot-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(239, 231, 220, 0.14);
  border: 1px solid rgba(239, 231, 220, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 17px;
  padding-left: 4px;
}
.video-slot-label { font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--blue-light); }
.video-caption { font-size: 14px; color: var(--gray); margin-top: 10px; }
.video-caption strong { color: var(--ink); }
.proof-hand { margin: 40px 0 14px; font-size: 26px; }
.proof-prints { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto; align-items: start; }
.proof-print { border: 1px solid var(--cream-line); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 11, 90, 0.08); background: var(--cream-card); padding: 14px; }
.proof-print:nth-child(odd) { transform: rotate(-1deg); }
.proof-print:nth-child(even) { transform: rotate(0.8deg); }
.proof-print img { width: 100%; border-radius: 8px; display: block; }
.proof-prints-4 { grid-template-columns: repeat(3, 1fr); max-width: 100%; gap: 16px; }
.proof-print-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--navy);
  padding: 14px;
}
.print-slot-label { font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--blue-light); text-align: center; }
.proof-note { text-align: center; color: var(--gray); font-style: italic; font-size: 15px; max-width: 680px; margin: 26px auto 0; }

/* ---------- Dentro do grupo (Gerson ativo) ---------- */
.group-frame { max-width: 588px; margin: 0 auto; background: #fff; border: 1px solid var(--cream-line); border-radius: 24px; padding: 24px; box-shadow: 0 12px 40px rgba(0, 11, 90, 0.08); }
.group-prints { max-width: 100%; margin: 0 auto; display: grid; grid-template-columns: 0.75fr 1fr; gap: 14px; align-items: start; }
.group-prints-col { display: flex; flex-direction: column; gap: 16px; }
.group-print { border-radius: 12px; overflow: hidden; border: 1px solid var(--cream-line); box-shadow: 0 10px 30px rgba(0, 11, 90, 0.12); }
.group-print img { width: 100%; display: block; }

/* ---------- O que é / não é ---------- */
.isnt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 960px; margin: 0 auto; }
.isnt-card { padding: 18px; text-align: center; }
.isnt-card .t { font-family: 'Caveat', cursive; font-weight: 700; font-size: 24px; color: var(--red); }
.isnt-card .t-is {
  color: var(--navy);
  background: linear-gradient(180deg, transparent 20%, var(--marker-green) 20%, var(--marker-green) 90%, transparent 90%);
  display: inline-block;
  padding: 0 6px;
}
.isnt-card .d { font-size: 13.5px; color: var(--gray); margin-top: 4px; }

.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.stack-card { padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.stack-card .hand-check { font-size: 24px; }
.stack-card h3 { font-size: 15.5px; margin-bottom: 4px; }
.stack-card p { font-size: 13.5px; color: var(--gray); line-height: 1.55; }

/* ---------- Oferta navy — 2 planos ---------- */
.sec-offer .sec-header h2 { color: var(--cream); }
.sec-offer .eyebrow { color: var(--blue-light); }
.offer-anchor-list { list-style: none; max-width: 560px; margin: 8px auto 0; display: flex; flex-direction: column; }
.offer-anchor-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 15px; padding: 9px 0; border-bottom: 1px dashed rgba(163, 181, 203, 0.28); }
.offer-anchor-list li:last-child { border-bottom: 0; }
.oa-label { color: var(--blue-light); text-align: left; }
.oa-price { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cream); white-space: nowrap; text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.offer-hand { font-family: 'Caveat', cursive; font-size: 28px; color: var(--cream); text-align: center; margin-top: 10px; transform: rotate(-0.5deg); }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.plan-card { border-radius: 16px; padding: 30px 28px; display: flex; flex-direction: column; background: var(--cream); }
.plan-card-hero { background: #fff; padding: 34px 30px; position: relative; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35); }
.plan-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 16px;
  white-space: nowrap;
}
.plan-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.plan-card-hero .plan-name { margin-top: 8px; }
.plan-strike { font-size: 13px; color: var(--gray-warm); text-decoration: line-through; margin-left: 4px; }
.plan-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 34px; color: var(--navy); margin: 8px 0 2px; text-transform: uppercase; }
.plan-card-hero .plan-price { font-size: 42px; margin: 2px 0; }
.plan-cond { font-size: 13.5px; color: var(--gray-warm); margin-bottom: 4px; }
.plan-avista { font-size: 13.5px; color: var(--gray-warm); margin-bottom: 18px; }
.plan-avista strong { color: var(--navy); font-weight: 700; }
.plan-note-hero { font-size: 12.5px; color: var(--navy); background: var(--marker-green); border-radius: 8px; padding: 8px 11px; margin-bottom: 14px; line-height: 1.45; }
.plan-note-hero strong { color: var(--navy); }
.plan-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--ink); flex: 1; list-style: none; }
.plan-list li::before { content: '✓ '; }
.plan-cta {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.15s ease;
}
.plan-cta-navy { background: var(--navy); color: var(--cream); }
.plan-cta-navy:hover { background: #001080; }
.plan-cta-red { background: var(--red); color: #fff; font-size: 15.5px; padding: 17px; }
.plan-cta-red:hover { background: var(--red-dark); }

.plans-note { text-align: center; color: var(--blue-light); font-size: 14.5px; margin-top: 18px; }

.bonus-strip {
  background: var(--cream);
  border: 1.5px dashed rgba(210, 0, 21, 0.4);
  border-radius: var(--radius);
  padding: 20px 26px;
  max-width: 720px;
  margin: 28px auto 0;
  display: flex;
  gap: 18px;
  align-items: center;
}
.bonus-strip .hand { font-weight: 700; font-size: 26px; color: var(--red); flex-shrink: 0; transform: rotate(-3deg); }
.bonus-strip p { font-size: 14.5px; color: var(--ink); }
.bonus-strip p strong { color: var(--navy); }
.bonus-book { display: block; width: 104px; height: auto; flex-shrink: 0; border-radius: 10px; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)); }
.bonus-copy { display: flex; flex-direction: column; gap: 6px; }
.accept-note { text-align: center; color: var(--blue-light); font-size: 13.5px; max-width: 640px; margin: 20px auto 0; }
.accept-note strong { color: var(--cream); }

/* ---------- Qualificação ---------- */
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 0 auto; }
.qualify-card { padding: 30px; }
.qualify-card h3 { font-size: 19px; margin-bottom: 16px; }
.qualify-card .compare-list li + li { border-top-color: #EDE5D6; }

/* ---------- Garantia ---------- */
.guarantee-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.guarantee-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
  transform: rotate(-4deg);
}
.guarantee-inner h2 { font-size: 32px; margin-bottom: 18px; }
.guarantee-inner p { color: var(--gray-warm); font-size: 16.5px; margin-bottom: 12px; }
.guarantee-punch {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 30px !important;
  color: var(--navy) !important;
  margin: 6px 0 28px !important;
  transform: rotate(-1deg);
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--cream-card); border: 1px solid var(--cream-line); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { font-weight: 700; color: var(--navy); font-size: 15.5px; cursor: pointer; }
.faq-body { color: var(--gray); font-size: 15px; margin-top: 12px; }

/* ---------- CTA final ---------- */
.final-panel { background: var(--navy); padding: 80px 0; text-align: center; }
.final-logo { height: 52px; width: auto; display: block; margin: 0 auto 26px; }
.final-panel h2 { color: var(--cream); font-size: 32px; line-height: 1.3; max-width: 820px; margin: 0 auto 16px; }
.final-panel .grifo {
  background: linear-gradient(180deg, transparent 55%, rgba(210, 0, 21, 0.65) 55%, rgba(210, 0, 21, 0.65) 96%, transparent 96%);
}
.final-sub { color: var(--blue-light); font-size: 16.5px; max-width: 640px; margin: 0 auto 26px; }
.final-recap { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.final-recap span {
  background: rgba(239, 231, 220, 0.08);
  border: 1px solid rgba(163, 181, 203, 0.3);
  color: var(--cream);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 16px;
}
.final-panel .cta-button { padding: 20px 48px; font-size: 18px; }
.final-panel .cta-button:hover { background: #E8001A; }
.final-signature { color: var(--blue-light); font-style: italic; font-size: 14.5px; margin-top: 26px; }

.site-footer {
  background: var(--cream);
  text-align: center;
  padding: 26px;
  font-size: 13px;
  color: var(--gray-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-symbol { height: 22px; width: auto; }
.footer-symbol path { fill: var(--navy); }

.sep-hr { width: 72px; height: 3px; border-radius: 3px; background: var(--red); opacity: 0.55; margin: 38px auto 0; }

/* ---------- A armadilha (doom-loop) ---------- */
.trap-frame { max-width: 820px; margin: 0 auto; background: var(--cream-card); border: 1px solid var(--cream-line); border-radius: 24px; padding: 44px 48px 40px; box-shadow: 0 10px 40px rgba(0, 11, 90, 0.06); }
.trap-frame .sec-header { margin-bottom: 32px; }
.trap-setup { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px; color: var(--ink); line-height: 1.4; margin-bottom: 12px; }
.trap-cycle { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trap-node {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 16px 22px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.trap-num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trap-t { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); font-size: 16px; margin-top: 4px; }
.trap-d { font-size: 13px; color: var(--gray); margin-top: 3px; }
.trap-arrow { font-size: 22px; color: var(--red); line-height: 1; }
.trap-loop { font-family: 'Caveat', cursive; font-weight: 700; font-size: 23px; color: var(--red); margin-top: 12px; transform: rotate(-2deg); }

/* ---------- Fecho: a Rotina mata os 3 vilões ---------- */
.villains-kill { max-width: 760px; margin: 48px auto 0; background: var(--navy); border-radius: var(--radius); padding: 30px 34px; }
.villains-kill-lead { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--cream); text-align: center; margin-bottom: 18px; line-height: 1.4; }
.villains-kill-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.villains-kill-list li { color: var(--blue-light); font-size: 15px; line-height: 1.55; }
.villains-kill-list strong { color: #fff; }
.vk-arrow { color: var(--red); font-weight: 800; margin-right: 4px; }

/* ---------- Reveal ---------- */
.vsl-hidden { display: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .villains-grid, .routine-grid, .mech-grid, .stack-grid, .proof-videos { grid-template-columns: 1fr 1fr; }
  .isnt-grid { grid-template-columns: 1fr 1fr; }

  /* capítulos: título → foto → texto (foto entre o título e o corpo).
     .chapter-text vira display:contents no mobile pra que head/media/body
     virem irmãos e possam ser reordenados; no desktop segue em 2 colunas. */
  .chapter-grid, .chapter-grid-flip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .chapter-text { display: contents; }
  .chapter-head { order: 1; }
  .chapter-media { order: 2; }
  .chapter-body { order: 3; }
  .chapter-head h2 { margin-bottom: 0; }

  .cycle-steps { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .headline { font-size: 27px; }
  .sec-header h2 { font-size: 28px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan-card-hero { order: -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .sec { padding: 44px 0; }
  .villains-grid, .routine-grid, .mech-grid, .stack-grid, .proof-videos,
  .compare-grid, .qualify-grid, .lesson-grid { grid-template-columns: 1fr; }

  /* aviso */
  .aviso-bar { font-size: 12px; padding: 9px 14px; line-height: 1.45; }

  /* marca */
  .brand-lockup { padding: 14px 0; margin-bottom: 8px; gap: 10px; }
  .brand-symbol { height: 30px; }
  .brand-word { font-size: 17px; }

  /* hero */
  .vsl-hero { padding-bottom: 40px; }
  .headline { font-size: 22px; line-height: 1.35; margin-bottom: 18px; }
  .subheadline { font-size: 15.5px; line-height: 1.6; margin: 0 auto 20px; max-width: 100%; }
  .video-frame { border-width: 4px; border-radius: 12px; box-shadow: 0 14px 40px rgba(0, 11, 90, 0.25); }
  .pre-reveal-hint { font-size: 13.5px; margin-top: 16px; }
  .cta-stack { padding: 24px 0 0; gap: 12px; }
  .cta-belt { padding: 32px 0; }
  .avatars { padding-left: 7px; }
  .avatar { width: 32px; height: 32px; font-size: 11px; margin-left: -7px; }
  .avatars-label { font-size: 13px; }
  .cta-button { width: 100%; font-size: 15px; padding: 16px 20px; }
  .cta-trust { gap: 12px; font-size: 11.5px; }

  /* pergunta certa */
  .sec-question { padding: 44px 0; }
  .sec-question .lead { font-size: 16px; }
  .sec-question h2 { font-size: 21px; }
  .sec-question .hand-sign { font-size: 20px; margin-top: 14px; }

  /* cabeçalhos de seção */
  .eyebrow { font-size: 11px; margin-bottom: 10px; }
  .sec-header { margin-bottom: 24px; }
  .sec-header h2 { font-size: 23px; }
  .sec-sub { font-size: 14.5px; }

  /* capítulos da história */
  .chapter { padding: 28px 0; }
  .chapter:first-of-type { padding-top: 48px; }
  .chapter h2 { font-size: 22px; line-height: 1.32; }
  .chapter p { font-size: 14.5px; }
  .chapter .punch { font-size: 15px; }
  .polaroid img { min-height: 240px; max-height: 300px; }
  .polaroid-stack .polaroid img { min-height: 220px; max-height: 260px; }
  .polaroid-sm { margin-top: -30px; }
  .polaroid-stack .polaroid-sm img { min-height: 150px; max-height: 170px; }
  .polaroid-caption { font-size: 19px; margin-top: 8px; }
  .decision-card p { font-size: 14px; }
  .lesson-grid { gap: 10px; margin-top: 14px; }

  /* placar (caderno) */
  .placar-sec { padding: 28px 0 44px; }
  .notebook { padding: 22px 20px; }
  .notebook-rows { grid-template-columns: 1fr; gap: 4px; }
  .notebook-title { font-size: 24px; margin-bottom: 14px; }
  .notebook-row .lab { font-size: 19px; }
  .notebook-row .num { font-size: 26px; }
  .notebook-taxa .lab { font-size: 20px; }
  .notebook-motto { font-size: 19px; }
  .story-close-quote { font-size: 20px; }
  .story-close-by { font-size: 20px; }
  .section-pivot { font-size: 15px; margin-bottom: 24px; }
  .section-pivot strong { font-size: 16px; }

  /* vilões */
  .villain-card { padding: 20px; }
  .villain-card h3 { font-size: 16px; }
  .villain-card p { font-size: 13.5px; }
  .hand-num { font-size: 26px; }
  .pull-quote { font-size: 16.5px; margin-top: 26px; }

  /* mecanismo / pizza */
  .mech-grid { gap: 10px; margin-bottom: 28px; }
  .mech-pair { padding: 14px 16px; }
  .mech-no { font-size: 13.5px; }
  .mech-yes { font-size: 14.5px; }
  .pie-card { padding: 20px 14px 16px; }
  .pie-title { font-size: 15px; }
  .pie-sub { font-size: 19px; }
  .pie-canvas { height: 280px; }
  .pie-note { font-size: 13.5px; }

  /* rotina / roadmap */
  .routine-card { padding: 20px; }
  .routine-min { font-size: 20px; }
  .routine-card h3 { font-size: 16px; }
  .routine-card p { font-size: 13.5px; }
  .routine-sum { font-size: 17px; margin-top: 22px; }
  .flash-card { padding: 18px; gap: 14px; margin-top: 20px; }
  .flash-chip { width: 36px; height: 36px; border-radius: 10px; font-size: 15px; }
  .flash-card h3 { font-size: 14.5px; }
  .flash-card p { font-size: 13px; }
  .cycle { margin-top: 40px; }
  .cycle h3 { font-size: 17px; }
  .cycle .hand-note { font-size: 19px; }
  .roadmap-canvas { height: 200px; }
  .cycle-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cycle-note { font-size: 13px; }

  /* comparativo (mantido) */
  .compare-card { padding: 24px; }
  .compare-card h3 { font-size: 19px; }

  /* provas sociais */
  .proof-stat { margin-bottom: 24px; }
  .proof-stat .ring-num { font-size: 42px; }
  .proof-stat-text { font-size: 14px; }
  .proof-videos { gap: 16px; }
  .proof-hand { font-size: 21px; margin: 26px 0 10px; }
  .proof-prints-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .proof-print { padding: 0; border: 0; box-shadow: none; background: transparent; }
  .proof-print img { border: 1px solid var(--cream-line); box-shadow: 0 8px 20px rgba(0, 11, 90, 0.08); }
  .proof-note { font-size: 14px; }

  /* o que é / não é (mantido) */
  .isnt-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stack-grid { gap: 12px; }

  /* oferta */
  .sec-offer { padding: 48px 0; }
  .offer-anchor-list { max-width: 100%; }
  .offer-anchor-list li { font-size: 13px; gap: 12px; }
  .offer-hand { font-size: 22px; }
  .plans-grid { gap: 18px; margin-top: 28px; }
  .plan-card { padding: 24px 22px; }
  .plan-card-hero { padding: 28px 22px; }
  .plan-price { font-size: 30px; }
  .plan-card-hero .plan-price { font-size: 36px; }
  .plans-note { font-size: 13.5px; }
  .bonus-strip { flex-direction: row; align-items: center; text-align: left; gap: 14px; padding: 16px 18px; }
  .bonus-book { display: block; width: 84px; height: auto; flex-shrink: 0; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)); }
  .bonus-copy { display: flex; flex-direction: column; gap: 4px; }
  .accept-note { font-size: 13px; }

  /* garantia */
  .guarantee-shield { width: 64px; height: 64px; font-size: 21px; margin-bottom: 14px; }
  .guarantee-inner h2 { font-size: 23px; margin-bottom: 12px; }
  .guarantee-inner p { font-size: 14px; }
  .guarantee-punch { font-size: 24px !important; margin: 4px 0 20px !important; }

  /* faq (mantido) */
  .faq-item { padding: 16px 18px; }
  .faq-item summary { font-size: 15px; }
  .faq-body { font-size: 14px; }

  /* cta final */
  .final-panel { padding: 52px 0; }
  .final-logo { height: 40px; margin-bottom: 18px; }
  .final-panel h2 { font-size: 21px; }
  .final-sub { font-size: 14px; margin-bottom: 20px; }
  .final-recap { gap: 8px; margin-bottom: 22px; }
  .final-panel .cta-button { width: 100%; padding: 17px 20px; font-size: 15px; }
  .final-signature { font-size: 13px; }
  .group-frame { padding: 16px; border-radius: 18px; max-width: 400px; }
  .group-prints { grid-template-columns: 1fr; }

  /* novos: armadilha + fecho vilões */
  .trap-frame { padding: 28px 20px 24px; border-radius: 18px; }
  .trap-setup { font-size: 16px; }
  .trap-node { padding: 14px 18px 12px; }
  .trap-t { font-size: 15px; }
  .trap-loop { font-size: 20px; }
  .villains-kill { padding: 22px 20px; margin-top: 36px; }
  .villains-kill-lead { font-size: 16px; }
  .villains-kill-list li { font-size: 14px; }
}
