/* =========================================================
   FATOS CAPITAL — Experiência premium (black & gold)
   Preto profundo · dourado cirúrgico · Plus Jakarta + Bodoni Moda
   Vanilla · Canvas · IntersectionObserver · rAF
   ========================================================= */

:root {
  /* base */
  --bg: #050505;
  --bg-1: #0A0A0C;
  --bg-2: #101014;
  --surface: rgba(255,255,255,0.028);
  --surface-2: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.09);
  --line-2: rgba(255,255,255,0.14);

  /* text */
  --white: #F4F3F1;
  --graphite: #9A9AA4;
  --muted: #55555F;

  /* gold accent */
  --gold: #C6A96B;
  --gold-bright: #E6D3A3;
  --gold-deep: #9A7B45;
  --gold-glow: rgba(214, 184, 120, 0.5);
  --gradient-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 52%, var(--gold-deep) 100%);

  --positive: #5FBE86;
  --negative: #C77E6F;

  --font-display: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1220px;
  --nav-h: 78px;

  /* mouse position (updated by JS) */
  --mx: 50%;
  --my: 30%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(214,184,120,0.28); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ---------------- Fundo: wireframe arquitetônico ---------------- */
/* conteúdo sempre acima do fundo */
.hero > .container, .hero-content,
.scene > .container, .section > .container, .page-hero > .container,
.partner-band > .container, .cta-band > .container { position: relative; z-index: 2; }
.nav { position: relative; z-index: 150; } .progress { z-index: 200; } .floats { z-index: 140; }
.footer { position: relative; z-index: 1; }
.bg-ink, .bg-navy { background: transparent; }

/* linhas do wireframe (canvas fixo, atrás de todo o conteúdo) */
#bgCanvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
/* fundo preto liso com vinheta sutil (sem wireframe) */
.bg-veil { position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1200px 820px at 50% -12%, rgba(214,184,120,0.045), transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,0.4), rgba(5,5,5,0) 24%, rgba(5,5,5,0) 76%, rgba(5,5,5,0.42)); }

/* ---------------- Fotos como camadas contínuas (fusão no preto) ---------------- */
/* HERO — foto full-bleed: intro zoom-out, parallax no scroll, dissolução no preto */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media-frame { position: absolute; inset: -4% -3%; will-change: transform;
  transform: translate(var(--mvx, 0px), calc(var(--mvy, 0px) + var(--p, 0) * 14vh)) scale(calc(1 + var(--p, 0) * 0.08));
  transition: transform 0.5s var(--ease); }
.hero-media-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  transform-origin: 58% 45%; animation: heroKen 30s ease-in-out infinite; }
/* intro (zoom-out) embutido no início + drift contínuo (ken-burns) */
@keyframes heroKen {
  0%   { transform: scale(1.09) translate(0, 0); }
  13%  { transform: scale(1.0) translate(0, 0); }
  55%  { transform: scale(1.055) translate(-1.8%, -1.1%); }
  100% { transform: scale(1.09) translate(0, 0); }
}
.hero-media-veil { position: absolute; inset: 0; pointer-events: none;
  opacity: calc(0.7 + var(--p, 0) * 0.3);
  background:
    linear-gradient(105deg, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.78) 42%, rgba(5,5,5,0.6) 68%, rgba(5,5,5,0.72) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.44) 0%, transparent 34%, transparent 56%, rgba(5,5,5,0.6) 100%); }
.hero-media-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 52%; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,0.45) 42%, rgba(5,5,5,0.8) 72%, var(--bg) 100%); }
/* conteúdo do hero sobe e some conforme rola */
.hero .hero-content { opacity: calc(1 - var(--p, 0) * 1.25); transform: translateY(calc(var(--p, 0) * -5vh)); }

/* MÉTODO — foto que se revela do preto e volta ao preto (parallax ~60%) */
.reveal-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: var(--op, 0); }
.reveal-media-frame { position: absolute; inset: -14% 0; will-change: transform;
  transform: translateY(calc((var(--pm, 0.5) - 0.5) * 20vh)); }
.reveal-media-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
  transform-origin: 50% 45%; animation: revealKen 34s ease-in-out infinite; }
@keyframes revealKen {
  0%   { transform: scale(1.03) translate(0, 0); }
  50%  { transform: scale(1.08) translate(1.6%, -1.2%); }
  100% { transform: scale(1.03) translate(0, 0); }
}

/* ---------------- Carrossel de abas (Método) ---------------- */
.tabs { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.tabs-list { display: flex; flex-direction: column; gap: 12px; }
.tab { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; cursor: pointer;
  padding: 17px 26px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  color: var(--graphite); font-family: var(--font-sans); font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  transition: background 0.45s var(--ease), color 0.45s, border-color 0.45s, box-shadow 0.45s, transform 0.45s var(--ease); }
.tab:hover { border-color: var(--line-2); color: var(--white); transform: translateX(3px); }
.tab .tab-n { font-family: var(--font-display); font-style: italic; font-size: 18px; min-width: 22px; opacity: 0.75; }
.tab .tab-t { flex: 1; }
.tab .tab-ar { opacity: 0; transform: translateX(-6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.tab.active { background: var(--gradient-gold); color: #0A0A0C; border-color: transparent; font-weight: 600;
  box-shadow: 0 12px 32px rgba(198,169,107,0.28); }
.tab.active .tab-n { opacity: 1; }
.tab.active .tab-ar { opacity: 1; transform: none; }

.tabs-stage { position: relative; }
.panels { position: relative; aspect-ratio: 4 / 5; max-width: 440px; margin: 0 auto; }
.stage-ghost { position: absolute; top: 7%; bottom: 7%; width: 24%; border-radius: 20px; z-index: 0;
  background: rgba(255,255,255,0.035); border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(0,0,0,0.4); }
.stage-ghost.g-left { left: -9%; transform: rotate(-5deg); }
.stage-ghost.g-right { right: -9%; transform: rotate(5deg); }
.panel { position: absolute; inset: 0; z-index: 1; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; transform: scale(0.97); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.panel.active { opacity: 1; visibility: visible; transform: none; }
.panel-media { position: absolute; inset: 0; }
.panel-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
  transform: scale(1.06); transition: transform 7s ease; }
.panel.active .panel-media img { transform: scale(1.15); }
.panel-shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0) 28%, rgba(5,5,5,0.5) 60%, rgba(5,5,5,0.95) 100%); }
.panel-live { position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; border-radius: 100px; background: rgba(5,5,5,0.45); backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); animation: livePulse 2.2s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(230,211,163,0.5); } 70%, 100% { box-shadow: 0 0 0 9px rgba(230,211,163,0); } }
.panel-body { position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 2; }
.panel-badge { display: inline-block; margin-bottom: 14px; padding: 7px 15px; border-radius: 100px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); }
.panel-body h3 { font-family: var(--font-sans); font-weight: 500; font-size: clamp(21px, 2.3vw, 27px); line-height: 1.16; letter-spacing: -0.01em; color: #fff; margin-bottom: 10px; }
.panel-body p { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.82); max-width: 34ch; }

@media (max-width: 900px) {
  .tabs { grid-template-columns: 1fr; gap: 34px; }
  .stage-ghost { display: none; }
  .panels { max-width: 380px; }
}

/* ---------------- Orbital de produtos ---------------- */
.orbit { position: relative; width: 100%; max-width: 620px; aspect-ratio: 1; margin: 76px auto 0; --r: 244px; }
.orbit-circle { position: absolute; top: 50%; left: 50%; width: calc(var(--r) * 2); height: calc(var(--r) * 2); transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid var(--line); }
.orbit-core { position: absolute; top: 50%; left: 50%; width: 84px; height: 84px; transform: translate(-50%, -50%); border-radius: 50%; z-index: 1;
  background: radial-gradient(circle at 35% 30%, #F4E9CC, var(--gold) 46%, var(--gold-deep) 100%);
  box-shadow: 0 0 54px rgba(214,184,120,0.42), inset 0 2px 8px rgba(255,255,255,0.45);
  animation: corePulse 4.5s ease-in-out infinite; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
@keyframes corePulse { 0%,100% { box-shadow: 0 0 48px rgba(214,184,120,0.34), inset 0 2px 8px rgba(255,255,255,0.45); } 50% { box-shadow: 0 0 68px rgba(214,184,120,0.5), inset 0 2px 8px rgba(255,255,255,0.45); } }
.orbit.open .orbit-core { opacity: 0; }

.orbit-ring { position: absolute; inset: 0; z-index: 2; animation: orbitSpin 95s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit.paused .orbit-ring, .orbit.paused .orbit-node-inner { animation-play-state: paused; }

.orbit-node { position: absolute; top: 50%; left: 50%; width: 60px; height: 60px; margin: -30px 0 0 -30px;
  transform: rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
  background: none; border: 0; padding: 0; cursor: pointer; }
.orbit-node-inner { position: relative; display: flex; flex-direction: column; align-items: center;
  animation: orbitSpin 95s linear infinite reverse; }
.orbit-ico { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.045); border: 1px solid var(--line-2); color: var(--graphite);
  transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease); }
.orbit-ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.orbit-lbl { position: absolute; top: 62px; white-space: nowrap; font-size: 12px; font-weight: 500; letter-spacing: 0.01em; color: var(--muted); transition: color 0.4s; }
.orbit-node:hover .orbit-ico, .orbit-node.active .orbit-ico { color: #0A0A0C; background: var(--gradient-gold); border-color: transparent; transform: scale(1.06); box-shadow: 0 0 0 5px rgba(214,184,120,0.14), 0 10px 26px rgba(198,169,107,0.32); }
.orbit-node:hover .orbit-lbl, .orbit-node.active .orbit-lbl { color: var(--white); }

.orbit-card { position: absolute; top: 50%; left: 50%; width: 300px; max-width: 76%; z-index: 3;
  transform: translate(-50%, -50%) scale(0.92); padding: 30px 30px 26px; border-radius: 22px; text-align: left;
  background: rgba(10,10,12,0.82); backdrop-filter: blur(18px); border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.orbit.open .orbit-card { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.orbit-card-ico { display: flex; width: 48px; height: 48px; border-radius: 13px; align-items: center; justify-content: center; margin-bottom: 18px; color: #0A0A0C; background: var(--gradient-gold); }
.orbit-card-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.orbit-card-title { font-family: var(--font-sans); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; color: #fff; margin-bottom: 10px; }
.orbit-card-desc { font-size: 15px; line-height: 1.55; color: var(--graphite); margin-bottom: 20px; }
.orbit-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold-bright); }
.orbit-card-link .arw { transition: transform 0.3s var(--ease); }
.orbit-card-link:hover .arw { transform: translateX(4px); }
.orbit-card-close { position: absolute; top: 12px; right: 14px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--graphite); font-size: 20px; line-height: 1; cursor: pointer; transition: color 0.3s, border-color 0.3s; }
.orbit-card-close:hover { color: #fff; border-color: var(--line-2); }

@media (max-width: 700px) {
  .orbit { max-width: 340px; --r: 138px; margin-top: 54px; }
  .orbit-node { width: 50px; height: 50px; margin: -25px 0 0 -25px; }
  .orbit-ico { width: 46px; height: 46px; }
  .orbit-ico svg { width: 19px; height: 19px; }
  .orbit-lbl { top: 50px; font-size: 10px; }
  .orbit-core { width: 62px; height: 62px; }
  .orbit-card { width: 232px; padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-node-inner, .orbit-core { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .panel { transition: opacity 0.3s linear; }
  .panel-media img, .panel.active .panel-media img { transition: none; transform: none; }
}
.reveal-media-mask { position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(5,5,5,0.34) 24%, rgba(5,5,5,0.34) 76%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.72) 0%, rgba(5,5,5,0.2) 32%, rgba(5,5,5,0.2) 68%, rgba(5,5,5,0.72) 100%),
    radial-gradient(82% 74% at 50% 50%, transparent 30%, rgba(5,5,5,0.5) 100%); }

/* mobile: amplitude reduzida (~50%) e recorte pensado p/ retrato */
@media (max-width: 900px) {
  .hero-media-frame { transform: translateY(calc(var(--p, 0) * 7vh)) scale(calc(1 + var(--p, 0) * 0.04)); }
  .hero-media-img { object-position: 50% 38%; }
  .reveal-media-frame { transform: translateY(calc((var(--pm, 0.5) - 0.5) * 10vh)); }
  .reveal-media-img { object-position: 50% 42%; }
  .hero .hero-content { transform: translateY(calc(var(--p, 0) * -2.5vh)); }
}
/* reduced-motion: fusão (gradientes) permanece; zoom/parallax desligados */
@media (prefers-reduced-motion: reduce) {
  .hero-media-frame, .reveal-media-frame { transform: none !important; }
  .hero-media-img, .reveal-media-img { animation: none !important; transform: none !important; }
  .hero .hero-content { transform: none !important; }
}

/* ---------------- Typography ---------------- */
.kicker {
  font-family: var(--font-sans);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex; align-items: center;
}
.kicker::before {
  content: ''; width: 26px; height: 1px;
  background: currentColor; opacity: 0.55; margin-right: 14px;
}
.kicker.center::before { display: none; }
/* alias used by support pages */
.eyebrow { font-family: var(--font-sans); font-weight: 500; font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-bright); display: inline-flex; align-items: center; }
.eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: 0.55; margin-right: 14px; }
.eyebrow.center::before { display: none; }

.accent {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400; font-size: 1.06em;
  background: linear-gradient(110deg, var(--gold-deep) 0%, var(--gold) 26%, var(--gold-bright) 45%, #FBF3DE 50%, var(--gold-bright) 55%, var(--gold) 74%, var(--gold-deep) 100%);
  background-size: 240% 100%; background-position: 135% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen { 0%,100% { background-position: 135% 0; } 55% { background-position: -35% 0; } }

h1, h2, h3 { font-family: var(--font-sans); font-weight: 400; line-height: 1.16; letter-spacing: -0.02em; color: var(--white); }
.display { font-size: clamp(27px, 4.2vw, 50px); font-weight: 400; line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: clamp(25px, 3vw, 37px); }
h2 { font-size: clamp(21px, 2.5vw, 31px); }
h3 { font-size: clamp(16px, 1.6vw, 19px); font-weight: 500; letter-spacing: -0.01em; }

.lead {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(14px, 1.15vw, 16px); line-height: 1.65;
  letter-spacing: -0.003em; color: var(--graphite); max-width: 540px;
}
p.body { font-size: 15px; line-height: 1.75; color: var(--graphite); }
p.body strong, p.body b { color: var(--white); font-weight: 600; }
.muted { color: var(--muted); font-size: 13px; letter-spacing: 0.01em; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-gold { background: var(--gradient-gold); color: #0A0A0C; box-shadow: 0 10px 34px rgba(198,169,107,0.22); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(198,169,107,0.36); }
.btn-ghost { background: rgba(255,255,255,0.02); color: var(--white); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(214,184,120,0.06); }
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------------- Scroll progress ---------------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 200; background: transparent; }
.progress-fill { height: 100%; width: 0; background: var(--gradient-gold); box-shadow: 0 0 12px var(--gold-glow); transition: width 0.1s linear; }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(5,5,5,0.72); backdrop-filter: blur(20px) saturate(1.2); border-bottom-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 26px; width: auto; transition: opacity 0.3s; }
.nav-logo:hover img { opacity: 0.82; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--graphite); letter-spacing: 0.01em; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--gold); transition: width 0.35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Section framework ---------------- */
section { position: relative; }
.scene { padding: 170px 0; position: relative; overflow: hidden; }
.scene.tight { padding: 120px 0; }
.section { padding: 150px 0; overflow: hidden; }   /* alias for support pages */
.section.tight { padding: 110px 0; }
.section-head { max-width: 680px; margin-bottom: 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker, .section-head .eyebrow { margin-bottom: 26px; }
.section-head h2 { margin-bottom: 24px; }

/* ambient light that follows the cursor on dark scenes */
.spotlight { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 600px at var(--mx) var(--my), rgba(214,184,120,0.07), transparent 70%); }
.grain { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  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.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(214,184,120,0.10) 0%, rgba(214,184,120,0.03) 40%, transparent 70%); }
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); border: 0; }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding-top: var(--nav-h); z-index: 1; }
.hero-veil { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 540px at var(--mx) var(--my), rgba(214,184,120,0.07), transparent 62%),
    linear-gradient(180deg, rgba(5,5,5,0.35) 0%, transparent 26%, transparent 64%, rgba(5,5,5,0.55) 100%); }
.hero-content { position: relative; z-index: 3; width: 100%; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; padding: 30px 0; }
.hero .kicker { margin-bottom: 30px; opacity: 0; animation: rise 1s var(--ease) 0.2s forwards; }
.hero .display { max-width: 12ch; margin-bottom: 32px; }
.hero .display .ln { display: block; opacity: 0; transform: translateY(30px); animation: rise 1.1s var(--ease) forwards; }
.hero .display .ln:nth-child(1) { animation-delay: 0.35s; }
.hero .display .ln:nth-child(2) { animation-delay: 0.5s; }
.hero .lead { margin-bottom: 44px; opacity: 0; animation: rise 1s var(--ease) 0.75s forwards; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: rise 1s var(--ease) 0.9s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-ticker { position: relative; z-index: 3; flex: 0 0 auto; padding-bottom: 10px; opacity: 0; animation: rise 1s var(--ease) 1.1s forwards; }
.hero-ticker .container { display: flex; gap: 56px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-ticker .ti { display: flex; flex-direction: column; gap: 2px; }
.hero-ticker .ti-v { font-weight: 700; font-size: 20px; letter-spacing: -0.02em; font-feature-settings:'tnum' 1;
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-ticker .ti-l { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; }
.scroll-cue .dot { width: 4px; height: 8px; border-radius: 3px; background: var(--gold-bright); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(6px); opacity: 1; } }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.28s; } .reveal.d4 { transition-delay: 0.38s; }
.reveal.d5 { transition-delay: 0.48s; }

/* ---------------- Manifesto ---------------- */
.manifesto { text-align: center; }
.manifesto .big { font-family: var(--font-sans); font-weight: 400; font-size: clamp(20px, 2.7vw, 34px); line-height: 1.35; letter-spacing: -0.015em; max-width: 22ch; margin: 0 auto; color: var(--white); }
.manifesto .big .dim { color: var(--muted); }

/* compare bars (parado vs plano) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 72px; max-width: 900px; margin-left: auto; margin-right: auto; text-align: left; }
.cmp { padding: 30px 32px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); }
.cmp.hot { border-color: rgba(214,184,120,0.35); background: rgba(214,184,120,0.05); }
.cmp-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cmp.hot .cmp-tag { color: var(--gold-bright); }
.cmp-val { font-weight: 700; font-size: clamp(22px, 3vw, 34px); letter-spacing: -0.02em; margin: 12px 0 16px; font-feature-settings:'tnum' 1; color: var(--graphite); }
.cmp.hot .cmp-val { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cmp-bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.06); overflow: hidden; }
.cmp-bar i { display: block; height: 100%; width: 0; border-radius: 6px; transition: width 1.4s var(--ease); }
.cmp .cmp-bar i { background: #3a3a42; }
.cmp.hot .cmp-bar i { background: var(--gradient-gold); box-shadow: 0 0 20px var(--gold-glow); }
.cmp-note { font-size: 14px; color: var(--muted); margin-top: 14px; }

/* ---------------- Metric grid (living numbers) ---------------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.metric { background: var(--bg-1); padding: 42px 34px; position: relative; transition: background 0.5s var(--ease); }
.metric:hover { background: var(--bg-2); }
.metric-v { font-weight: 700; font-size: clamp(24px, 2.7vw, 38px); letter-spacing: -0.03em; line-height: 1; font-feature-settings:'tnum' 1;
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-l { font-size: 15px; color: var(--graphite); margin-top: 14px; }
.metric-spark { margin-top: 20px; height: 30px; width: 100%; }

/* ---------------- Methodology flow ---------------- */
.flow { position: relative; }
.flow-line { position: absolute; left: 40px; top: 40px; bottom: 40px; width: 2px; z-index: 0; background: var(--line); }
.flow-line i { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--gradient-gold); box-shadow: 0 0 14px var(--gold-glow); transition: height 0.2s linear; }
.flow-steps { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 30px; }
.flow-step { display: grid; grid-template-columns: 80px 1fr; gap: 30px; align-items: start; }
.flow-node { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 32px; color: var(--gold);
  background: var(--bg-1); border: 1px solid var(--line-2); transition: all 0.5s var(--ease); }
.flow-step.in .flow-node { border-color: var(--gold); box-shadow: 0 0 0 6px rgba(214,184,120,0.08), 0 0 30px rgba(214,184,120,0.18); color: var(--gold-bright); }
.flow-card { padding: 26px 32px; border-radius: 18px; border: 1px solid var(--line); background: rgba(8,9,12,0.5); backdrop-filter: blur(6px); transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s; }
.flow-step.in .flow-card { border-color: var(--line-2); }
.flow-card h3 { margin-bottom: 8px; }
.flow-card p { color: var(--graphite); font-size: 16px; }

/* ---------------- Simulator ---------------- */
.sim { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
  padding: 48px; border-radius: 26px; border: 1px solid var(--line); position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); backdrop-filter: blur(8px); }
.sim-controls { display: flex; flex-direction: column; gap: 30px; position: relative; z-index: 2; }
.sim-field-lbl { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.sim-field-lbl span:first-child { font-size: 14px; color: var(--graphite); }
.sim-field-lbl .v { font-weight: 700; font-size: 18px; color: var(--gold-bright); font-feature-settings:'tnum' 1; }
.sim-range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 3px; background: rgba(255,255,255,0.1); outline: none; cursor: pointer; }
.sim-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gradient-gold); box-shadow: 0 0 0 5px rgba(214,184,120,0.14), 0 2px 8px rgba(0,0,0,0.6); cursor: pointer; transition: transform 0.15s var(--ease); }
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.18); }
.sim-range::-moz-range-thumb { width: 20px; height: 20px; border: none; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(214,184,120,0.14); cursor: pointer; }
.sim-viz { position: relative; z-index: 2; }
.sim-result { display: flex; align-items: flex-end; gap: 40px; margin-bottom: 20px; flex-wrap: wrap; }
.sim-total-lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 6px; }
.sim-total { font-weight: 700; font-size: clamp(26px, 3.4vw, 42px); letter-spacing: -0.03em; line-height: 1; font-feature-settings:'tnum' 1;
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sim-sub { display: flex; gap: 30px; }
.sim-sub-i .l { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.sim-sub-i .n { font-weight: 600; font-size: 20px; font-feature-settings:'tnum' 1; margin-top: 2px; }
.sim-sub-i .n.inv { color: var(--graphite); } .sim-sub-i .n.gain { color: var(--positive); }
.sim-chart { width: 100%; height: 220px; display: block; }
.sim-foot { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ---------------- Portfolio donut ---------------- */
.alloc { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.donut-wrap { position: relative; width: 340px; height: 340px; margin: 0 auto; }
.donut-wrap svg { transform: rotate(-90deg); overflow: visible; }
.donut-wrap svg circle { transition: stroke-dashoffset 1.4s var(--ease); }
.donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.donut-center .l { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.donut-center .v { font-family: var(--font-display); font-style: italic; font-size: 36px; color: var(--white); margin-top: 4px; }
.legend { display: flex; flex-direction: column; }
.leg { display: flex; align-items: center; gap: 18px; padding: 16px 4px; border-bottom: 1px solid var(--line); transition: padding-left 0.3s; }
.leg:hover { padding-left: 12px; }
.leg:last-child { border-bottom: 0; }
.leg .sw { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.leg .nm { flex: 1; font-size: 16px; color: var(--white); }
.leg .pc { font-weight: 700; font-size: 18px; color: var(--gold-bright); font-feature-settings:'tnum' 1; }

/* ---------------- Cards / grids ---------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { position: relative; z-index: 1; padding: 38px 34px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface);
  transition: transform 0.5s var(--ease), background 0.5s, border-color 0.5s; transform-style: preserve-3d; }
.card:hover { background: var(--surface-2); border-color: var(--line-2); }
.card-ico { width: 52px; height: 52px; border-radius: 13px; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: rgba(214,184,120,0.1); border: 1px solid rgba(214,184,120,0.2); }
.card-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.card h3 { margin: 10px 0 12px; }
.card p { color: var(--graphite); font-size: 16px; line-height: 1.65; }

/* steps (support pages) */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 28px; align-items: flex-start; padding: 30px 34px; border-radius: 18px; border: 1px solid var(--line); background: var(--surface); }
.step-num { flex-shrink: 0; width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--gold); border: 1px solid var(--line-2); }
.step h3 { margin-bottom: 8px; } .step p { color: var(--graphite); font-size: 16px; }

/* ---------------- Team ---------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-1); transition: border-color 0.5s, transform 0.5s var(--ease); }
.member:hover { border-color: var(--line-2); }
.member-photo { aspect-ratio: 3 / 3.4; width: 100%; object-fit: cover; object-position: center 15%; filter: grayscale(0.35) contrast(1.02); transition: transform 0.7s var(--ease), filter 0.6s; }
.member:hover .member-photo { transform: scale(1.05); filter: grayscale(0) contrast(1.05); }
.member-info { position: absolute; inset: auto 0 0 0; padding: 26px 24px 22px; background: linear-gradient(to top, rgba(5,5,5,0.96) 12%, rgba(5,5,5,0.7) 55%, transparent); }
.member-name { font-family: var(--font-sans); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; color: var(--white); }
.member-role { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); margin-top: 4px; }
.member-bio { font-size: 14px; color: var(--graphite); margin-top: 12px; line-height: 1.55; }
.member-bio b { color: var(--white); font-weight: 600; }
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-bottom: 26px; }
.founder { display: flex; gap: 26px; align-items: center; padding: 28px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); }
.founder img { width: 140px; height: 178px; object-fit: cover; object-position: center 12%; border-radius: 14px; flex-shrink: 0; border: 1px solid var(--line); filter: grayscale(0.25); }
.founder .member-name { font-size: 26px; } .founder .member-bio { font-size: 15px; }

/* pillar tilt cards (home team preview) */
.tilt { transition: transform 0.2s var(--ease-inout); will-change: transform; }

/* ---------------- Split / partner ---------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-img { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(0,0,0,0.6); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 22px; } .split-body p.body { margin-bottom: 16px; }
.partner-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.partner-inner { display: flex; align-items: center; gap: 46px; flex-wrap: wrap; justify-content: space-between; }
.partner-logo img { height: 54px; }

/* stat grid (support pages) */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 56px; }
.stat-cell { border-top: 1px solid var(--line); padding-top: 28px; }
.stat-value { font-weight: 700; font-size: clamp(26px, 3vw, 40px); line-height: 1; letter-spacing: -0.02em; font-feature-settings:'tnum' 1; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 15px; color: var(--graphite); margin-top: 12px; }

/* ---------------- Form ---------------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-card { padding: 44px; border-radius: 24px; border: 1px solid var(--line); background: var(--surface); backdrop-filter: blur(8px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--graphite); margin-bottom: 8px; }
.field label .req { color: var(--gold); }
.field input, .field select { width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--white); background: rgba(0,0,0,0.4); border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; transition: border-color 0.3s, background 0.3s; }
.field input::placeholder { color: var(--muted); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.6); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C6A96B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field select option { background: #101014; color: var(--white); }
.field textarea { width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--white); background: rgba(0,0,0,0.4); border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; min-height: 96px; line-height: 1.5; resize: vertical; transition: border-color 0.3s, background 0.3s; }
.field textarea::placeholder { color: var(--muted); }
.field textarea:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.6); }
.career-cv-hint { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-top: 14px; text-align: center; }
.career-cv-hint b { color: var(--graphite); font-weight: 600; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 22px; }
.form-consent input { margin-top: 3px; accent-color: var(--gold); width: 17px; height: 17px; flex-shrink: 0; }
.form-consent label { font-size: 12px; color: var(--muted); line-height: 1.5; }
.form-card .btn-gold { width: 100%; justify-content: center; }
.form-success { display: none; text-align: center; padding: 26px 10px; }
.form-success.show { display: block; animation: rise 0.6s var(--ease) forwards; }
.form-success .check { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-gold); color: #0A0A0C; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; }
.form-aside .trust-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.trust-item { display: flex; gap: 15px; align-items: flex-start; }
.trust-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; box-shadow: 0 0 10px var(--gold-glow); }
.trust-item b { color: var(--white); font-weight: 600; } .trust-item span { color: var(--graphite); font-size: 15px; }

/* Contato — fundo com foto + "o que acontece depois" enxuto */
.contact-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.contact-bg-shade { position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(5,5,5,0.62) 20%, rgba(5,5,5,0.64) 80%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.32) 52%, rgba(5,5,5,0.5) 100%); }
.next-steps { display: flex; flex-direction: column; gap: 24px; }
.next-item { display: flex; gap: 18px; align-items: flex-start; }
.next-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(214,184,120,0.1); border: 1px solid rgba(214,184,120,0.24); color: var(--gold-bright); }
.next-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.next-item b { display: block; color: var(--white); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 3px; }
.next-item span { display: block; color: var(--graphite); font-size: 15px; line-height: 1.5; }
.eqi-seal { display: inline-flex; align-items: center; gap: 11px; margin-top: 36px; padding: 12px 20px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); font-size: 13px; color: var(--graphite); }
.eqi-seal b { color: var(--gold-bright); font-weight: 600; }
.seal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 10px var(--gold-glow); }

/* "O que acontece depois" — stepper vertical com check no scroll */
.after-flow { position: relative; }
.after-line { position: absolute; left: 24px; top: 25px; bottom: 25px; width: 2px; background: var(--line); z-index: 0; }
.after-line i { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--gradient-gold); box-shadow: 0 0 12px var(--gold-glow); transition: height 1.9s var(--ease); }
.after-step { position: relative; z-index: 1; display: flex; gap: 20px; align-items: flex-start; padding-bottom: 30px; }
.after-step:last-child { padding-bottom: 0; }
.after-node { position: relative; flex-shrink: 0; width: 50px; height: 50px; border-radius: 15px; border: 1px solid var(--line-2); background: var(--bg-1); color: var(--graphite);
  transition: background 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s, color 0.5s; }
.after-node .after-ico, .after-node .after-check { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.after-node svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.after-node .after-check { opacity: 0; transform: scale(0.5); color: #0A0A0C; }
.after-node .after-check svg { stroke-width: 2.4; }
.after-step.done .after-node { background: var(--gradient-gold); border-color: transparent; box-shadow: 0 0 0 5px rgba(214,184,120,0.12), 0 8px 22px rgba(198,169,107,0.3); }
.after-step.done .after-ico { opacity: 0; transform: scale(0.5); }
.after-step.done .after-check { opacity: 1; transform: none; }
.after-text { padding-top: 5px; }
.after-text b { display: block; color: var(--white); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 3px; }
.after-text span { display: block; color: var(--graphite); font-size: 15px; line-height: 1.5; }

/* ---------------- CTA band ---------------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { margin-bottom: 22px; } .cta-band .lead { margin: 0 auto 32px; }
.page-hero { padding: calc(var(--nav-h) + 120px) 0 90px; position: relative; overflow: hidden; }
.page-hero .kicker, .page-hero .eyebrow { margin-bottom: 26px; }
.page-hero h1 { margin-bottom: 26px; max-width: 820px; }
.page-hero .lead { max-width: 640px; }

/* ---------------- Floating actions ---------------- */
.floats { position: fixed; right: 24px; bottom: 24px; z-index: 140; display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.floats.show { opacity: 1; transform: none; pointer-events: auto; }
.floats.at-footer { opacity: 0; transform: translateY(20px); pointer-events: none; }
.float-wa { width: 54px; height: 54px; border-radius: 50%; background: var(--gradient-gold); color: #0A0A0C; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(198,169,107,0.3); transition: transform 0.3s var(--ease); }
.float-wa:hover { transform: scale(1.08); }
.float-cta { box-shadow: 0 12px 34px rgba(0,0,0,0.5); }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--line); padding: 66px 0 34px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 290px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--graphite); font-size: 14px; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--muted); max-width: 720px; line-height: 1.6; }
.footer-legal { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 10.5px; line-height: 1.55; color: rgba(255,255,255,0.26); text-align: justify; }
.footer-legal a { color: rgba(214,184,120,0.55); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--gold-bright); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--graphite); font-size: 13px; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold-bright); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .sim, .alloc, .split, .split.reverse, .form-wrap, .founders { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-img { order: -1; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 100dvh; flex-direction: column; justify-content: center; align-items: stretch; padding-bottom: 84px; }
  .hero-content { flex: 0 0 auto; }
  .hero-ticker { position: static; margin-top: 46px; }
  .hero-ticker .container { padding: 26px 40px 0; gap: 18px 36px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); padding: 14px 40px 26px; box-shadow: 0 24px 50px rgba(0,0,0,0.6); }
  .nav.open .nav-links a { padding: 16px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a:last-child { border-bottom: 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .flow-node { width: 60px; height: 60px; font-size: 26px; }
  .flow-line { left: 30px; }
}
@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .scene { padding: 100px 0; } .scene.tight { padding: 80px 0; } .section { padding: 84px 0; }
  .grid-2, .grid-3, .team-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; }
  .founder { flex-direction: column; text-align: center; }
  .step { flex-direction: column; gap: 16px; }
  .hero-ticker { position: static; margin-top: 40px; }
  .sim { padding: 28px; }
  .donut-wrap { width: 260px; height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.2s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- setas de navegação nas fileiras horizontais de cards ---- */
.hrow { position: relative; }
.hrow-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(10,10,12,0.66); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity 0.3s var(--ease), background 0.25s, border-color 0.25s, color 0.25s; }
.hrow-nav.prev { left: -8px; }
.hrow-nav.next { right: -8px; }
.hrow-nav:hover { background: var(--gradient-gold); color: #0A0A0C; border-color: transparent; }
.hrow-nav:disabled { opacity: 0; pointer-events: none; }
.hrow-nav svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) { .hrow-nav { width: 38px; height: 38px; } .hrow-nav.prev { left: 2px; } .hrow-nav.next { right: 2px; } }
