/* ============================================================
   A MÁQUINA DE CONTEÚDO · Páginas de Vendas v2
   Síntese: Oney 70% (energia: botões, glow, shine, motion)
          + Luana 30% (corpo: flat, respiro, editorial)
          + Máquina (pele: sépia/cobre/Zaun, Archivo+JetBrains)
   Mobile-first: base = 390px. Desktop é upgrade via min-width.
   ============================================================ */

:root {
  /* Superfícies (flat — imagem só no hero e no CTA final) */
  --bg:        #2a1f15;
  --bg-alt:    #251b10;
  --bg-deep:   #1c140c;
  --card:      #33271a;
  --card-hi:   #3a2c1d;

  /* Tinta */
  --ink:       #F2E9D5;
  --ink-soft:  rgba(242, 233, 213, 0.78);
  --ink-dim:   rgba(242, 233, 213, 0.52);

  /* Marca */
  --copper:    #B87333;
  --copper-hi: #D89050;
  --green:     #39FF6A;
  --green-dim: rgba(57, 255, 106, 0.14);
  --glow:      rgba(57, 255, 106, 0.32);
  --red:       #FF4A3A;
  --red-glow:  rgba(255, 74, 58, 0.35);
  --red-dim:   rgba(255, 74, 58, 0.14);

  /* Liquid glass (Apple-like) */
  --glass-bg:   linear-gradient(155deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.06));
  --glass-line: rgba(255, 255, 255, 0.18);
  --glass-hi:   inset 0 1px 0 rgba(255, 255, 255, 0.28);

  /* Linhas */
  --line:      rgba(184, 115, 51, 0.22);
  --line-hi:   rgba(184, 115, 51, 0.45);

  /* Type */
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;
  --serif:   'Playfair Display', Georgia, serif;

  /* Ritmo (Luana: MUITO respiro) */
  --sec:   clamp(88px, 18vw, 168px);
  --pad:   clamp(20px, 5vw, 44px);
  --w-txt: 680px;
  --w-big: 1060px;
  --r:     14px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
strong { color: var(--ink); font-weight: 600; }
button { font: inherit; }
summary::-webkit-details-marker { display: none; }
::selection { background: rgba(57, 255, 106, 0.25); color: var(--ink); }

.wrap     { width: 100%; max-width: var(--w-txt); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.wrap-big { width: 100%; max-width: var(--w-big); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }

.sec { padding: var(--sec) 0; position: relative; }
.sec-alt { background: var(--bg-alt); }
.sec-deep { background: var(--bg-deep); }

/* Divisor hairline entre seções (Luana) */
.hair {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}

/* ============================================================
   EYEBROW · "● label" literal da Luana
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-hi);
  margin-bottom: 22px;
  line-height: 1.9;
}
.eyebrow::before {
  content: '●';
  display: inline-block;
  font-size: 8px;
  color: var(--green);
  text-shadow: 0 0 10px var(--glow);
  animation: pulse 2.6s ease-in-out infinite;
  margin-right: 10px;
  vertical-align: 1px;
}
.eyebrow--center { text-align: center; }
@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}

/* ============================================================
   TIPOGRAFIA DISPLAY
   ============================================================ */
.h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 8.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 22px;
}
.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 6.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 20px;
}
.h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 4.4vw, 26px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.grn { color: var(--green); text-shadow: 0 0 26px var(--glow); }
.cpr { color: var(--copper-hi); }

.lead {
  font-size: clamp(15px, 4vw, 17.5px);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 560px;
}
.lead strong { color: var(--ink); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ============================================================
   BOTÃO · a energia do Oney
   glow + breathe + shine sweep + reflexo de vidro + seta
   ============================================================ */
.cta {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 19px 28px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  color: #081207;
  background: linear-gradient(180deg, #72ff9a 0%, var(--green) 45%, #1ecf4e 100%);
  box-shadow:
    0 0 0 1px rgba(57, 255, 106, 0.6),
    0 0 30px var(--glow),
    0 10px 26px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(0, 60, 20, 0.35);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s;
  animation: breathe 2.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}
/* Reflexo de vidro (metade superior) */
.cta::before {
  content: '';
  position: absolute;
  inset: 2px 2px 52% 2px;
  border-radius: 10px 10px 40px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05));
  pointer-events: none;
  z-index: 1;
}
/* Shine sweep periódico */
.cta::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -140%;
  width: 55%;
  height: 140%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.65) 50%, transparent 80%);
  transform: skewX(-24deg);
  animation: shine 4.2s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.cta > span { position: relative; z-index: 3; }
.cta .arw {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta:hover { transform: translateY(-2px) scale(1.015); filter: brightness(1.07); color: #081207; }
.cta:hover .arw { transform: translateX(5px); }
.cta:active { transform: translateY(0) scale(0.985); filter: brightness(0.94); }

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(57,255,106,0.6), 0 0 26px var(--glow), 0 10px 26px rgba(0,0,0,0.45), inset 0 2px 0 rgba(255,255,255,0.5), inset 0 -3px 0 rgba(0,60,20,0.35); }
  50%      { box-shadow: 0 0 0 1px rgba(57,255,106,0.9), 0 0 52px rgba(57,255,106,0.55), 0 12px 30px rgba(0,0,0,0.5), inset 0 2px 0 rgba(255,255,255,0.55), inset 0 -3px 0 rgba(0,60,20,0.35); }
}
@keyframes shine {
  0%       { left: -140%; }
  38%      { left: 150%; }
  100%     { left: 150%; }
}

.cta-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 18px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
}
.cta-note .ok { color: var(--green); }
.cta-note .nb { white-space: nowrap; }

/* ============================================================
   TOPBAR mínima
   ============================================================ */
.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(26, 18, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px var(--pad);
  max-width: var(--w-big);
  margin: 0 auto;
}
.top-brand {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.top-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
body { padding-top: 46px; }

/* Barra de progresso de leitura (Oney momentum) */
.progress {
  position: fixed;
  top: 45px; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--green));
  box-shadow: 0 0 10px var(--glow);
  z-index: 61;
}

/* ============================================================
   STICKY BUY-BAR mobile (aparece depois do hero)
   ============================================================ */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(24, 17, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-hi);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.buybar.on { transform: translateY(0); }
.buybar-price { display: flex; flex-direction: column; line-height: 1.15; min-width: 84px; }
.buybar-num {
  font-family: var(--display);
  font-size: 21px;
  color: var(--green);
  text-shadow: 0 0 14px var(--glow);
}
.buybar-sub { font-size: 9px; letter-spacing: 0.1em; color: var(--ink-dim); text-transform: uppercase; }
.buybar .cta {
  flex: 1;
  padding: 13px 16px;
  font-size: 12.5px;
  border-radius: 10px;
  animation: none;
}

/* ============================================================
   COUNTDOWN (só lançamento)
   ============================================================ */
.count {
  display: inline-flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 26px;
}
.count-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
  padding: 10px 8px 8px;
  background: var(--glass-bg), rgba(24, 14, 10, 0.55);
  border: 1px solid rgba(255, 74, 58, 0.45);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glass-hi), 0 0 24px rgba(255, 74, 58, 0.14), 0 8px 20px rgba(0, 0, 0, 0.35);
}
.count-num {
  font-family: var(--display);
  font-size: clamp(22px, 6vw, 30px);
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  font-variant-numeric: tabular-nums;
}
.count-lbl { font-size: 8.5px; letter-spacing: 0.22em; color: var(--ink-dim); text-transform: uppercase; }
.count-title {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 14px var(--red-glow);
  margin-top: 24px;
}
.urg { color: var(--red); font-weight: 600; }

/* ============================================================
   HERO (única seção com imagem junto do CTA final)
   ============================================================ */
.hero {
  position: relative;
  padding: 86px 0 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(56% 38% at 16% 8%, rgba(216, 144, 80, 0.16), transparent 62%),
    radial-gradient(52% 34% at 86% 82%, rgba(57, 255, 106, 0.10), transparent 62%),
    linear-gradient(180deg, #302417 0%, var(--bg) 52%, #261c11 100%);
}
.hero-row { display: flex; flex-direction: column; }
.hero-banner { position: relative; z-index: 1; }
.hero-banner img, .hero-banner video { width: 100%; display: block; }
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 78%, rgba(42, 31, 21, 0.55) 100%);
  pointer-events: none;
}
/* Botão de som (liquid glass) */
.sound-btn {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-line);
  background: var(--glass-bg), rgba(20, 14, 8, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  box-shadow: var(--glass-hi), 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.sound-btn.on {
  color: var(--green);
  border-color: rgba(57, 255, 106, 0.5);
  box-shadow: var(--glass-hi), 0 0 22px rgba(57, 255, 106, 0.25);
}
.h1--compact {
  font-size: clamp(23px, 6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.hero-figure {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.hero-figure::before {
  content: '';
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 135%;
  height: 58%;
  background: radial-gradient(50% 52% at 50% 62%, rgba(57, 255, 106, 0.16), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-cutout {
  position: relative;
  height: min(46svh, 430px);
  width: auto;
  filter:
    drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 34px rgba(57, 255, 106, 0.10));
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 99%);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(42,31,21,0.78) 0%, rgba(42,31,21,0.30) 34%, rgba(36,26,17,0.55) 58%, rgba(28,20,12,0.90) 82%, rgba(28,20,12,0.97) 100%);
}
.hero-eyebrow { margin-bottom: 16px; }
.hero .h1 { text-shadow: 0 3px 0 rgba(0,0,0,0.25), 0 10px 30px rgba(0,0,0,0.4); }
.hero .lead { margin-bottom: 30px; }
.hero-cta-zone { position: relative; z-index: 2; max-width: 460px; padding-top: 22px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(57, 255, 106, 0.5);
  background: rgba(20, 14, 8, 0.55);
  padding: 8px 15px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 22px rgba(57, 255, 106, 0.12);
}

/* Seta de scroll */
.hero-scroll {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-dim);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   STATS · faixa editorial limpa
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.stat {
  padding: 26px 8px 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat-num {
  font-family: var(--display);
  font-size: clamp(30px, 8.4vw, 54px);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
  text-shadow: 0 0 26px rgba(57, 255, 106, 0.35);
  font-variant-numeric: tabular-nums;
}
.stat-lbl {
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
  margin-top: 10px;
}
.stats-foot {
  font-family: var(--display);
  font-size: clamp(17px, 4.6vw, 26px);
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  margin-top: 48px;
  text-wrap: balance;
}

/* ============================================================
   STORY · editorial com retrato
   ============================================================ */
.story-grid { display: flex; flex-direction: column; gap: 36px; }
.story-grid .carousel { max-width: 340px; }
.story-photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  max-width: 340px;
  box-shadow: 0 18px 50px rgba(15, 10, 5, 0.6);
}
.story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(216, 144, 80, 0.25), inset 0 0 0 1px var(--line);
  pointer-events: none;
}
.story-photo-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.story-txt p { color: var(--ink-soft); margin-bottom: 18px; font-size: 15px; }
.story-txt p strong { color: var(--ink); }
.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 4.6vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 26px;
}
.story-quote::before {
  content: '"';
  display: block;
  font-size: 52px;
  line-height: 0.5;
  color: var(--green);
  margin-bottom: 14px;
  font-style: normal;
}
.story-handles { margin-top: 20px; font-size: 12.5px; color: var(--green); font-weight: 600; }
.story-handles .dot-sep { color: var(--copper); margin: 0 8px; }

/* ============================================================
   PERSONAS · check-cards da Luana
   ============================================================ */
.fits { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 8px; }
.fit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 18px;
  background: var(--glass-bg), var(--card);
  border: 1px solid var(--glass-line);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-hi), 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s, transform 0.25s;
}
.fit:hover { border-color: var(--line-hi); transform: translateY(-2px); }
.fit-check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dim);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(57, 255, 106, 0.15);
}
.fit-tag {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.fit-txt { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.fit-txt strong { color: var(--ink); }

.notfor {
  margin-top: 40px;
  padding: 24px 22px;
  border: 1px dashed var(--line-hi);
  border-radius: var(--r);
}
.notfor-h {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.notfor ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.notfor li {
  font-size: 13px;
  color: var(--ink-dim);
  padding-left: 22px;
  position: relative;
}
.notfor li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 700; text-shadow: 0 0 8px var(--red-glow); }
.notfor-h .cpr { color: var(--red); }
.notfor { border-color: rgba(255, 74, 58, 0.35); }

/* ============================================================
   MECANISMO · pipeline vertical com trilho
   ============================================================ */
.steps { list-style: none; position: relative; margin-top: 10px; }
.steps::before {
  content: '';
  position: absolute;
  left: 21px; top: 30px; bottom: 30px;
  width: 2px;
  background: rgba(184, 115, 51, 0.25);
}
/* Trilho que preenche conforme o scroll (roadmap) */
.rail-fill {
  position: absolute;
  left: 21px; top: 30px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--green), #1ecf4e);
  box-shadow: 0 0 14px var(--glow);
  z-index: 0;
}
.step-dot { transition: border-color 0.4s, color 0.4s, box-shadow 0.4s; }
.step-dot.past {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 5px var(--bg), 0 0 20px rgba(57, 255, 106, 0.35);
}
/* Cards de imagem 3D liquid glass do roadmap */
.step-shot {
  margin: 16px 0 4px;
  max-width: 340px;
  padding: 6px;
  border-radius: 16px;
  background: var(--glass-bg), var(--card);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-hi), 0 26px 48px rgba(0, 0, 0, 0.5);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.step:nth-child(odd) .step-shot { transform: perspective(900px) rotateY(5deg) rotateX(2deg); }
.step-shot:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) scale(1.04) translateY(-4px);
  box-shadow: var(--glass-hi), 0 34px 60px rgba(0, 0, 0, 0.6), 0 0 34px rgba(57, 255, 106, 0.12);
}
.step-shot img { width: 100%; display: block; border-radius: 11px; }
.step {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 22px 0;
}
.step-dot {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 14px;
  background: var(--bg);
  border: 1.5px solid var(--copper);
  color: var(--copper-hi);
  z-index: 1;
  box-shadow: 0 0 0 5px var(--bg);
}
.step:nth-child(n+3) .step-dot { border-color: var(--green); color: var(--green); box-shadow: 0 0 0 5px var(--bg), 0 0 18px rgba(57,255,106,0.25); }
.step-h {
  font-family: var(--display);
  font-size: 15.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 10px 0 8px;
}
.step-p { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); max-width: 520px; }

.blueprint {
  margin-top: 52px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-hi);
  position: relative;
  box-shadow: 0 20px 60px rgba(15, 10, 5, 0.55), 0 0 60px rgba(57, 255, 106, 0.05);
}
.blueprint::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--copper-hi), transparent);
}
.blueprint img { width: 100%; height: auto; }
.blueprint-cap {
  position: absolute;
  left: 12px; bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(20, 14, 8, 0.8);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 11px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ============================================================
   PROVA · antes/depois flat + depoimentos manchete+print
   ============================================================ */
.proof-grid { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.proof-col {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
}
.proof-col--win {
  border-color: rgba(57, 255, 106, 0.45);
  background: linear-gradient(180deg, rgba(57,255,106,0.06), transparent 40%), var(--card);
  box-shadow: 0 0 60px rgba(57, 255, 106, 0.12), var(--glass-hi);
  position: relative;
  overflow: hidden;
}
/* Brilho varrendo a coluna vencedora */
.proof-col--win::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 40%;
  height: 150%;
  background: linear-gradient(105deg, transparent 25%, rgba(57, 255, 106, 0.10) 50%, transparent 75%);
  transform: skewX(-20deg);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}
.proof-col--antes { opacity: 0.85; }
.proof-col--antes .proof-lbl { color: var(--red); }
.proof-col--antes .proof-stat {
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 74, 58, 0.65);
}
.proof-head { display: flex; flex-direction: column; gap: 5px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); margin-bottom: 18px; }
.proof-lbl { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper-hi); font-weight: 600; }
.proof-lbl--win { color: var(--green); }
.proof-stat {
  font-family: var(--display);
  font-size: clamp(19px, 5.2vw, 27px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.proof-stat--win { color: var(--green); text-shadow: 0 0 20px var(--glow); }
.proof-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.proof-thumbs--4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.proof-thumb {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.proof-thumb img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
.proof-thumb:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 26px rgba(0,0,0,0.5); }
.proof-vs {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}
.proof-vs-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--copper-hi), transparent); }
.proof-vs-txt {
  font-family: var(--display);
  font-size: 14px;
  color: var(--copper-hi);
  border: 1px solid var(--copper);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-foot {
  font-family: var(--display);
  font-size: clamp(15px, 4.2vw, 21px);
  line-height: 1.45;
  text-transform: uppercase;
  text-align: center;
  margin-top: 36px;
  text-wrap: balance;
}

/* Depoimentos manchete+print · carrossel horizontal (Oney) */
.swipe-hint {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin: 16px 0 0;
}
.wins {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  margin-top: 22px;
  padding: 6px 2px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.wins::-webkit-scrollbar { display: none; }
.wins { perspective: 1000px; }
.win {
  flex: 0 0 76%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform-style: preserve-3d;
  will-change: transform;
}
.win-headline {
  font-family: var(--display);
  font-size: 15.5px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}
.win-headline .grn { text-shadow: 0 0 16px rgba(57,255,106,0.3); }
.win-shot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
/* Camada de fundo: mesmo print expandido + embaçado (padroniza o tamanho) */
.win-shot .win-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(16px) brightness(0.62) saturate(0.85);
  transform: scale(1.2);
}
/* Camada da frente: print inteiro, centralizado */
.win-shot .win-fg {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
}
.win-shot--empty {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: var(--line-hi);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--copper);
  text-transform: uppercase;
  background: repeating-linear-gradient(45deg, rgba(184,115,51,0.05) 0 10px, rgba(184,115,51,0.09) 10px 20px), var(--card);
}
.quotes {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.quotes::-webkit-scrollbar { display: none; }
.quote {
  flex: 0 0 74%;
  scroll-snap-align: center;
  padding: 22px 20px;
  background: var(--glass-bg), var(--card);
  border: 1px solid var(--glass-line);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-hi), 0 8px 20px rgba(0, 0, 0, 0.25);
}
.quote-t { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.6; }
.quote-t::before { content: '" '; color: var(--green); }
.quote-w { margin-top: 12px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper-hi); }

/* ============================================================
   OBJEÇÕES · 4 cartões flat
   ============================================================ */
.objs { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 10px; }
.obj {
  padding: 26px 22px;
  background: var(--glass-bg), var(--card);
  border: 1px solid var(--glass-line);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-hi), 0 8px 20px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.obj:hover { border-color: var(--line-hi); transform: translateY(-2px); }
.obj-kill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid rgba(255, 74, 58, 0.45);
  background: var(--red-dim);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-decoration: line-through;
  text-decoration-color: var(--green);
  text-decoration-thickness: 1.5px;
}
.obj-h { font-family: var(--display); font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
.obj-p { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); }

/* ============================================================
   CURRÍCULO · linhas editoriais (Luana), accordion nativo
   ============================================================ */
.currintro { margin-bottom: 40px; }
.mods { display: flex; flex-direction: column; gap: 12px; }
.mod {
  background: var(--glass-bg), var(--card);
  border: 1px solid var(--glass-line);
  border-radius: var(--r);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-hi), 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s;
}
.mod:hover { border-color: rgba(57, 255, 106, 0.35); }
.mod-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
/* Chip de affordance explícita (padrão "VER OS CÓDIGOS" do Oney) */
.mod-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  background: rgba(57, 255, 106, 0.07);
  border: 1px solid rgba(57, 255, 106, 0.45);
  border-radius: 100px;
  padding: 6px 11px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.mod-plus {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.3s;
}
details[open] .mod-cta { color: #081207; background: var(--green); box-shadow: 0 0 16px var(--glow); }
details[open] .mod-plus { transform: rotate(45deg); }
.mod-id {
  flex: none;
  font-family: var(--display);
  font-size: 12px;
  color: var(--copper-hi);
  letter-spacing: 0.08em;
  width: 34px;
}
.mod-name {
  flex: 1;
  font-family: var(--display);
  font-size: clamp(13.5px, 3.8vw, 17px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.mod-n { flex: none; font-size: 10px; letter-spacing: 0.14em; color: var(--ink-dim); text-transform: uppercase; }
.mod-arrow { flex: none; width: 16px; height: 16px; color: var(--copper); transition: transform 0.3s; }
details[open] .mod-arrow { transform: rotate(180deg); color: var(--green); }
details[open] .mod-name { color: var(--green); }
.mod-core .mod-id { color: var(--green); text-shadow: 0 0 12px var(--glow); }
.mod-flag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  border: 1px solid rgba(57, 255, 106, 0.45);
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: 2px;
  white-space: nowrap;
}
.mod-body { padding: 0 18px 22px; animation: slideIn 0.3s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mod-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.mod-body li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.mod-body li::before { content: '▸'; position: absolute; left: 0; color: var(--green); font-size: 12px; }
.mod-out {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  border-left: 2px solid var(--green);
  padding-left: 14px;
}
.mod-out b { color: var(--green); font-weight: 600; font-size: 9.5px; letter-spacing: 0.22em; display: block; margin-bottom: 4px; }
.curr-foot { text-align: center; margin-top: 44px; font-size: 14px; color: var(--ink-soft); }
.curr-foot strong { color: var(--green); }

/* ============================================================
   BÔNUS · Pack com ícones reais
   ============================================================ */
.pack {
  border: 1px solid rgba(57, 255, 106, 0.4);
  border-radius: 18px;
  padding: clamp(28px, 6vw, 56px) clamp(20px, 5vw, 48px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(57, 255, 106, 0.07), transparent 55%),
    var(--card);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(57, 255, 106, 0.07), inset 0 1px 0 rgba(57, 255, 106, 0.18);
}
.pack-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ff6a55, var(--red) 55%, #d93325);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 20px;
  box-shadow: var(--glass-hi), 0 0 28px var(--red-glow);
}
.pack-pill--soft { background: transparent; color: var(--copper-hi); border: 1px solid var(--copper); box-shadow: none; }
.pack-h { font-family: var(--display); font-size: clamp(20px, 5.6vw, 30px); text-transform: uppercase; margin-bottom: 6px; }
.pack-free {
  font-family: var(--display);
  font-size: clamp(46px, 13vw, 84px);
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 44px rgba(57, 255, 106, 0.5);
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}
.pack-meta { font-size: 12px; color: var(--ink-dim); margin-bottom: 32px; }
.pack-meta .sep { color: var(--copper); margin: 0 8px; }
.agents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}
.agent {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg), rgba(20, 14, 8, 0.5);
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-hi), 0 10px 24px rgba(0, 0, 0, 0.3);
  animation: floaty 5.4s ease-in-out infinite;
  transition: border-color 0.25s, box-shadow 0.3s;
  will-change: transform;
}
.agent::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -130%;
  width: 45%;
  height: 160%;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
  transform: skewX(-22deg);
  animation: shine 6.5s ease-in-out infinite;
  pointer-events: none;
}
.agent:nth-child(1) { animation-delay: 0s; }
.agent:nth-child(2) { animation-delay: 0.7s; }
.agent:nth-child(3) { animation-delay: 1.4s; }
.agent:nth-child(4) { animation-delay: 2.1s; }
.agent:nth-child(5) { animation-delay: 2.8s; }
.agent:nth-child(6) { animation-delay: 3.5s; }
.agent:nth-child(2)::after { animation-delay: 0.9s; }
.agent:nth-child(3)::after { animation-delay: 1.8s; }
.agent:nth-child(4)::after { animation-delay: 2.7s; }
.agent:nth-child(5)::after { animation-delay: 3.6s; }
.agent:nth-child(6)::after { animation-delay: 4.5s; }
.agent:hover {
  animation-play-state: paused;
  border-color: rgba(57, 255, 106, 0.5);
  transform: translateY(-5px) perspective(600px) rotateX(4deg) rotateY(-3deg) scale(1.02);
  box-shadow: var(--glass-hi), 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 26px rgba(57, 255, 106, 0.18);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.agent img {
  width: 46px; height: 46px;
  border-radius: 9px;
  object-fit: cover;
  flex: none;
  box-shadow: 0 0 0 1px var(--line-hi);
}
.agent-name { font-size: 11.5px; font-weight: 600; line-height: 1.35; }
.agent-role { font-size: 9.5px; color: var(--ink-dim); letter-spacing: 0.04em; }
.pack-pitch { font-size: 13px; line-height: 1.7; color: var(--ink-soft); max-width: 440px; margin: 0 auto 30px; }

/* ============================================================
   GARANTIA · selo limpo
   ============================================================ */
.seal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: clamp(30px, 6vw, 56px) clamp(22px, 5vw, 52px);
  border: 1px solid var(--line-hi);
  border-radius: 18px;
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.seal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper-hi), transparent);
}
/* Selo hexagonal 3D */
.seal {
  position: relative;
  width: 176px; height: 186px;
  flex: none;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(57, 255, 106, 0.08));
  animation: floaty 6.5s ease-in-out infinite;
}
.seal svg { width: 100%; height: 100%; }
.seal-txt { padding-top: 4px; }
@keyframes spin { to { transform: rotate(360deg); } }
.seal-txt {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seal-n { font-family: var(--display); font-size: 46px; line-height: 1; color: var(--green); text-shadow: 0 0 26px var(--glow); }
.seal-d { font-size: 10px; letter-spacing: 0.32em; margin-top: 4px; text-transform: uppercase; }
.seal-body .h3 { margin-bottom: 14px; }
.seal-p { font-size: 14px; line-height: 1.8; color: var(--ink-soft); max-width: 480px; }
.seal-p strong { color: var(--green); }
.seal-risk {
  font-family: var(--display);
  font-size: clamp(14px, 3.8vw, 17px);
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  max-width: 480px;
}

/* ============================================================
   PREÇO · tabela de valor (Luana) + revelação
   ============================================================ */
.offer {
  border: 1px solid rgba(57, 255, 106, 0.35);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 0 80px rgba(57, 255, 106, 0.06), 0 24px 60px rgba(10, 7, 4, 0.55);
}
.offer-head {
  padding: 22px 24px;
  background: rgba(20, 14, 8, 0.5);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-hi);
}
.offer-rows { padding: 4px 24px; }
.offer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px dashed var(--line);
}
.offer-row:last-child { border-bottom: none; }
.offer-what { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.offer-what strong { color: var(--ink); }
.offer-val {
  font-family: var(--display);
  font-size: 14px;
  color: var(--red);
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255, 74, 58, 0.6);
}
.offer-val--free { color: var(--green); text-shadow: 0 0 14px var(--glow); text-decoration: none; }
.offer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid var(--line-hi);
  background: rgba(20, 14, 8, 0.4);
}
.offer-total-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-dim); }
.offer-total-val {
  font-family: var(--display);
  font-size: 22px;
  color: var(--red);
  text-shadow: 0 0 18px var(--red-glow);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 74, 58, 0.75);
  text-decoration-thickness: 2px;
}
.offer-now {
  text-align: center;
  padding: 40px 24px 44px;
  background:
    radial-gradient(90% 100% at 50% 100%, rgba(57, 255, 106, 0.08), transparent 60%),
    var(--bg-deep);
}
.offer-now-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper-hi); }
.offer-price {
  font-family: var(--display);
  font-size: clamp(64px, 19vw, 110px);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
  text-shadow: 0 0 44px rgba(57, 255, 106, 0.45), 0 0 100px rgba(57, 255, 106, 0.18);
  margin: 10px 0 6px;
}
.offer-terms { font-size: 12.5px; color: var(--ink-soft); }
.offer-terms .pix { color: var(--green); font-weight: 600; }
.offer-honest {
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 22px auto 30px;
}
.offer-now .cta { max-width: 460px; margin: 0 auto; }

/* ============================================================
   FAQ · linhas limpas
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
  transition: color 0.2s;
}
.faq summary:hover { color: var(--green); }
.faq details[open] summary { color: var(--green); }
.faq-a { padding: 0 4px 22px; font-size: 13.5px; line-height: 1.8; color: var(--ink-soft); animation: slideIn 0.3s ease; }
.faq .mod-arrow { flex: none; }

/* ============================================================
   CTA FINAL (segunda e última seção com imagem)
   ============================================================ */
.final {
  position: relative;
  padding: clamp(110px, 22vw, 190px) 0;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.final-bg { position: absolute; inset: 0; z-index: -2; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(57, 255, 106, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(30, 21, 13, 0.94) 0%, rgba(42, 31, 21, 0.66) 50%, rgba(30, 21, 13, 0.95) 100%);
}
.final .h2 { margin-bottom: 8px; }
.final-sub { font-size: 14px; color: var(--ink-soft); margin: 18px auto 36px; max-width: 440px; }
.final .cta { max-width: 430px; margin: 0 auto; }
.final-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 4.4vw, 20px);
  line-height: 1.6;
  max-width: 480px;
  margin: 44px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 34px 0 110px; }
.foot-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.foot-brand { font-family: var(--display); font-size: 11px; letter-spacing: 0.18em; }
.foot-txt { font-size: 10.5px; color: var(--ink-dim); letter-spacing: 0.04em; }
.foot-legal {
  font-size: 9.5px;
  line-height: 1.75;
  color: var(--ink-dim);
  text-align: center;
  max-width: 560px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

/* ============================================================
   VSL · mockup (trocar pelo vídeo real quando gravado)
   ============================================================ */
.vsl--v {
  aspect-ratio: 9 / 16 !important;
  max-width: min(74vw, 350px);
  margin-inline: auto;
}
.vsl {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-hi), 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(57, 255, 106, 0.07);
  margin-top: 8px;
}
.vsl-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.55) saturate(0.9);
  transform: scale(1.05);
}
.vsl-glass {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.vsl-play {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--glass-bg), rgba(57, 255, 106, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: var(--glass-hi), 0 0 40px var(--glow);
  animation: pulse 2.4s ease-in-out infinite;
}
.vsl-play svg { margin-left: 5px; }
.vsl-note {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(20, 14, 8, 0.6);
  border: 1px solid var(--glass-line);
  border-radius: 100px;
  padding: 7px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ============================================================
   BAND · faixa de imagem intercalada (riqueza visual Oney)
   ============================================================ */
.band {
  position: relative;
  height: clamp(150px, 26vw, 250px);
  overflow: hidden;
  isolation: isolate;
}
.band img {
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center 40%;
  margin-top: -6%;
}
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
              rgba(42, 31, 21, 0.28);
  pointer-events: none;
}
.band--alt::after {
  background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
              rgba(42, 31, 21, 0.28);
}

/* ============================================================
   CAROUSEL · fotos do Bruno (auto + swipe)
   ============================================================ */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-hi), 0 20px 54px rgba(12, 8, 4, 0.65);
  touch-action: pan-y;
}
.car-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.car-slide.is-on { opacity: 1; pointer-events: auto; }
.car-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
}
.car-slide.is-on img { transform: scale(1.05); }
.car-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 11, 6, 0.82) 100%);
  pointer-events: none;
}
.car-cap {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.car-dots {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.car-dot {
  width: 18px; height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(242, 233, 213, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.car-dot.is-on { background: var(--green); width: 30px; box-shadow: 0 0 10px var(--glow); }

/* ============================================================
   REVEAL · scroll animations (Oney momentum)
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(5px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
  will-change: opacity, transform, filter;
}
.rv.go { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; filter: none; transition: none; }
  .cta { animation: none; }
  .cta::after { animation: none; }
  .seal svg, .seal-txt { animation: none; }
  html { scroll-behavior: auto; }
}

/* Mobile: chip VER AULAS sem cortar + topbar curta + countdown centrado */
@media (max-width: 759px) {
  .mod-row { gap: 10px; padding: 16px 12px; }
  .mod-n { display: none; }
  .mod-cta { padding: 6px 10px; letter-spacing: 0.1em; }
  .mod-body { padding: 0 14px 20px; }
  .top-hide-m { display: none; }
  .count-title { text-align: center; }
  .count { width: 100%; justify-content: center; }
}

/* ============================================================
   DESKTOP UPGRADES
   ============================================================ */
@media (min-width: 760px) {
  body { padding-top: 50px; }
  .progress { top: 49px; }
  .top-row { padding-top: 15px; padding-bottom: 15px; }
  .top-brand { font-size: 12px; }
  .top-meta { font-size: 10.5px; }

  .buybar { display: none; }
  footer { padding-bottom: 44px; }

  .cta { width: auto; display: inline-flex; padding: 20px 52px; font-size: 15px; }
  .buybar .cta { display: flex; }

  .hero-banner { max-width: var(--w-big); margin: 22px auto 0; padding: 0 var(--pad); }
  .hero-banner img, .hero-banner video { border-radius: var(--r); box-shadow: 0 22px 54px rgba(10, 7, 4, 0.55), 0 0 0 1px var(--glass-line); }
  .hero-banner::after { display: none; }
  .hero-cta-zone { max-width: 640px; padding-top: 34px; }
  .hero .lead { max-width: 560px; }
  .h1--compact { font-size: clamp(30px, 3.6vw, 46px); }

  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 34px 12px 30px; border-right: 1px solid var(--line); }
  .stat:nth-child(3n) { border-right: none; }

  .story-grid { flex-direction: row; gap: 56px; align-items: flex-start; }
  .story-photo, .story-grid .carousel { flex: none; width: 320px; position: sticky; top: 90px; }
  .story-txt { flex: 1; }

  .fits { grid-template-columns: 1fr 1fr; gap: 14px; }

  .steps::before { left: 25px; }
  .rail-fill { left: 25px; }
  .step-dot { width: 52px; height: 52px; font-size: 16px; }
  .step { gap: 26px; padding: 26px 0; }
  .step-h { font-size: 18px; }
  .step-p { font-size: 14.5px; }
  .step-body-row { display: flex; gap: 32px; align-items: flex-start; }
  .step-body-row > div:first-child { flex: 1; }
  .step-shot { flex: none; width: 300px; margin-top: 4px; }

  .proof-grid { flex-direction: row; align-items: stretch; gap: 0; }
  .proof-col { flex: 1; }
  .proof-col--win { flex: 1.25; }
  .proof-vs { flex-direction: column; padding: 0 18px; }
  .proof-vs-line { width: 1px; height: auto; flex: 1; background: linear-gradient(180deg, transparent, var(--copper-hi), transparent); }

  .swipe-hint { display: none; }
  .wins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; overflow: visible; }
  .win { flex: none; }
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .quote { flex: none; }

  .objs { grid-template-columns: 1fr 1fr; gap: 16px; }

  .agents { grid-template-columns: repeat(3, 1fr); }

  .seal-card { flex-direction: row; text-align: left; gap: 44px; }
  .seal-risk { border-top: none; padding-top: 0; margin-top: 14px; }
  .seal-body .seal-p { margin-bottom: 0; }

  .count-cell { min-width: 78px; }

  .final .cta { max-width: none; }
}

@media (min-width: 1080px) {
  .h1 { font-size: clamp(56px, 5.6vw, 80px); }
  .hero .lead { font-size: 17px; }
  .mod-body { padding-left: 54px; }
}
