/* =====================================================================
   styles.css | Landing Practitioner em PNL | Turma Vida 369
   Direcao de arte: "O DESPERTAR DA AGUIA" (cinema de fogo)
   Neutros quentes tintados + ouro escovado real + brasa ambar.
   Cinzel (display monumental) + Fraunces (corpo editorial vivo).
   Autor: Gian Marco Menegussi Scaglianti.
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* fundo: preto-carvao quente, nunca #000 */
  --ink-900: #0c0a08;
  --ink-850: #100c08;
  --ink-800: #14100b;
  --ink-700: #1c160e;
  --ink-600: #261d12;
  --hair: rgba(233, 194, 90, 0.16);   /* fios dourados translucidos */
  --hair-soft: rgba(243, 236, 224, 0.08);

  /* texto: marfim quente, nunca #fff */
  --ivory: #f3ece0;
  --ivory-dim: #cdc2af;
  --ivory-mute: #93897a;

  /* ouro escovado (gradiente real, sem glow neon) */
  --gold-1: #8a6618;
  --gold-2: #e9c25a;
  --gold-3: #b98a28;
  --gold-line: #c79a3a;
  --brushed: linear-gradient(135deg, #6f4f12 0%, #b98a28 24%, #f0d27e 50%, #b98a28 76%, #6f4f12 100%);
  --brushed-soft: linear-gradient(120deg, #8a6618, #e9c25a 50%, #b98a28);

  /* brasa ambar (escassez / CTA) */
  --ember-1: #ff6a1f;
  --ember-2: #ff8a3d;
  --ember-deep: #c8410d;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 84px);

  /* escala tipografica fluida */
  --t-mega: clamp(3.2rem, 1.2rem + 8.6vw, 9rem);
  --t-xl: clamp(2.5rem, 1.3rem + 5vw, 6rem);
  --t-lg: clamp(2rem, 1.2rem + 3.4vw, 4.25rem);
  --t-md: clamp(1.55rem, 1.1rem + 1.9vw, 2.6rem);
  --t-sm: clamp(1.2rem, 1.02rem + 0.8vw, 1.6rem);
  --body: clamp(1.06rem, 0.98rem + 0.32vw, 1.22rem);

  /* ---- escala de raios harmonica e generosa (fluidez, zero cantos retos 2-8px) ---- */
  --r-xs: 12px;   /* micro: chips, selos pequenos, cd-unit */
  --r-sm: 14px;   /* inputs, campos */
  --r-img: 18px;  /* imagens menores (capas, modulos, selos de pilha) */
  --r-md: 20px;   /* imagens grandes (foto Edson, capas, selos), blocos */
  --r-lg: 24px;   /* paineis, blocos de conteudo */
  --r-xl: 28px;   /* cards grandes / oferta / contadores */
  --r-pill: 999px;/* botoes, badges, tags */

  /* ---- espacamento ritmico fluido ---- */
  --sp-1: clamp(0.6rem, 0.5rem + 0.4vw, 1rem);
  --sp-2: clamp(1rem, 0.8rem + 0.8vw, 1.6rem);
  --sp-3: clamp(1.6rem, 1.2rem + 1.4vw, 2.6rem);
  --sp-4: clamp(2.4rem, 1.8rem + 2.4vw, 4rem);

  /* ---- sombras difusas e quentes (multi-camada, baixa opacidade, blur generoso) ---- */
  --sh-soft:
    0 18px 48px -22px rgba(0, 0, 0, 0.62),
    0 4px 16px -8px rgba(0, 0, 0, 0.42),
    0 2px 0 rgba(255, 220, 180, 0.03) inset;
  --sh-lift:
    0 30px 70px -34px rgba(0, 0, 0, 0.7),
    0 14px 40px -20px rgba(255, 106, 31, 0.1),
    0 2px 0 rgba(255, 220, 180, 0.04) inset;
  --sh-img:
    0 36px 80px -42px rgba(0, 0, 0, 0.82),
    0 10px 30px -16px rgba(0, 0, 0, 0.5);
  --sh-ember:
    0 28px 70px -28px rgba(255, 106, 31, 0.22),
    0 12px 36px -18px rgba(0, 0, 0, 0.6);

  /* borda viva dourada (1px com gradiente sutil) */
  --edge-gold: linear-gradient(150deg, rgba(233, 194, 90, 0.42), rgba(233, 194, 90, 0.04) 42%, rgba(255, 106, 31, 0.22));

  --ease: cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo */
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ink-900);
  color: var(--ivory);
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
  font-size: var(--body);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
::selection { background: var(--ember-1); color: #160a02; }

/* ambiente: mesh de carvao quente, brasa difusa fluindo nas bordas (sem glow neon).
   camadas amplas e de baixa opacidade pra transicao organica entre secoes. */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(130% 90% at 82% -12%, rgba(255, 106, 31, 0.085), transparent 58%),
    radial-gradient(100% 70% at 4% 12%, rgba(185, 138, 40, 0.05), transparent 54%),
    radial-gradient(110% 80% at 94% 58%, rgba(255, 106, 31, 0.045), transparent 58%),
    radial-gradient(100% 70% at 6% 96%, rgba(185, 138, 40, 0.055), transparent 56%),
    radial-gradient(120% 60% at 50% 130%, rgba(255, 106, 31, 0.04), transparent 60%),
    var(--ink-900);
}

/* borda viva dourada reutilizavel (1px, gradiente) sobre qualquer bloco */
.edge {
  position: relative;
}
.edge::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 1;
  background: var(--edge-gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

/* moldura de imagem: cantos suaves + vinheta/anel quente que integra ao fundo */
.frame {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-img);
}
.frame::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(233, 194, 90, 0.14),
    inset 0 -60px 80px -40px rgba(12, 10, 8, 0.85),
    inset 0 40px 70px -50px rgba(12, 10, 8, 0.6);
}
.frame img { border-radius: inherit; }

/* ---------- TIPOGRAFIA DISPLAY ---------- */
.display {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--ivory);
  text-wrap: balance;
}
.display em {
  font-family: 'Cinzel', serif; font-style: normal; font-weight: 600;
  color: transparent;
  background: var(--brushed);
  -webkit-background-clip: text; background-clip: text;
  /* nota: gradiente de OURO METALICO real (objeto), nao "gradient text" decorativo arco-iris */
}
.display--xl { font-size: var(--t-xl); }
.display--lg { font-size: var(--t-lg); }

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.66rem, 0.6rem + 0.3vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex; align-items: center; gap: 0.7em;
  margin-bottom: 1.3rem;
}
.eyebrow--ember { color: var(--ember-2); }
.eyebrow__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.7; }

.lede {
  font-size: var(--t-sm);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ivory-dim);
  font-variation-settings: 'opsz' 80;
}
.lede--wide { max-width: 56ch; }

.prose { color: var(--ivory-dim); }
.prose + .prose { margin-top: 1.05em; }
.prose--muted { color: var(--ivory-mute); font-size: 0.98rem; }
.prose__turn { color: var(--ivory); font-size: 1.18em; font-weight: 500; }
.prose__key {
  color: var(--gold-2); font-weight: 500; font-size: 1.1em;
  border-left: 2px solid var(--gold-line); padding-left: 1em; margin-top: 1.2em;
}

.strike, s, del { text-decoration: line-through; text-decoration-color: var(--ember-deep); opacity: 0.65; }

/* ---------- LAYOUT BASE ---------- */
section { position: relative; }
.eyebrow.reveal { display: inline-flex; }

/* ---------- BOTOES ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; border: 0;
  border-radius: var(--r-pill);
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), filter 0.3s;
  will-change: transform;
}
.btn > span { position: relative; z-index: 2; }
.btn--ember {
  background: linear-gradient(180deg, var(--ember-2), var(--ember-1) 60%, var(--ember-deep));
  color: #1a0a02;
  box-shadow:
    0 22px 50px -20px rgba(255, 106, 31, 0.5),
    0 8px 24px -12px rgba(200, 65, 13, 0.45),
    inset 0 1px 0 rgba(255, 220, 180, 0.55);
}
.btn--gold {
  background: var(--brushed); background-size: 220% 220%;
  color: #160f02;
  box-shadow:
    0 22px 48px -22px rgba(233, 194, 90, 0.42),
    0 8px 22px -14px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 244, 210, 0.6);
}
.btn--ember::after, .btn--gold::after {
  content: ''; position: absolute; inset: 0; z-index: 1; border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px) scale(1.012); }
.btn--ember:hover {
  box-shadow:
    0 30px 64px -18px rgba(255, 106, 31, 0.62),
    0 12px 34px -14px rgba(200, 65, 13, 0.5),
    inset 0 1px 0 rgba(255, 220, 180, 0.55);
}
.btn--gold:hover {
  box-shadow:
    0 30px 60px -20px rgba(233, 194, 90, 0.5),
    0 12px 30px -16px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 244, 210, 0.6);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(0.998); }
.btn:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 4px; }
.btn--xl { padding: 1.28rem 2.5rem; font-size: clamp(0.92rem, 0.85rem + 0.4vw, 1.18rem); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: clamp(0.86rem, 0.8rem + 0.3vw, 1.04rem); }
.btn--block { width: 100%; }

.cta-band { display: flex; justify-content: center; margin-top: clamp(2.4rem, 5vw, 4rem); }
.cta-band--left { justify-content: flex-start; }

.tag {
  display: inline-block;
  font-family: 'Cinzel', serif; font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55em 1.05em; border-radius: var(--r-pill);
  border: 1px solid var(--hair); color: var(--ivory-dim);
  background: rgba(28, 22, 14, 0.5);
}
.tag--gold { color: #1a1206; background: var(--brushed-soft); border-color: transparent; font-weight: 700; }

/* =====================================================================
   TICKER DE PROVA SOCIAL
   ===================================================================== */
.ticker {
  position: fixed; left: clamp(14px, 4vw, 32px); bottom: clamp(10px, 2vw, 18px);
  z-index: 70; max-width: min(92vw, 430px);
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(180deg, rgba(28, 22, 14, 0.96), rgba(12, 10, 8, 0.96));
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  box-shadow:
    0 24px 60px -26px rgba(0, 0, 0, 0.85),
    0 6px 20px -10px rgba(255, 106, 31, 0.12);
  transform: translateY(160%); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.ticker.visible { transform: translateY(0); opacity: 1; }
.ticker__pulse { flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; background: #58d66a; box-shadow: 0 0 0 0 rgba(88, 214, 106, 0.6); animation: pulse 2s infinite; }
.ticker__text { font-size: 0.9rem; line-height: 1.35; color: var(--ivory-dim); }
.ticker__text strong { color: var(--ivory); font-weight: 600; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(88, 214, 106, 0.5); } 70% { box-shadow: 0 0 0 9px rgba(88, 214, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(88, 214, 106, 0); } }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 0.5s var(--ease), border-color 0.5s, padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(0.9rem, 2vw, 1.4rem) var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.nav.scrolled {
  background: rgba(12, 10, 8, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--hair);
}
.nav.scrolled .nav__inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }
.nav__edge {
  font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.28em;
  color: var(--gold-2); opacity: 0.78;
}
.nav__brand { justify-self: center; }
.nav__brand img { height: clamp(30px, 4.4vw, 44px); width: auto; }
.nav__cta {
  justify-self: end;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7em 1.35em; border-radius: var(--r-pill);
  color: var(--gold-2); border: 1px solid var(--gold-line);
  transition: background 0.4s var(--ease), color 0.4s, transform 0.4s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--brushed-soft); color: #160f02; transform: translateY(-2px); }

/* =====================================================================
   SECAO 1 - HERO (trailer de cinema, full-bleed)
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: clamp(7rem, 14vh, 11rem) var(--gutter) clamp(2.6rem, 6vh, 5rem);
  overflow: hidden;
}
/* media layer: leve. parallax (app.js) move este wrapper via translate3d.
   contain + backface evitam repaint da pagina inteira; transform hint sem will-change permanente. */
.hero__media {
  position: absolute; inset: -8% 0 -2% 0; z-index: -1;
  transform: translateZ(0); backface-visibility: hidden;
  contain: paint;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 62% 18%;
  /* drift unico e curto, so transform (composited), depois para de animar e libera a GPU */
  transform: scale(1.06);
  animation: heroDrift 1.6s var(--ease) 0.05s forwards;
  backface-visibility: hidden;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.62) 0%, rgba(12, 10, 8, 0.12) 28%, rgba(12, 10, 8, 0.5) 62%, rgba(12, 10, 8, 0.97) 100%),
    linear-gradient(80deg, rgba(12, 10, 8, 0.86) 0%, rgba(12, 10, 8, 0.28) 46%, transparent 72%);
}
/* grao de filme: opacidade baixa, SEM mix-blend-mode (blend full-bleed sobre imagem
   anima/repinta a pagina inteira e travava o renderer). Overlay simples e barato. */
.hero__grain {
  position: absolute; inset: 0; opacity: 0.14; pointer-events: none;
  contain: strict;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)' opacity='0.35'/%3E%3C/svg%3E");
}
.hero__content { position: relative; max-width: 920px; width: 100%; }
.hero__title {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: var(--t-xl); line-height: 1.02; letter-spacing: 0.005em;
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem); text-wrap: balance;
}
.hero__title span { display: block; }
.hero__title-l1, .hero__title-l2, .hero__title-l3 { color: var(--ivory); }
.hero__title-l2 { font-weight: 500; opacity: 0.92; }
.hero__title-l3 { font-weight: 500; }
.hero__title-em {
  color: transparent; background: var(--brushed); -webkit-background-clip: text; background-clip: text;
  font-weight: 800;
}
.hero__sub {
  font-size: var(--t-sm); line-height: 1.5; color: var(--ivory-dim);
  max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 2.8rem);
  font-variation-settings: 'opsz' 64;
}
.hero__panel {
  display: grid; gap: 1.3rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 720px;
  background: linear-gradient(160deg, rgba(28, 22, 14, 0.72), rgba(12, 10, 8, 0.82));
  border: 1px solid var(--hair); border-radius: var(--r-xl);
  backdrop-filter: blur(6px);
  box-shadow:
    0 34px 90px -44px rgba(0, 0, 0, 0.9),
    0 12px 40px -24px rgba(255, 106, 31, 0.1),
    inset 0 1px 0 rgba(255, 220, 180, 0.04);
}
/* contador de vagas */
.vagas { display: flex; align-items: center; gap: clamp(1rem, 3vw, 1.8rem); flex-wrap: wrap; }
.vagas__num {
  font-family: 'Cinzel', serif; font-weight: 800; line-height: 0.86;
  display: flex; align-items: baseline; gap: 0.3rem;
}
.vagas__num [data-counter] {
  font-size: clamp(3.4rem, 2rem + 6vw, 5.6rem);
  color: transparent; background: var(--brushed); -webkit-background-clip: text; background-clip: text;
  transition: transform 0.3s var(--ease);
}
.vagas__num [data-counter].tick { transform: scale(1.08); }
.vagas__num [data-counter].low { background: linear-gradient(135deg, var(--ember-2), var(--ember-1)); -webkit-background-clip: text; background-clip: text; }
.vagas__of { font-size: 1rem; color: var(--ivory-mute); font-family: 'Cinzel', serif; letter-spacing: 0.1em; }
.vagas__meta { flex: 1 1 220px; min-width: 200px; }
.vagas__label { font-family: 'Cinzel', serif; font-size: 0.92rem; letter-spacing: 0.06em; color: var(--ivory); margin-bottom: 0.6rem; }
.vagas__track { height: 4px; border-radius: 99px; background: rgba(243, 236, 224, 0.1); overflow: hidden; }
.vagas__fill { display: block; height: 100%; width: 1%; border-radius: 99px; background: linear-gradient(90deg, var(--gold-3), var(--ember-1)); transition: width 0.8s var(--ease); }
.vagas__fine { font-size: 0.86rem; color: var(--ivory-mute); margin-top: 0.6rem; }

.hero__price { font-size: 1.04rem; color: var(--ivory-dim); }
.hero__price b { color: var(--ivory); font-weight: 600; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero__guarantee { font-size: 0.86rem; color: var(--ivory-mute); line-height: 1.45; }

.hero__scroll { position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); width: 1px; height: 46px; background: linear-gradient(var(--gold-line), transparent); overflow: hidden; }
.hero__scroll span { position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--ember-2); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }

/* =====================================================================
   SECAO 2 - EDSON (autoridade, editorial assimetrico)
   ===================================================================== */
.edson { padding: clamp(5rem, 12vh, 9rem) var(--gutter); }
.edson__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.4rem, 6vw, 5.5rem); align-items: center;
}
.edson__portrait { position: relative; border-radius: var(--r-md); }
.edson__portrait img {
  width: 100%; border-radius: var(--r-md);
  border: 1px solid var(--hair);
  box-shadow: var(--sh-img);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
/* vinheta quente sutil: integra a foto ao fundo, nao chapada */
.edson__portrait::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(233, 194, 90, 0.1),
    inset 0 -50px 70px -46px rgba(12, 10, 8, 0.7),
    inset 0 30px 60px -50px rgba(12, 10, 8, 0.5);
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
.edson__sig {
  position: absolute; right: -0.4rem; bottom: 1.2rem;
  writing-mode: vertical-rl; font-family: 'Cinzel', serif;
  letter-spacing: 0.4em; font-size: 0.74rem; color: var(--gold-2); opacity: 0.7;
}
.edson__role {
  font-family: 'Cinzel', serif; font-size: clamp(0.84rem, 0.78rem + 0.3vw, 1rem);
  letter-spacing: 0.04em; color: var(--gold-2); line-height: 1.5;
  margin: 0.6rem 0 1.6rem;
}
.edson__body .lede { color: var(--ivory-dim); font-size: var(--body); line-height: 1.66; }
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; margin-top: 2.4rem;
  border-top: 1px solid var(--hair);
}
.stat { padding: 1.4rem 1.4rem 1.4rem 0; border-bottom: 1px solid var(--hair); }
.stat:nth-child(odd) { padding-right: 1.6rem; }
.stat:nth-child(even) { padding-left: 1.6rem; border-left: 1px solid var(--hair); }
.stat__num {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.1rem); line-height: 1;
  color: transparent; background: var(--brushed); -webkit-background-clip: text; background-clip: text;
}
.stat__txt { font-size: 0.92rem; color: var(--ivory-mute); margin-top: 0.5rem; line-height: 1.4; }

/* =====================================================================
   SECAO 3 - A DOR
   ===================================================================== */
.dor {
  position: relative;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(20, 16, 11, 0.9), transparent 60%),
    linear-gradient(180deg, var(--ink-900), var(--ink-850) 60%, var(--ink-900));
}
/* glow ambiental de brasa, suave, fluindo do canto */
.dor::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 88% 18%, rgba(255, 106, 31, 0.05), transparent 60%);
}
.dor__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.dor__head { max-width: 20ch; font-size: var(--t-md); margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.dor__head em { color: transparent; background: linear-gradient(135deg, var(--ember-2), var(--ember-deep)); -webkit-background-clip: text; background-clip: text; font-style: normal; }
.dor__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--hair); padding-top: clamp(2rem, 4vw, 3rem);
}

/* =====================================================================
   SECAO 4 - FORMACAO EM VOCE
   ===================================================================== */
.emvoce { padding: clamp(5rem, 12vh, 9rem) var(--gutter); }
.emvoce__inner { max-width: var(--maxw); margin: 0 auto; }
.emvoce__head { max-width: 64ch; margin-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.emvoce__head h2 { margin: 0.4rem 0 1.4rem; }
.emvoce__head h2 em { font-style: normal; }
.emvoce__head .lede { margin-bottom: 1.4rem; }

.learns {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.learns li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 1.6rem 1.5rem 0;
  border-bottom: 1px solid var(--hair);
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.32rem);
  color: var(--ivory);
  line-height: 1.4;
}
.learns li:nth-child(even) { padding-left: 1.8rem; border-left: 1px solid var(--hair); }
.learns__n { font-family: 'Cinzel', serif; font-size: 0.92rem; color: var(--gold-2); flex: 0 0 auto; margin-top: 0.35em; letter-spacing: 0.1em; }

.forme {
  background: linear-gradient(150deg, var(--ink-700), var(--ink-850));
  border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--sh-soft);
}
.forme__title { font-family: 'Cinzel', serif; font-size: var(--t-sm); color: var(--gold-2); margin-bottom: 1.6rem; letter-spacing: 0.02em; }
.forme__list { display: grid; gap: 0; }
.forme__row { padding: 1.15rem 0; border-bottom: 1px solid var(--hair-soft); color: var(--ivory-dim); }
.forme__row:last-child { border-bottom: 0; padding-bottom: 0; }
.forme__row b { color: var(--ivory); font-weight: 600; }

/* =====================================================================
   SECAO 5 - MOMENTO VIDA 369 (citacao cinematografica full-bleed)
   ===================================================================== */
.momento {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 80vh, 820px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(5rem, 12vh, 9rem) var(--gutter); overflow: hidden;
}
.momento__media { position: absolute; inset: 0; z-index: -1; }
.momento__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.momento__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 42%, transparent 0%, rgba(12, 10, 8, 0.6) 70%, rgba(12, 10, 8, 0.96) 100%),
    linear-gradient(180deg, rgba(12, 10, 8, 0.9), rgba(12, 10, 8, 0.5) 40%, rgba(12, 10, 8, 0.92));
}
.momento__quote { max-width: 22ch; }
.momento__quote p {
  font-family: 'Cinzel', serif; font-weight: 500;
  font-size: var(--t-md); line-height: 1.28; color: var(--ivory);
  text-wrap: balance; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.momento__quote cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-family: 'Cinzel', serif; letter-spacing: 0.18em; font-size: 0.8rem; color: var(--gold-2);
}
.momento__quote cite span { display: block; color: var(--ivory-mute); margin-top: 0.3rem; letter-spacing: 0.3em; }
.momento__transition {
  margin-top: clamp(2.4rem, 6vw, 4rem); max-width: 46ch;
  font-style: italic; color: var(--ivory-dim); font-size: 1.06rem;
}

/* =====================================================================
   SECAO 6 - MODULOS (pranchas editoriais assimetricas, NAO grid de cards)
   ===================================================================== */
.modulos { padding: clamp(5rem, 12vh, 9rem) var(--gutter); }
.modulos__head { max-width: 62ch; margin: 0 auto clamp(3rem, 7vw, 5.5rem); }
.modulos__head h2 { margin: 0.4rem 0 1.2rem; }
.modulos__head h2 em { font-style: normal; }

.plates { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(3rem, 8vw, 6.5rem); }
.plate {
  display: grid; grid-template-columns: minmax(0, 280px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.plate--flip { grid-template-columns: 1fr minmax(0, 280px); }
.plate--flip .plate__art { order: 2; }
.plate--flip .plate__txt { order: 1; text-align: right; }
.plate--flip .plate__n { margin-left: auto; }
.plate__art { position: relative; border-radius: var(--r-img); }
.plate__art img {
  width: 100%; border-radius: var(--r-img);
  border: 1px solid var(--hair);
  box-shadow: var(--sh-img);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
/* leve vinheta nas bordas da capa, pra nao ficar chapada */
.plate__art::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(233, 194, 90, 0.1),
    inset 0 -36px 50px -42px rgba(12, 10, 8, 0.7);
  transition: opacity 0.7s var(--ease);
}
.plate:hover .plate__art img {
  transform: translateY(-10px) scale(1.014);
  box-shadow:
    0 48px 96px -40px rgba(0, 0, 0, 0.9),
    0 20px 50px -28px rgba(255, 106, 31, 0.14);
}
.plate__n {
  display: block;
  font-family: 'Cinzel', serif; font-weight: 800;
  font-size: clamp(3rem, 2rem + 4vw, 6.5rem); line-height: 0.8;
  color: transparent;
  background: var(--brushed); -webkit-background-clip: text; background-clip: text;
  opacity: 0.92; margin-bottom: 0.7rem;
}
.plate__txt h3 { font-family: 'Cinzel', serif; font-weight: 600; font-size: var(--t-md); line-height: 1.06; color: var(--ivory); margin-bottom: 0.9rem; }
.plate__txt p { color: var(--ivory-dim); max-width: 42ch; font-size: 1.08rem; }
.plate--flip .plate__txt p { margin-left: auto; }

/* diferenciais */
.diffs {
  max-width: 980px; margin: clamp(4rem, 9vw, 7rem) auto 0;
  border-top: 1px solid var(--hair); padding-top: clamp(2.4rem, 5vw, 4rem);
}
.diffs__title { font-family: 'Cinzel', serif; font-size: var(--t-sm); color: var(--gold-2); margin-bottom: 1.8rem; }
.diffs__rows { display: grid; gap: 0; }
.diff {
  display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 1.3rem 0; border-bottom: 1px solid var(--hair-soft);
}
.diff__k { font-family: 'Cinzel', serif; font-weight: 600; color: var(--ivory); font-size: 1.04rem; letter-spacing: 0.01em; }
.diff__v { color: var(--ivory-mute); }
.diffs__pull {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 2rem); line-height: 1.32;
  color: var(--ivory); margin: 2.4rem 0; max-width: 32ch; text-wrap: balance;
}
.diffs__pull::first-letter { color: var(--gold-2); }

/* =====================================================================
   SECAO 7 - STACK DE VALOR (ledger editorial + pilha de objetos)
   ===================================================================== */
.valor {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  background:
    radial-gradient(90% 60% at 12% 8%, rgba(185, 138, 40, 0.05), transparent 55%),
    linear-gradient(180deg, var(--ink-900), var(--ink-850) 40%, var(--ink-800) 100%);
}
.valor__head { max-width: 58ch; margin: 0 auto clamp(2.8rem, 6vw, 4.5rem); }
.valor__head h2 { margin: 0.4rem 0 1.2rem; }
.valor__head h2 em { font-style: normal; }
.valor__layout {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.4rem, 6vw, 5rem); align-items: center;
}
.ledger { border-top: 1px solid var(--gold-line); }
.ledger__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem;
  padding: 1rem 0; border-bottom: 1px solid var(--hair-soft);
}
.ledger__item { color: var(--ivory-dim); font-size: 1.02rem; }
.ledger__item small { display: block; color: var(--ivory-mute); font-size: 0.82rem; margin-top: 0.15rem; }
.ledger__price { font-family: 'Cinzel', serif; color: var(--ivory); white-space: nowrap; font-size: 1.02rem; letter-spacing: 0.02em; }
.ledger__row--total {
  border-bottom: 0; border-top: 1px solid var(--gold-line); margin-top: 0.4rem; padding-top: 1.3rem;
}
.ledger__row--total .ledger__item { font-family: 'Cinzel', serif; font-weight: 700; color: var(--ivory); font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ledger__row--total .ledger__price {
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem); font-weight: 800;
  color: transparent; background: var(--brushed); -webkit-background-clip: text; background-clip: text;
}

/* pilha de objetos de valor (capas, espalhadas, nao grid identico) */
.pile { position: relative; aspect-ratio: 1 / 1; min-height: 360px; }
.pile__obj {
  position: absolute; width: 44%; border-radius: var(--r-img);
  border: 1px solid var(--hair);
  box-shadow:
    0 34px 64px -34px rgba(0, 0, 0, 0.92),
    0 12px 30px -20px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.pile__obj--1 { left: 2%; top: 6%; transform: rotate(-9deg); z-index: 2; }
.pile__obj--2 { left: 30%; top: 0%; transform: rotate(4deg); z-index: 5; width: 47%; }
.pile__obj--3 { right: 1%; top: 12%; transform: rotate(11deg); z-index: 3; }
.pile__obj--4 { left: 10%; bottom: 3%; transform: rotate(6deg); z-index: 4; }
.pile__obj--5 { right: 6%; bottom: 0%; transform: rotate(-6deg); z-index: 6; width: 46%; }
.pile:hover .pile__obj--2 { transform: rotate(2deg) translateY(-10px); }

.hl { max-width: var(--maxw); margin: clamp(3rem, 7vw, 5rem) auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--hair); }
.hl__item { padding: 1.3rem 1.6rem 1.3rem 0; border-bottom: 1px solid var(--hair-soft); color: var(--ivory-dim); }
.hl__item:nth-child(even) { padding-left: 1.8rem; border-left: 1px solid var(--hair-soft); }
.hl__item b { color: var(--gold-2); font-weight: 600; }

/* =====================================================================
   SECAO 8 - AS 369 VAGAS
   ===================================================================== */
.g369 {
  position: relative; padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255, 106, 31, 0.1), transparent 60%),
    var(--ink-900);
  overflow: hidden;
}
.g369::after {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0.05; pointer-events: none;
  background: url("assets/edson.webp") center 12% / cover no-repeat;
  -webkit-mask-image: radial-gradient(60% 50% at 80% 18%, #000, transparent 70%);
  mask-image: radial-gradient(60% 50% at 80% 18%, #000, transparent 70%);
}
.g369__inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; text-align: center; }
.g369__inner .eyebrow { justify-content: center; }
.g369__inner h2 { margin: 0.4rem auto 1.4rem; max-width: 18ch; }
.g369__inner h2 em { font-style: normal; }
.g369__inner .lede, .g369__inner .prose { max-width: 60ch; margin-inline: auto; }
.g369__inner .prose { margin-top: 1.2rem; }
.g369__counter {
  display: inline-flex; align-items: center; gap: clamp(1.2rem, 4vw, 2.4rem);
  margin: clamp(2.6rem, 6vw, 4rem) 0;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(150deg, rgba(28, 22, 14, 0.8), rgba(12, 10, 8, 0.7));
  border: 1px solid var(--hair); border-radius: var(--r-xl); text-align: left;
  box-shadow: var(--sh-ember);
}
.g369__num {
  font-family: 'Cinzel', serif; font-weight: 800; line-height: 0.84;
  font-size: clamp(4rem, 2.4rem + 7vw, 7rem);
  color: transparent; background: linear-gradient(135deg, var(--ember-2), var(--ember-1)); -webkit-background-clip: text; background-clip: text;
  transition: transform 0.3s var(--ease);
}
.g369__num.tick { transform: scale(1.06); }
.g369__cmeta { min-width: min(280px, 60vw); }
.g369__label { font-family: 'Cinzel', serif; font-size: 1.04rem; color: var(--ivory); margin-bottom: 0.7rem; letter-spacing: 0.04em; }
.g369__fine { font-size: 0.88rem; color: var(--ivory-mute); margin-top: 0.7rem; }

.welcome { margin-top: clamp(1rem, 3vw, 2rem); }
.welcome__lead { font-family: 'Cinzel', serif; color: var(--gold-2); font-size: 1.04rem; margin-bottom: 1.6rem; letter-spacing: 0.02em; }
.welcome__items { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); text-align: left; }
.welcome__it { display: flex; gap: 1.1rem; align-items: center; padding: 1rem 1.2rem; border: 1px solid var(--hair); border-radius: var(--r-lg); background: rgba(28, 22, 14, 0.4); box-shadow: var(--sh-soft); }
.welcome__it img { width: 78px; flex: 0 0 78px; border-radius: var(--r-xs); border: 1px solid var(--hair); box-shadow: 0 18px 34px -22px rgba(0, 0, 0, 0.85); }
.welcome__it b { display: block; color: var(--ivory); font-family: 'Cinzel', serif; font-size: 0.98rem; margin-bottom: 0.25rem; }
.welcome__it span { font-size: 0.9rem; color: var(--ivory-mute); }

/* =====================================================================
   SECAO 9 - PRECO / OFERTA
   ===================================================================== */
.oferta { padding: clamp(5rem, 12vh, 9rem) var(--gutter); }
.oferta__inner { max-width: 1080px; margin: 0 auto; }
.oferta__head { text-align: center; max-width: 24ch; margin: 0 auto clamp(2.4rem, 5vw, 3.5rem); }
.oferta__head .eyebrow { justify-content: center; }
.oferta__head h2 em { font-style: normal; }
.oferta__reasons { max-width: 720px; margin: 0 auto clamp(2.6rem, 5vw, 3.6rem); }
.oferta__reasons .prose { font-size: 1.04rem; }
.oferta__reasons b { color: var(--gold-2); font-family: 'Cinzel', serif; font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 0.4rem; }

.price {
  position: relative; text-align: center;
  max-width: 640px; margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(165deg, var(--ink-700), var(--ink-850));
  border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  box-shadow:
    0 48px 110px -52px rgba(0, 0, 0, 0.92),
    0 22px 60px -34px rgba(255, 106, 31, 0.12);
}
.price::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(233, 194, 90, 0.5), transparent 40%, rgba(255, 106, 31, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.price__anchors { display: flex; align-items: baseline; justify-content: center; gap: 1.6rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.price__from { font-family: 'Cinzel', serif; color: var(--ivory-mute); font-size: 0.96rem; letter-spacing: 0.04em; }
.price__from span { text-decoration: line-through; text-decoration-color: var(--ember-deep); }
.price__avulso { font-family: 'Cinzel', serif; color: var(--ivory-mute); font-size: 0.96rem; }
.price__lead { font-family: 'Cinzel', serif; color: var(--gold-2); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
.price__big {
  font-family: 'Cinzel', serif; font-weight: 800; line-height: 0.92;
  font-size: var(--t-mega);
  color: transparent; background: var(--brushed); -webkit-background-clip: text; background-clip: text;
  margin: 0.3rem 0 0.2rem; letter-spacing: 0.01em;
}
.price__inst { font-family: 'Cinzel', serif; font-size: var(--t-sm); color: var(--ivory); }
.price__inst b { color: var(--ember-2); font-weight: 700; }
.price__save { color: var(--ivory-mute); margin-top: 0.5rem; font-size: 0.98rem; }

.countdown { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin: clamp(1.8rem, 4vw, 2.6rem) 0; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; padding: 0.7rem 0.5rem; background: rgba(12, 10, 8, 0.7); border: 1px solid var(--hair); border-radius: var(--r-xs); box-shadow: inset 0 1px 0 rgba(255, 220, 180, 0.04); }
.cd-num { font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); color: var(--ivory); line-height: 1; }
.cd-label { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ivory-mute); margin-top: 0.3rem; }
.cd-sep { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold-line); align-self: flex-start; margin-top: 0.5rem; }

.price .btn { margin-top: 0.4rem; }
.price__safe { font-size: 0.84rem; color: var(--ivory-mute); margin-top: 1.1rem; }
.price__deadline { font-size: 0.88rem; color: var(--ember-2); margin-top: 0.9rem; line-height: 1.45; opacity: 0.92; }
.oferta__bridge { text-align: center; max-width: 56ch; margin: clamp(2.2rem, 5vw, 3.4rem) auto 0; color: var(--ivory-dim); font-style: italic; font-size: 1.06rem; }

/* =====================================================================
   SECAO 10 - GARANTIA DUPLA
   ===================================================================== */
.garantia {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  background:
    radial-gradient(80% 60% at 80% 12%, rgba(255, 106, 31, 0.05), transparent 58%),
    linear-gradient(180deg, var(--ink-800), var(--ink-900) 55%, var(--ink-850));
}
.garantia__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.4rem, 6vw, 5rem); align-items: start;
}
.garantia__seal { position: sticky; top: 6rem; }
.garantia__seal { border-radius: var(--r-md); }
.garantia__seal img {
  width: 100%; border-radius: var(--r-md); border: 1px solid var(--hair);
  box-shadow: var(--sh-img);
}
.garantia__body h2 { margin: 0.4rem 0 1.2rem; }
.garantia__body h2 em { font-style: normal; }
.garantia__body .lede { margin-bottom: 2rem; }
.guarantee {
  padding: 1.6rem 0; border-top: 1px solid var(--hair);
}
.guarantee--hero {
  background: linear-gradient(150deg, rgba(255, 106, 31, 0.08), transparent 70%);
  border-top: 1px solid rgba(255, 106, 31, 0.4); border-radius: var(--r-lg);
  padding: 1.8rem clamp(1.2rem, 3vw, 2rem); margin-top: 1.4rem;
  box-shadow: var(--sh-ember);
}
.guarantee__tag { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.45em 0.95em; border: 1px solid var(--gold-line); color: var(--gold-2); border-radius: var(--r-pill); margin-bottom: 1rem; }
.guarantee__tag--ember { color: var(--ember-2); border-color: var(--ember-2); background: rgba(255, 106, 31, 0.08); }
.guarantee h3 { font-family: 'Cinzel', serif; font-weight: 600; font-size: var(--t-sm); color: var(--ivory); margin-bottom: 0.8rem; line-height: 1.2; }
.guarantee p { color: var(--ivory-dim); }
.garantia__quote {
  margin: 2.4rem 0 0; padding: 1.4rem 0 0 1.4rem; border-left: 2px solid var(--ember-1);
  font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem); line-height: 1.36; color: var(--ivory);
}
.garantia__quote cite { display: block; margin-top: 1rem; font-style: normal; font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 0.16em; color: var(--gold-2); }

/* =====================================================================
   SECAO 11 - OBJECOES
   ===================================================================== */
.obj { padding: clamp(5rem, 12vh, 9rem) var(--gutter); }
.obj__head { max-width: 40ch; margin: 0 auto clamp(2.8rem, 6vw, 4.5rem); }
.obj__head h2 em { font-style: normal; }
.obj__list { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.obj__item {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid var(--hair); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(28, 22, 14, 0.5), rgba(12, 10, 8, 0.4));
  box-shadow: var(--sh-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.obj__item:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 194, 90, 0.26);
  box-shadow: var(--sh-lift);
}
.obj__item--wide { grid-column: 1 / -1; border-color: rgba(255, 106, 31, 0.32); background: linear-gradient(150deg, rgba(255, 106, 31, 0.07), transparent 70%); }
.obj__item--wide:hover { border-color: rgba(255, 106, 31, 0.5); box-shadow: var(--sh-ember); }
.obj__item h3 { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: var(--t-sm); color: var(--ember-2); margin-bottom: 0.8rem; }
.obj__item p { color: var(--ivory-dim); }

/* =====================================================================
   SECAO 12 - FAQ
   ===================================================================== */
.faq {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
  background:
    radial-gradient(90% 50% at 50% 0%, rgba(20, 16, 11, 0.9), transparent 55%),
    linear-gradient(180deg, var(--ink-850), var(--ink-900) 60%, var(--ink-900));
}
.faq__head { max-width: 880px; margin: 0 auto clamp(2.4rem, 5vw, 3.5rem); }
.faq__list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left;
  font-family: 'Cinzel', serif; font-weight: 600; font-size: clamp(1rem, 0.94rem + 0.4vw, 1.2rem);
  color: var(--ivory); transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-2); }
.faq-q i { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq-q i::before, .faq-q i::after { content: ''; position: absolute; background: var(--gold-2); transition: transform 0.45s var(--ease), opacity 0.3s; }
.faq-q i::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-q i::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.active .faq-q i::after { transform: rotate(90deg); opacity: 0; }
.faq-item.active .faq-q { color: var(--gold-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { color: var(--ivory-dim); padding-bottom: 1.5rem; max-width: 70ch; }

/* =====================================================================
   SECAO 13 - CTA FINAL (full-bleed, fecho de cinema)
   ===================================================================== */
.final { position: relative; isolation: isolate; padding: clamp(6rem, 14vh, 10rem) var(--gutter); overflow: hidden; }
.final__media { position: absolute; inset: 0; z-index: -1; }
.final__media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 14%; }
.final__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 10, 8, 0.94), rgba(12, 10, 8, 0.82) 40%, rgba(12, 10, 8, 0.97)); }
.final__inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.final__inner h2 { margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.final__inner h2 em { font-style: normal; }
.recap { list-style: none; display: grid; gap: 0; text-align: left; max-width: 680px; margin: 0 auto; border-top: 1px solid var(--hair); }
.recap li { padding: 1.1rem 0; border-bottom: 1px solid var(--hair-soft); color: var(--ivory-dim); }
.recap li b { color: var(--ivory); font-weight: 600; }
.recap li span[data-counter] { color: var(--ember-2); font-family: 'Cinzel', serif; font-weight: 700; }
.final__close { margin: clamp(2.2rem, 5vw, 3.2rem) auto 0; max-width: 56ch; color: var(--ivory); font-size: 1.12rem; line-height: 1.55; font-style: italic; }
.final__safe { font-size: 0.84rem; color: var(--ivory-mute); margin-top: 1.2rem; }
.signoff {
  margin-top: clamp(2.6rem, 6vw, 4rem);
  font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 0.24em;
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.8rem);
  color: transparent; background: var(--brushed); -webkit-background-clip: text; background-clip: text;
}
.signoff span { display: block; font-size: 0.62em; letter-spacing: 0.4em; color: var(--ivory-mute); -webkit-text-fill-color: var(--ivory-mute); margin-top: 0.6rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { padding: clamp(3.5rem, 8vw, 5.5rem) var(--gutter) clamp(7rem, 12vw, 9rem); border-top: 1px solid var(--hair); text-align: center; }
.footer__inner { max-width: 760px; margin: 0 auto; }
.footer__logo { width: clamp(150px, 30vw, 220px); margin: 0 auto 2rem; opacity: 0.9; }
.footer__disclaimer { font-size: 0.84rem; color: var(--ivory-mute); line-height: 1.6; margin-bottom: 2rem; }
.footer__meta { font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.12em; color: var(--ivory-dim); }
.footer__meta span { color: var(--ivory-mute); }
.footer__meta span::before { content: '·'; margin: 0 0.6em; color: var(--gold-line); }
.footer__code { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold-2); margin-top: 0.8rem; }
.footer__author { font-size: 0.78rem; color: var(--ivory-mute); margin-top: 1.4rem; opacity: 0.7; }

/* =====================================================================
   CTA FIXO DE RODAPE (dock)
   ===================================================================== */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem clamp(14px, 4vw, 32px);
  padding-bottom: max(0.8rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(20, 16, 11, 0.94), rgba(12, 10, 8, 0.98));
  border-top: 1px solid var(--hair);
  backdrop-filter: blur(14px);
  transform: translateY(120%); transition: transform 0.55s var(--ease);
}
.dock.visible { transform: translateY(0); }
.dock__info { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.dock__num { font-family: 'Cinzel', serif; font-weight: 800; line-height: 1; display: flex; align-items: baseline; gap: 0.3rem; }
.dock__num [data-counter] { font-size: 1.8rem; color: transparent; background: linear-gradient(135deg, var(--ember-2), var(--ember-1)); -webkit-background-clip: text; background-clip: text; }
.dock__num small { font-family: 'Cinzel', serif; font-size: 0.66rem; color: var(--ivory-mute); letter-spacing: 0.06em; }
.dock__txt { font-size: 0.82rem; color: var(--ivory-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock__btn { padding: 0.85rem 1.4rem; font-size: 0.8rem; }

/* =====================================================================
   MOTION - page-load orquestrado, staggered, transform/opacity only
   ===================================================================== */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0; will-change: transform, opacity;
  transition: opacity 0.9s var(--ease), transform 1s var(--ease);
}
.reveal { transform: translateY(34px); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(0.94); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}
/* stagger orquestrado (hero + heads de secao) */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.42s; }
[data-delay="5"] { transition-delay: 0.54s; }

/* stagger automatico e suave nos itens dos containers editoriais que sao .reveal
   (sem tocar o JS). Os filhos NAO sao .reveal, entao nao ha conflito de transicao.
   Quando o container ganha .visible, os filhos sobem em cascata. */
.learns.visible li,
.welcome.visible .welcome__it,
.stats.visible .stat,
.hl.visible .hl__item {
  animation: rise 0.8s var(--ease) both;
}
.learns.visible li:nth-child(2),
.welcome.visible .welcome__it:nth-child(2),
.stats.visible .stat:nth-child(2),
.hl.visible .hl__item:nth-child(2) { animation-delay: 0.07s; }
.learns.visible li:nth-child(3),
.stats.visible .stat:nth-child(3),
.hl.visible .hl__item:nth-child(3) { animation-delay: 0.14s; }
.learns.visible li:nth-child(4),
.stats.visible .stat:nth-child(4),
.hl.visible .hl__item:nth-child(4) { animation-delay: 0.21s; }
.learns.visible li:nth-child(5),
.hl.visible .hl__item:nth-child(5) { animation-delay: 0.28s; }
.learns.visible li:nth-child(n+6),
.hl.visible .hl__item:nth-child(n+6) { animation-delay: 0.35s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__media img { animation: none; transform: scale(1); }
  .hero__scroll span, .ticker__pulse { animation: none; }
  .btn, .plate__art img, .pile__obj, .obj__item { transition: none; }
  /* desliga o stagger automatico e qualquer rise */
  .learns.visible li, .welcome.visible .welcome__it,
  .stats.visible .stat, .hl.visible .hl__item {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}

/* =====================================================================
   RESPONSIVO - mobile-first adaptativo (adaptar layout, nao amputar)
   ===================================================================== */
@media (max-width: 980px) {
  .edson__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .edson__portrait { max-width: 420px; }
  .dor__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .valor__layout { grid-template-columns: 1fr; gap: 3rem; }
  .pile { max-width: 420px; margin: 0 auto; min-height: 340px; }
  .garantia__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .garantia__seal { position: static; max-width: 320px; }
  .obj__list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__edge { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__brand { justify-self: start; }
  /* alvo de toque minimo 44px: padding vertical maior + min-height (font reduzida no mobile) */
  .nav__cta { font-size: 0.66rem; padding: 0.85em 1.1em; min-height: 44px; }

  .hero { align-items: flex-end; padding-left: clamp(16px, 5vw, 24px); padding-right: clamp(16px, 5vw, 24px); }
  .hero__media img { object-position: 64% 12%; }
  .hero__panel { padding: 1.4rem 1.2rem; }
  .vagas { gap: 1rem; }

  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(odd), .stat:nth-child(even) { padding: 1.2rem 0; border-left: 0; }

  .learns { grid-template-columns: 1fr; }
  .learns li, .learns li:nth-child(even) { padding: 1.2rem 0; border-left: 0; }

  .plate, .plate--flip { grid-template-columns: 1fr; gap: 1.4rem; text-align: left; }
  .plate__art { max-width: 230px; }
  .plate--flip .plate__art { order: 1; }
  .plate--flip .plate__txt { order: 2; text-align: left; }
  .plate--flip .plate__txt p { margin-left: 0; }
  .plate--flip .plate__n { margin-left: 0; }

  .diff { grid-template-columns: 1fr; gap: 0.4rem; }
  .hl { grid-template-columns: 1fr; }
  .hl__item, .hl__item:nth-child(even) { padding: 1.2rem 0; border-left: 0; }

  .welcome__items { grid-template-columns: 1fr; }
  .g369__counter { flex-direction: column; align-items: flex-start; text-align: left; }

  .countdown { gap: 0.3rem; }
  .cd-unit { min-width: 48px; padding: 0.6rem 0.3rem; }
  .cd-sep { display: none; }

  /* ticker full-width no mobile, MAS levantado acima do dock fixo (~64px + safe-area)
     pra nao cobrir o numero de vagas nem o CTA "Garantir minha vaga" do dock */
  .ticker { left: 8px; right: 8px; max-width: none; bottom: calc(74px + env(safe-area-inset-bottom)); }
  .dock__txt { display: none; }
  /* reserva real do espaco do dock fixo no fluxo (nao depender so do padding do footer) */
  main { padding-bottom: 76px; }
}

@media (max-width: 380px) {
  .cd-unit { min-width: 42px; }
  .btn--xl { padding: 1.1rem 1.4rem; }
}
