/* =====================================================================
   O CÓDIGO DA CRIAÇÃO DO DINHEIRO — Dark Premium / Wealth
   Fontes: Fraunces (display serif) + Outfit (sans)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0d0e11;
  --bg-elev:   #131519;
  --surface:   #191c22;
  --surface-2: #1f232a;

  --ink:       #f4f0e7;
  --ink-dim:   #d4cfc4;
  --muted:     #9b968c;

  --gold:      #c9a86a;
  --gold-lt:   #e8d2a2;
  --gold-dp:   #9c7a40;

  --hair:      rgba(201, 168, 106, .16);
  --hair-soft: rgba(255, 255, 255, .07);

  --grad-gold: linear-gradient(118deg, #e8d2a2 0%, #c9a86a 46%, #a07e45 100%);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Selective Color: gradiente dourado em texto */
.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ---------- Grain / Noise ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Topbar ---------- */
.topbar {
  background: #08090b;
  border-bottom: 1px solid var(--hair);
  text-align: center;
  padding: .7rem var(--pad-x);
}
.topbar__text {
  font-size: clamp(.66rem, 1.5vw, .78rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  max-width: 980px;
  margin-inline: auto;
}
.topbar__sep { color: var(--gold); margin-inline: .15em; }

/* ---------- Botão ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 1.05rem 1.5rem;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  line-height: 1;
}
.btn--gold {
  background: var(--grad-gold);
  color: #1c1605;
  box-shadow: 0 10px 30px -10px rgba(201, 168, 106, .55), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -12px rgba(201, 168, 106, .7), inset 0 1px 0 rgba(255, 255, 255, .35); }
.btn__price {
  background: rgba(28, 22, 5, .16);
  border: 1px solid rgba(28, 22, 5, .22);
  border-radius: 999px;
  padding: .28em .7em;
  font-size: .85em;
  font-weight: 600;
}
.btn__arrow { transition: transform .3s var(--ease); font-size: 1.1em; }
.btn--gold:hover .btn__arrow { transform: translateX(5px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(201, 168, 106, .10), transparent 55%),
    linear-gradient(180deg, #0f1014 0%, var(--bg) 70%);
  overflow: hidden;
}

/* Canvas rede neural / codigo no cerebro */
.hero__neural {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, #000 40%, #000 100%);
  mask-image: linear-gradient(100deg, transparent 0%, #000 40%, #000 100%);
}

.hero__nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem .35rem;
}

/* Logo (placeholder QV) */
.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--hair);
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 168, 106, .14), transparent);
}
.logo__word { font-size: .82rem; letter-spacing: .22em; color: var(--ink-dim); font-weight: 400; }
.logo__word strong { color: var(--gold); font-weight: 600; }

/* Pill promocional */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: .45rem .9rem;
  background: rgba(255, 255, 255, .02);
}
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 106, .6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 106, .55); }
  70% { box-shadow: 0 0 0 8px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}

/* Grid assimétrico */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(.5rem, 1.4vw, 1.25rem) clamp(3rem, 7vw, 6rem);
  min-height: min(74vh, 700px);
}

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--hair);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
  color: var(--ink);
}
.hero__title .grad { font-style: italic; font-weight: 500; }
.hero__title-dim { color: var(--muted); font-weight: 340; font-size: .82em; font-style: italic; }

.hero__sub {
  margin-top: 1.6rem;
  max-width: 48ch;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 300;
}
.hero__sub strong { color: var(--gold); font-weight: 500; }

.hero__cta {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.hero__reassure { font-size: .85rem; color: var(--muted); }

/* Media: retrato + cards flutuantes */
.hero__media { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }

.hero__glow {
  position: absolute;
  inset: -8% -10% -2% -6%;
  background: radial-gradient(60% 55% at 55% 42%, rgba(201, 168, 106, .26), transparent 70%);
  filter: blur(14px);
  z-index: 0;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  aspect-ratio: 614 / 760;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), inset 0 0 0 1px rgba(255, 255, 255, .03);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.hero__portrait-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 14, 17, .55) 100%);
}

/* Cards de estatística flutuantes */
.stat {
  position: absolute;
  z-index: 2;
  background: rgba(25, 28, 34, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: .85rem 1.05rem;
  width: max-content;
  max-width: 200px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .7);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { display: block; margin-top: .3rem; font-size: .72rem; color: var(--ink-dim); line-height: 1.3; }

.stat--a { top: 8%; left: -6%; animation: float 6s ease-in-out infinite; }
.stat--b { top: 44%; right: -9%; animation: float 6s ease-in-out .8s infinite; }
.stat--c { bottom: 6%; left: 2%; animation: float 6s ease-in-out 1.6s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===================== O CÓDIGO SABOTADOR ===================== */
.saboteur {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7.5rem);
  background:
    linear-gradient(180deg, var(--bg) 0%, #0a0b0e 100%);
  border-top: 1px solid var(--hair-soft);
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.saboteur__statement {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 20ch;
  margin-inline: auto;
  color: var(--ink);
}
.saboteur__statement em { font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.saboteur__intro {
  max-width: 60ch;
  margin: clamp(2.2rem, 5vw, 3.5rem) auto 0;
  display: grid;
  gap: 1.3rem;
}
.saboteur__intro p { color: var(--ink-dim); font-size: clamp(1rem, 1.3vw, 1.1rem); font-weight: 300; }
.saboteur__kicker { font-size: clamp(1.05rem, 1.6vw, 1.25rem) !important; color: var(--ink) !important; font-weight: 400 !important; }
.saboteur__kicker .grad { font-style: italic; font-weight: 500; }

.saboteur__lead {
  max-width: 52ch;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Perfis: grid editorial 2x2 com numerais serifados */
.profiles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: 16px;
  overflow: hidden;
}
.profile {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--bg-elev);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.profile:hover { background: var(--surface); transform: translateY(-3px); }
.profile__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: .8;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: .9;
}
.profile__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: .55rem;
}
.profile__body p { color: var(--muted); font-size: .96rem; font-weight: 300; }

.saboteur__close {
  max-width: 60ch;
  margin: clamp(2.8rem, 5vw, 4rem) auto 0;
  display: grid;
  gap: 1.3rem;
  text-align: center;
}
.saboteur__close p { color: var(--ink-dim); font-size: clamp(1rem, 1.3vw, 1.12rem); font-weight: 300; }
.big-stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.4em;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Footer ---------- */
.footer {
  background: #08090b;
  border-top: 1px solid var(--hair-soft);
  padding-block: 2.2rem;
  text-align: center;
}
.footer p { font-size: .82rem; color: var(--muted); }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .hero__neural {
    opacity: .42;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-block: .4rem 3rem;
    min-height: 0;
  }
  /* Ordem natural: headline -> sub -> botao -> imagem */
  .hero__media { order: 0; margin-top: .5rem; }
  .hero__portrait { width: min(82%, 320px); aspect-ratio: 614 / 720; }
  .stat { max-width: 168px; padding: .7rem .85rem; }
  .stat__num { font-size: 1.3rem; }
  .stat--a { left: -2%; top: 6%; }
  .stat--b { right: -4%; }
  .stat--c { left: -2%; }

  .profiles { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  /* Logo (esquerda) e pill (direita) na MESMA linha */
  .hero__nav { gap: .6rem; padding-block: .9rem .25rem; }
  .logo { gap: .5rem; min-width: 0; }
  .logo__mark { width: 30px; height: 30px; font-size: .85rem; }
  .logo__word { font-size: .62rem; letter-spacing: .12em; }
  .pill {
    font-size: .54rem;
    padding: .34rem .58rem;
    gap: .4rem;
    max-width: 52%;
    line-height: 1.25;
    text-align: left;
  }
  .hero__cta { gap: 1rem; }
  .btn { width: 100%; justify-content: center; }
  .hero__title-dim { font-size: .9em; }

  /* No mobile, cards saem de cima da foto para nao cobrir o rosto */
  .hero__media { padding-bottom: 1rem; }
  .stat--b { top: 38%; right: -2%; }
}

/* =====================================================================
   SEÇÕES 3–16  (desenvolver)
   ===================================================================== */

/* Helpers */
.gold { color: var(--gold); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Destaque animado tipo marca-texto (ex.: Kansas State University) */
.mark {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  padding: 0 .12em;
  background-image: linear-gradient(transparent 56%, rgba(201, 168, 106, .34) 0);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: 0 0 0 rgba(201, 168, 106, 0);
  transition: background-size .85s var(--ease) .1s, text-shadow .6s ease .25s;
}
.mark.is-marked {
  background-size: 100% 100%;
  text-shadow: 0 0 22px rgba(201, 168, 106, .25);
}

/* Ícones de linha (SVG inline) */
.gear__ico svg, .iconstrip svg, .ic, .warranty__shield, .bonus__ico svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic { width: 22px; height: 22px; flex: 0 0 auto; stroke-width: 2.4; }

/* Reveal "Draw SVG" para ✓/✗ (Seção 5) e escudo (Seção 12) */
.fit .ic path { stroke-dasharray: 40; stroke-dashoffset: 40; }
.fit.is-drawn .ic path { stroke-dashoffset: 0; transition: stroke-dashoffset .55s var(--ease); }
.fit.is-drawn .fit__list li:nth-child(1) .ic path { transition-delay: .05s; }
.fit.is-drawn .fit__list li:nth-child(2) .ic path { transition-delay: .12s; }
.fit.is-drawn .fit__list li:nth-child(3) .ic path { transition-delay: .19s; }
.fit.is-drawn .fit__list li:nth-child(4) .ic path { transition-delay: .26s; }
.fit.is-drawn .fit__list li:nth-child(5) .ic path { transition-delay: .33s; }

/* ===== 3. PROVAS REAIS ===== */
.proofs {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: #0a0b0e;
  border-top: 1px solid var(--hair-soft);
  overflow: hidden;
}
.proofs__lead { text-align: center; color: var(--muted); margin-top: .8rem; font-size: 1.02rem; }
.marquee {
  overflow: hidden;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; gap: 18px; width: max-content; animation: marquee-l 42s linear infinite; }
.marquee--rev { margin-top: 18px; }
.marquee--rev .marquee__track { animation-name: marquee-r; animation-duration: 48s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.proof {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--hair-soft);
  background: rgba(25, 28, 34, .5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  cursor: pointer;
}
.proof:hover { transform: scale(1.04); box-shadow: 0 24px 50px -20px rgba(0,0,0,.7); border-color: var(--hair); }
.proof__q { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--gold); opacity: .55; }
.proof__slot { color: var(--muted); font-size: .92rem; }
.proof__stars { color: var(--gold); letter-spacing: .15em; font-size: .85rem; }

/* ===== 4. SUA VEZ ===== */
.yourturn {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: radial-gradient(60% 120% at 50% 0%, rgba(201,168,106,.10), transparent 60%), var(--bg);
  border-top: 1px solid var(--hair-soft);
  overflow: hidden;
}
.yourturn__inner { max-width: 640px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.yourturn__title { font-family: var(--font-display); font-weight: 460; font-size: clamp(1.6rem, 3.2vw, 2.5rem); letter-spacing: -.015em; }
.yourturn__lead { color: var(--ink-dim); font-size: clamp(1.02rem, 1.5vw, 1.2rem); max-width: 40ch; }
.yourturn__lead .gold { font-weight: 500; }

/* Spotlight que segue o mouse */
[data-spotlight] { position: relative; }
[data-spotlight]::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 300px at var(--mx, 50%) var(--my, 35%), rgba(201,168,106,.10), transparent 70%);
  opacity: .9; transition: background .12s linear;
}
[data-spotlight] > * { position: relative; z-index: 1; }

/* ===== 5. É PRA VOCÊ / NÃO É PRA VOCÊ ===== */
.fit { padding-block: clamp(4rem, 9vw, 7rem); }
.fit__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hair-soft); border-radius: 18px; overflow: hidden;
}
.fit__col { padding: clamp(1.8rem, 3vw, 2.6rem); }
.fit__col--yes { background: linear-gradient(180deg, rgba(201,168,106,.05), transparent 70%); border-right: 1px solid var(--hair); }
.fit__head { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 1.4rem; }
.fit__badge { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--hair); }
.fit__badge--yes { color: var(--gold); }
.fit__badge--no { color: var(--danger-dim); border-color: rgba(110,91,91,.3); }
.fit__list { list-style: none; display: grid; gap: 1rem; }
.fit__list li { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; padding-bottom: 1rem; border-bottom: 1px solid var(--hair-soft); }
.fit__list li:last-child { border-bottom: none; padding-bottom: 0; }
.fit__col--yes .ic { color: var(--gold); }
.fit__col--no .ic { color: var(--danger-dim); }
.fit__col--yes .fit__list span { color: var(--ink-dim); }
.fit__col--no .fit__list span { color: var(--muted); }
.fit__list li { transition: background .25s; }
.fit__list li:hover { background: rgba(255,255,255,.02); }
.fit__cta { margin-top: clamp(2.2rem, 4vw, 3rem); display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.fit__reassure { font-size: .85rem; color: var(--muted); }

/* ===== 7. ENGRENAGENS ===== */
.gears {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  background:
    radial-gradient(40% 40% at 88% 6%, rgba(201,168,106,.06), transparent 70%),
    radial-gradient(40% 40% at 8% 96%, rgba(201,168,106,.05), transparent 70%),
    var(--bg);
}
.gears__statement { text-align: center; font-family: var(--font-display); font-weight: 460; font-size: clamp(1.5rem, 3vw, 2.3rem); margin-top: 1.2rem; }
.gears__statement em { font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gears__intro { max-width: 62ch; margin: clamp(1.6rem,3vw,2.4rem) auto 0; display: grid; gap: 1.1rem; text-align: center; }
.gears__intro p { color: var(--ink-dim); font-weight: 300; }
.gears__list {
  list-style: none; position: relative;
  max-width: 760px; margin: clamp(2.5rem,5vw,3.5rem) auto 0;
  display: flex; flex-direction: column; gap: 20px;
  padding-left: 30px;
}
.gears__rail { position: absolute; left: 0; top: 12px; bottom: 12px; width: 3px; border-radius: 3px; background: var(--hair-soft); overflow: hidden; }
.gears__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--grad-gold); box-shadow: 0 0 14px rgba(201,168,106,.45); }
.gears.is-drawn .gears__fill { height: 100%; transition: height 1.3s var(--ease); }
.gear {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start;
  background: var(--bg-elev); border: 1px solid var(--hair); border-radius: 16px;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gear--2 { margin-left: clamp(0px, 4vw, 40px); }
.gear--3 { margin-left: clamp(0px, 2vw, 20px); }
.gear:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--gold), 0 24px 50px -22px rgba(201,168,106,.35); }
.gear__num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gear__ico { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; color: rgba(201,168,106,.30); }
.gear__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .5rem; }
.gear__body p { color: var(--ink-dim); font-weight: 300; max-width: 56ch; }
.gears__outro { max-width: 62ch; margin: clamp(2.2rem,4vw,3rem) auto 0; display: grid; gap: 1.1rem; text-align: center; }
.gears__outro p { color: var(--ink-dim); font-weight: 300; }
.gears__outro strong { color: var(--ink); }
.iconstrip { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 3vw, 2.4rem); margin: clamp(2.4rem,4vw,3.2rem) auto 0; padding-top: clamp(1.6rem,3vw,2.2rem); border-top: 1px solid var(--hair-soft); }
.iconstrip li { display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--gold); }
.iconstrip svg { width: 26px; height: 26px; }
.iconstrip span { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }

/* ===== 8. JORNADA (Timeline) ===== */
.journey { padding-block: clamp(4rem, 9vw, 7.5rem); background: linear-gradient(180deg, #0a0b0e, var(--bg)); }
.journey__lead { text-align: center; color: var(--muted); margin-top: .8rem; font-size: 1.05rem; }
.timeline { position: relative; max-width: 760px; margin: clamp(2.5rem,5vw,3.5rem) auto 0; padding-left: 40px; }
.timeline__rail { position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--hair-soft); overflow: hidden; }
.timeline__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--grad-gold); box-shadow: 0 0 12px rgba(201,168,106,.5); }
.timeline__items { list-style: none; display: flex; flex-direction: column; gap: clamp(1.4rem, 3vw, 2.2rem); }
.tl { position: relative; }
.tl__node { position: absolute; left: -38px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--surface-2); box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--hair-soft); transition: transform .3s var(--ease), background .3s, box-shadow .3s; }
.tl.is-active .tl__node { background: var(--grad-gold); transform: scale(1.2); box-shadow: 0 0 0 2px var(--bg), 0 0 0 8px rgba(201,168,106,.14); }
.tl__card { background: var(--bg-elev); border: 1px solid var(--hair-soft); border-radius: 14px; padding: clamp(1.3rem, 2.4vw, 1.9rem); transition: transform .3s var(--ease), border-color .3s; }
.tl__card:hover { transform: translateY(-3px); border-color: var(--hair); }
.tl--final .tl__card { border-color: var(--hair); background: linear-gradient(180deg, rgba(201,168,106,.06), var(--bg-elev)); }
.tl__when { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.tl__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 1.8vw, 1.35rem); margin: .45rem 0 .55rem; }
.tl__card p { color: var(--muted); font-weight: 300; }
.journey__outro { max-width: 60ch; margin: clamp(2.4rem,4vw,3.2rem) auto 0; text-align: center; color: var(--ink-dim); font-weight: 300; }
.journey__cta, .bonus__cta, .closer__cta { margin-top: clamp(2rem,4vw,2.8rem); display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.journey__reassure { font-size: .85rem; color: var(--muted); }

/* ===== 9. O QUE VOCÊ RECEBE (Bento) ===== */
.receive { padding-block: clamp(4rem, 9vw, 7.5rem); }
.receive__statement { text-align: center; font-family: var(--font-display); font-weight: 460; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.18; max-width: 24ch; margin: 1.2rem auto clamp(2.4rem,5vw,3.4rem); }
.bento { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1rem, 1.6vw, 1.4rem); }
.bento__cell {
  position: relative; display: flex; flex-direction: column;
  background: rgba(25,28,34,.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hair-soft); border-radius: 18px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform .35s var(--ease), border-color .35s;
}
.bento__cell:hover { transform: translateY(-4px); border-color: var(--hair); }
.bento__cell--main { grid-row: span 2; justify-content: flex-start; }
.bento__tag { align-self: flex-start; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); background: rgba(201,168,106,.12); border: 1px solid var(--hair); padding: .3rem .65rem; border-radius: 999px; margin-bottom: 1.2rem; }
.bento__idx { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bento__title { font-family: var(--font-display); font-weight: 500; margin: .7rem 0 .7rem; font-size: clamp(1.2rem, 1.9vw, 1.45rem); }
.bento__cell--main .bento__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.bento__cell p { color: var(--ink-dim); font-weight: 300; }
.bento__cell--main p { font-size: 1.05rem; }

/* ===== 10. BÔNUS ===== */
.bonus { padding-block: clamp(4rem, 9vw, 7rem); background: linear-gradient(180deg, var(--bg), #0a0b0e); }
.bonus__lead { text-align: center; font-family: var(--font-display); font-style: italic; color: var(--ink-dim); font-size: clamp(1.1rem,2vw,1.5rem); margin-bottom: clamp(1.8rem,4vw,2.6rem); }
.bonus__pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,1.6vw,1.4rem); }
.bonus__card { background: var(--bg-elev); border: 1px solid var(--hair-soft); border-radius: 16px; padding: clamp(1.6rem,3vw,2.2rem); transition: transform .35s var(--ease), border-color .35s; }
.bonus__card:hover { transform: translateY(-4px); border-color: var(--hair); }
.bonus__tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.bonus__tag s { color: var(--muted); }
.bonus__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem,2vw,1.5rem); margin: .5rem 0 .7rem; }
.bonus__card p { color: var(--ink-dim); font-weight: 300; }
.bonus__premium {
  position: relative; margin-top: clamp(1rem,1.6vw,1.4rem); overflow: hidden;
  border: 1px solid var(--gold); border-radius: 18px;
  padding: clamp(1.8rem,3.4vw,2.6rem);
  background: linear-gradient(135deg, rgba(201,168,106,.09), rgba(201,168,106,.02));
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { box-shadow: 0 0 0 1px rgba(201,168,106,.25), 0 18px 50px -28px rgba(201,168,106,.5); }
  50% { box-shadow: 0 0 0 1px rgba(201,168,106,.5), 0 26px 70px -26px rgba(201,168,106,.7); }
}
.bonus__scarcity { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); background: rgba(201,168,106,.16); border: 1px solid var(--hair); padding: .4rem .8rem; border-radius: 999px; margin-bottom: 1.2rem; }
.bonus__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s infinite; }
.bonus__premium-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.bonus__ico { display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 auto; border-radius: 12px; border: 1px solid var(--hair); color: var(--gold); background: rgba(13,14,17,.5); }
.bonus__ico svg { width: 28px; height: 28px; }
.bonus__value { font-size: .9rem; color: var(--muted); }
.bonus__value s { color: var(--muted); }
.bonus__value strong { color: var(--gold); }
.bonus__premium p { color: var(--ink-dim); font-weight: 300; margin-bottom: .8rem; }
.bonus__kicker strong, .bonus__premium p strong { color: var(--ink); }

/* ===== 11. OFERTA ===== */
.offer { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); overflow: hidden; }
.offer__glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(50% 50% at 78% 40%, rgba(201,168,106,.12), transparent 70%); pointer-events: none; }
.offer .container { position: relative; z-index: 1; }
.offer__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.6rem,3vw,3rem); align-items: start; margin-top: clamp(2rem,4vw,2.8rem); }
.ledger__list { list-style: none; display: grid; }
.ledger__list li { display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--hair-soft); }
.ledger__list li:first-child { padding-top: 0; }
.ledger__item { color: var(--ink-dim); }
.ledger__item em { color: var(--muted); font-style: italic; }
.ledger__val { flex: 0 0 auto; color: var(--muted); font-variant-numeric: tabular-nums; }
.ledger__val s { color: var(--muted); }
.ledger__val--in { color: var(--gold); font-weight: 500; }
.ledger__total { margin-top: 1.4rem; color: var(--ink-dim); font-weight: 300; }
.ledger__total strong { color: var(--ink); font-weight: 500; }
.ledger__total span[data-count] { font-family: var(--font-display); color: var(--gold); }
.pricecard {
  position: sticky; top: 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  background: rgba(31,35,42,.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hair); border-radius: 22px;
  padding: clamp(2rem,4vw,2.8rem);
  box-shadow: 0 40px 90px -34px rgba(0,0,0,.8);
  animation: breathe 4.5s ease-in-out infinite;
}
.pricecard__name { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-dim); max-width: 22ch; }
.pricecard__from { font-size: .9rem; color: var(--muted); }
.pricecard__from s { color: var(--muted); }
.pricecard__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); margin-top: .4rem; }
.pricecard__big { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; }
.pricecard__big strong { font-weight: 600; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pricecard__cash { color: var(--ink-dim); margin-bottom: .8rem; }
.pricecard__cta { width: 100%; justify-content: center; margin-top: .4rem; }
.pricecard__seal { font-size: .72rem; color: var(--muted); margin-top: .8rem; line-height: 1.5; }

/* ===== 12. GARANTIA ===== */
.warranty { padding-block: clamp(4rem, 9vw, 7rem); background: linear-gradient(180deg, #0a0b0e, var(--bg)); }
.warranty__box { max-width: 720px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: clamp(2.2rem,5vw,3.5rem); border: 1px solid var(--hair); border-radius: 20px; background: rgba(19,21,25,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.warranty__seal { position: relative; width: 96px; height: 108px; color: var(--gold); display: grid; place-items: center; animation: float 5s ease-in-out infinite; }
.warranty__shield { position: absolute; inset: 0; width: 96px; height: 108px; }
.warranty__shield path { stroke-dasharray: 320; stroke-dashoffset: 320; stroke-width: 2.2; }
.warranty.is-drawn .warranty__shield path { stroke-dashoffset: 0; transition: stroke-dashoffset .9s var(--ease); }
.warranty__sealnum { position: relative; font-family: var(--font-display); font-weight: 600; font-size: 2.1rem; line-height: .8; display: flex; flex-direction: column; align-items: center; }
.warranty__sealnum small { font-family: var(--font-sans); font-size: .55rem; text-transform: uppercase; letter-spacing: .2em; }
.warranty__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem,3.4vw,2.5rem); }
.warranty__sub { font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }
.warranty__box p { color: var(--ink-dim); font-weight: 300; max-width: 60ch; }
.warranty__kicker { color: var(--ink) !important; font-weight: 500 !important; }
.warranty__seals { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: .6rem 0 .4rem; }
.warranty__seals li { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--ink-dim); background: rgba(201,168,106,.1); border: 1px solid var(--hair-soft); padding: .45rem .8rem; border-radius: 999px; transition: border-color .25s; }
.warranty__seals li:hover { border-color: var(--hair); }
.warranty__seals .ck { color: var(--gold); font-weight: 700; }

/* ===== 13. SOBRE O ADRIAN ===== */
.author { padding-block: clamp(4rem, 9vw, 7.5rem); overflow: hidden; }
.author__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem,3vw,3.5rem); max-width: 1280px; margin-inline: auto; padding-inline: var(--pad-x); align-items: stretch; }
.author__photo { position: relative; border-radius: 20px; overflow: hidden; min-height: 420px; }
.author__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.author__photo-grad { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(13,14,17,.45)); }
.author__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem,3.4vw,2.8rem); }
.author__role { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin: .6rem 0 .8rem; }
.author__creds { font-size: .82rem; color: var(--muted); padding-bottom: 1.4rem; border-bottom: 1px solid var(--hair-soft); margin-bottom: 1.6rem; }
.author__acts { list-style: none; display: grid; gap: 1.4rem; }
.author__acts li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; transition: transform .3s var(--ease); }
.author__acts li:hover { transform: translateX(4px); }
.author__num { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .85; }
.author__acts h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin-bottom: .35rem; }
.author__acts p { color: var(--ink-dim); font-weight: 300; font-size: .98rem; }

/* ===== 14. FECHAMENTO ===== */
.closer { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); overflow: hidden; }
.closer__glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(55% 50% at 50% 80%, rgba(201,168,106,.1), transparent 70%); pointer-events: none; }
.closer .container { position: relative; z-index: 1; }
.closer__statement { text-align: center; font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -.02em; max-width: 22ch; margin-inline: auto; }
.closer__sub { text-align: center; font-family: var(--font-display); font-style: italic; color: var(--muted); margin-top: .8rem; font-size: clamp(1.05rem,1.8vw,1.3rem); }
.closer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2.4rem); margin: clamp(2.6rem,5vw,3.6rem) 0; }
.closer__cols > div { border-top: 1px solid var(--hair-soft); padding-top: 1.2rem; }
.closer__num { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.closer__cols p { color: var(--ink-dim); font-weight: 300; font-size: .98rem; }
.closer__cols strong { color: var(--ink); }
.closer__sign { display: flex; align-items: center; gap: 1rem; justify-content: center; max-width: 620px; margin: clamp(2rem,4vw,2.8rem) auto 0; padding-top: 1.6rem; border-top: 1px solid var(--hair-soft); }
.closer__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 1px solid var(--hair); flex: 0 0 auto; }
.closer__sign p { font-size: .88rem; color: var(--muted); }
.closer__sign strong { color: var(--ink); font-family: var(--font-display); font-weight: 500; }

/* ===== 15. FAQ ===== */
.faq { padding-block: clamp(4rem, 9vw, 7rem); }
.faq__list { list-style: none; max-width: 760px; margin: clamp(2rem,4vw,2.8rem) auto 0; }
.faq__item { border-bottom: 1px solid var(--hair-soft); transition: background .3s; }
.faq__item.is-open { background: rgba(201,168,106,.04); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 1.3rem .6rem; text-align: left; color: var(--ink-dim); font-family: var(--font-sans); }
.faq__idx { font-family: var(--font-display); font-weight: 500; color: var(--gold); font-size: 1rem; opacity: .8; }
.faq__qtext { font-weight: 500; font-size: clamp(1rem, 1.5vw, 1.12rem); transition: color .25s; position: relative; }
.faq__q:hover .faq__qtext { color: var(--ink); }
.faq__item.is-open .faq__qtext, .faq__item.is-open .faq__idx { color: var(--gold); }
.faq__toggle { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--gold); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .3s; }
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__toggle::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq__item.is-open .faq__toggle::after { transform: translate(-50%, -50%) rotate(-45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.16, 1, .3, 1); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p { color: var(--muted); font-weight: 300; padding: 0 .6rem 1.4rem 3.2rem; line-height: 1.6; }

/* ===== 16. RODAPÉ ===== */
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; text-align: center; }
.footer__cta { margin-bottom: .4rem; }
.logo--footer { opacity: .9; }
.footer__legal { font-size: .82rem; color: var(--muted); }

/* =====================================================================
   RESPONSIVO — Seções 3–16
   ===================================================================== */
@media (max-width: 900px) {
  .fit__grid { grid-template-columns: 1fr; }
  .fit__col--yes { border-right: none; border-bottom: 1px solid var(--hair); }
  .gear--2, .gear--3 { margin-left: 0; }
  .gears__list { padding-left: 24px; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--main { grid-row: auto; }
  .offer__grid { grid-template-columns: 1fr; }
  .pricecard { position: static; max-width: 460px; margin-inline: auto; }
  .author__grid { grid-template-columns: 1fr; }
  .author__photo { min-height: 0; aspect-ratio: 16 / 11; }
  .author__photo-grad { background: linear-gradient(180deg, transparent 55%, rgba(13,14,17,.5)); }
  .closer__cols { grid-template-columns: 1fr; gap: 0; }
  .closer__cols > div { padding-block: 1.2rem; }
}

@media (max-width: 640px) {
  .bonus__pair { grid-template-columns: 1fr; }
  .bonus__premium-head { flex-direction: row; }
}

@media (max-width: 560px) {
  .ledger__list li { flex-direction: row; gap: 1rem; }
  .warranty__seals { flex-direction: column; align-items: stretch; }
  .faq__a-inner p { padding-left: 1rem; }
  .faq__q { grid-template-columns: auto 1fr auto; gap: .7rem; padding-inline: 0; }
  .closer__sign { flex-direction: column; text-align: center; }
}

/* ---------- Acessibilidade: reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
