/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #000000;
  --bg-soft: #000000;
  --card: rgba(255,255,255,0.035);
  --card-hover: rgba(255,255,255,0.065);
  --border: rgba(255,255,255,0.09);
  --border-gold: rgba(212,164,79,0.45);
  --text: #f6f4ef;
  --text-muted: #9c9890;
  --text-faint: #666359;

  --gold-100: #f4dfa8;
  --gold-300: #e8c274;
  --gold-500: #d4a24f;
  --gold-700: #a9772c;
  --gold-glow: rgba(212,164,79,0.35);
  --gold-gradient: linear-gradient(135deg, #f2d495 0%, #d4a24f 48%, #a9772c 100%);

  --container: 1160px;
  --ease: cubic-bezier(.16,.8,.24,1);

  --font-display: 'Space Mono', ui-monospace, monospace;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4,
.brand-word, .hero-title, .section-title, .cta-title,
.impact-col h3, .timeline-step h3, .person h3, .card h3, .step-num {
  font-family: var(--font-display);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 22px; height: 22px; }

/* ===== Preloader ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
#preloader-particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.preloader-logo {
  position: relative;
  width: 92px; height: 92px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.1s var(--ease), filter 1.1s var(--ease);
}
.preloader-logo.show { opacity: 1; filter: blur(0); }
#preloader.hide {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
body.no-scroll { overflow: hidden; height: 100vh; }

/* subtle film grain, keeps the black from looking flat/digital */
/* Texto real, só invisível visualmente — lido por buscadores e leitores de
   tela. Usado pra enriquecer H1/H2 com contexto sem alterar o design. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ===== Cursor customizado (só desktop com mouse de verdade) ===== */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border: 1px solid rgba(212,164,79,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-50%,-50%,0);
  transition: width .25s var(--ease), height .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
  opacity: 0;
}
.cursor-ring.show { opacity: 1; }
.cursor-ring.active {
  width: 48px; height: 48px;
  background: rgba(212,164,79,0.1);
  border-color: rgba(212,164,79,0.85);
}
@media (pointer: coarse) {
  .cursor-ring { display: none; }
}

/* ===== Botões magnéticos: deslocam sutilmente na direção do cursor ===== */
[data-magnetic] {
  display: inline-block;
  transition: transform .25s var(--ease);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-size: clamp(26px, 3.3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 640px;
}

.body-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-top: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* CTA dourado: fundo escuro + borda com luz que percorre sozinha, sempre +
   glow vazando por baixo sempre visível — mesma família de efeito do
   novatechig.com.br, adaptada pra nossa paleta preto/dourado. */
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.btn-gold {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--text);
  border: 1px solid transparent;
  background:
    linear-gradient(#120e08, #120e08) padding-box,
    conic-gradient(from var(--gradient-angle), transparent, var(--gold-500) 15%, var(--gold-100) 25%, var(--gold-500) 35%, transparent 50%) border-box;
  animation: btn-gradient-angle 3s linear infinite;
  transition: transform .35s var(--ease);
}
.btn-gold:hover, .btn-gold:focus-visible {
  transform: translateY(-2px);
}
.btn-gold:active { transform: translateY(1px); }
@keyframes btn-gradient-angle { to { --gradient-angle: 360deg; } }

.btn-gold::before {
  content: '';
  position: absolute;
  inset-inline-start: 50%; inset-block-start: 50%;
  translate: -50% -50%;
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--gold-500), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, #000);
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 40%, #000);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.btn-gold:hover::before { opacity: 0.9; }

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.4) 0.6px, transparent 0);
  background-size: 6px 6px;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), #000, transparent 12% 88%, #000);
  -webkit-mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), #000, transparent 12% 88%, #000);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-gold { animation: none; }
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover {
  border-color: var(--border-gold);
  background: rgba(212,164,79,0.06);
}

.btn-small { padding: 10px 20px; font-size: 13.5px; }
.btn-large { padding: 17px 34px; font-size: 15.5px; }

/* ===== Header: full-width, colado no topo, com onda de partículas no fundo ===== */
/* O fundo com blur mora num ::before (não no .header em si) de propósito:
   backdrop-filter num ancestral vira o "containing block" de qualquer
   descendente position:fixed (spec CSS) — e o painel do menu mobile é
   fixed. Com o blur direto no .header, o menu ficava preso dentro da
   altura do próprio header (~70px) em vez de cobrir a tela inteira. */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .4s var(--ease);
  pointer-events: none;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.6);
}
.header.scrolled::before {
  background: rgba(0,0,0,0.82);
}
.header-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.header::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,194,116,0.3), transparent);
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 1;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: padding .4s var(--ease);
}
.header.scrolled .header-inner { padding: 13px 28px; }
.brand { display: flex; align-items: center; gap: 10px; justify-self: start; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; }
.brand-word {
  font-size: 18px; font-weight: 700; letter-spacing: 0; color: var(--text);
}

.nav { display: flex; gap: 34px; justify-self: center; }

.header-actions { display: flex; align-items: center; gap: 14px; justify-self: end; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold-gradient); transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  position: relative; z-index: 101;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.55;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(212,164,79,0.14) 0%, rgba(212,164,79,0) 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-inner .eyebrow { text-align: center; }

.hero-title {
  font-size: clamp(34px, 5.6vw, 66px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 980px;
}

/* cada linha entra deslizando de dentro de uma máscara (efeito "cortina") */
.hero-title .line-mask { display: block; overflow: hidden; padding-bottom: 0.05em; margin-bottom: -0.05em; }
.hero-title .line-inner {
  display: block;
  transform: translateY(112%);
  transition: transform 1s var(--ease);
}
.hero-title .line-mask.in-view .line-inner { transform: translateY(0); }

.hero-title .strike { position: relative; }
.hero-title .strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 54%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transform: translateY(-50%) rotate(-2deg);
  box-shadow: 0 0 14px var(--gold-glow);
}

.hero-sub {
  margin-top: 26px;
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* .scroll-hint só centraliza (via transform) — a classe .reveal (que também
   mexe em transform) fica no .scroll-hint-inner pra não entrar em conflito */
.scroll-hint {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-dot {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold-300), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute; top: -34px; left: 0; width: 100%; height: 34px;
  background: linear-gradient(var(--gold-100), transparent);
  animation: scrollFall 2.2s ease-in-out infinite;
}
@keyframes scrollFall {
  0% { transform: translateY(0); }
  100% { transform: translateY(68px); }
}

/* ===== Marquee ===== */
.marquee-section {
  position: relative;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-fade {
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}
.marquee-group span:not(.marquee-sep) {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-sep { color: var(--gold-300); font-size: 13px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== Sections ===== */
.section { padding: 130px 0; }
.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid { display: grid; gap: 22px; margin-top: 56px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
}

/* borda que acende seguindo o cursor, em vez de acender toda de uma vez */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(160px circle at var(--mx, 50%) var(--my, 50%), var(--gold-300), transparent 72%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,164,79,0.08);
  color: var(--gold-300);
  margin-bottom: 22px;
}
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0; }
.card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

/* ===== Impact ===== */
.impact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  align-items: center;
}
/* card único com feixe de luz girando sozinho ao redor da borda inteira,
   sem depender de hover — só um retângulo maior (300% da largura do card)
   girando atrás, cortado pelo overflow:hidden do card em si */
.impact-card {
  position: relative;
  border-radius: 18px;
  padding: 1.5px;
  overflow: hidden;
}
.impact-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 300%;
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 268deg,
    rgba(232,194,116,0.8) 312deg,
    rgba(244,223,168,1) 328deg,
    rgba(232,194,116,0.8) 344deg,
    transparent 360deg
  );
  animation: impact-spin 10s linear infinite;
}
@keyframes impact-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.impact-card-inner {
  position: relative;
  display: flex;
  background: var(--bg-soft);
  border-radius: 16.5px;
  overflow: hidden;
}
.impact-col {
  flex: 1 1 auto;
  min-width: 0;
  padding: 32px 18px;
  border-right: 1px solid var(--border);
}
.impact-col:last-child { border-right: none; }
.impact-col-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; min-width: 0; }
.impact-col-head h3 { min-width: 0; }
.impact-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,164,79,0.1);
  color: var(--gold-300);
}
.impact-icon svg { width: 17px; height: 17px; }
.impact-col h3 { font-size: 15.5px; font-weight: 700; }
.impact-col p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

@media (prefers-reduced-motion: reduce) {
  .impact-card::before { animation: none; }
}

/* ===== Timeline (Processo): pin + scroll horizontal ===== */
.timeline-section { padding-bottom: 0; }

.timeline-pin-wrap {
  position: relative;
}
.timeline-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  overflow: hidden;
}

.timeline-heading { text-align: center; }
.timeline-heading .eyebrow { display: flex; justify-content: center; }
.timeline-heading .section-title { max-width: 620px; margin: 0 auto; }

.timeline-track-wrap { width: 100%; overflow: hidden; }
.timeline-track {
  display: flex;
  gap: 26px;
  width: max-content;
  will-change: transform;
}

.timeline-step {
  position: relative;
  flex: 0 0 min(78vw, 380px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 34px;
  opacity: 0.4;
  transform: scale(0.96);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.timeline-step.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--border-gold);
  box-shadow: 0 0 46px -14px var(--gold-glow);
}
.timeline-step .step-num {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.timeline-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.timeline-step p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; max-width: 280px; }

.timeline-progress {
  width: min(100%, 360px);
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 48px;
}
.timeline-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
}

/* fallback mobile/reduced-motion: sem pin, vira faixa de swipe horizontal nativa */
.timeline-pin-wrap.native-scroll { height: auto !important; }
.timeline-pin-wrap.native-scroll .timeline-sticky { position: static; height: auto; }
.timeline-pin-wrap.native-scroll .timeline-track-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 24px 20px;
  -webkit-overflow-scrolling: touch;
}
.timeline-pin-wrap.native-scroll .timeline-track { transform: none !important; padding: 0 !important; }
.timeline-pin-wrap.native-scroll .timeline-step {
  opacity: 1;
  transform: none;
  scroll-snap-align: center;
  flex-basis: min(78vw, 340px);
}
.timeline-pin-wrap.native-scroll .timeline-progress { display: none; }

/* ===== About =====
   O grid pontilhado e o glow cobrem a seção inteira (não só a coluna do
   círculo) e se diluem gradualmente pras bordas — sem isso, mesmo sem
   borda visível, a área onde o grid "corta" ainda parecia um quadrado. */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.about-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
  /* fade horizontal (sem problema de proporção do radial em containers
     bem mais largos que altos, que cortava reto no topo/base) */
  mask-image: linear-gradient(to left, black 38%, transparent 88%);
  -webkit-mask-image: linear-gradient(to left, black 38%, transparent 88%);
  pointer-events: none;
  z-index: 0;
}
.about-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 240px at 78% 50%, rgba(212,164,79,0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about-text { position: relative; z-index: 1; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 30px;
  font-size: 14.5px; font-weight: 600;
  color: var(--gold-300);
}
.link-arrow .arrow { transition: transform .3s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

.about-visual {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}
.about-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.about-logo { width: 44%; position: relative; z-index: 1; }

/* ===== Team ===== */
.person { text-align: center; }
.person-avatar {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  color: var(--gold-100);
  background: var(--bg-soft);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 30px -8px var(--gold-glow) inset;
}
.person-avatar--photo { overflow: hidden; }
.person-avatar--photo img {
  width: 140%; height: 140%;
  object-fit: cover;
  object-position: 50% 10%;
}
.person h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.person-role { font-size: 13.5px; color: var(--text-muted); }

/* ===== CTA final ===== */
.cta-final {
  position: relative;
  padding: 150px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,164,79,0.16) 0%, rgba(212,164,79,0) 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 640px;
}
.cta-sub {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 440px;
  line-height: 1.7;
}
.cta-inner .btn { margin-top: 38px; }

/* ===== Footer ===== */
.footer { padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand .brand-mark { width: 42px; height: 42px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-title {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--text-muted); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--gold-300); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  /* o .nav vira position:fixed (some do fluxo), então a coluna do meio do
     grid desktop fica vazia e empurra o resto pro centro — em mobile o
     header só precisa de logo à esquerda e ações à direita */
  .header-inner { display: flex; justify-content: space-between; }

  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px);
    background: rgba(10,9,8,0.72);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 44px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 100;
  }
  .nav.nav-open { transform: translateX(0); }
  .nav a { font-size: 20px; color: var(--text); }
  .nav-toggle { display: flex; }
  .header-inner .btn-small { display: none; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }

  .impact-grid, .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .about-grid::before { mask-image: linear-gradient(to top, black 38%, transparent 88%); -webkit-mask-image: linear-gradient(to top, black 38%, transparent 88%); }
  .about-grid::after { background: radial-gradient(circle 200px at 50% 80%, rgba(212,164,79,0.16), transparent 70%); }

  .impact-card-inner { flex-direction: column; }
  .impact-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .impact-col:last-child { border-bottom: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .header-inner, .header.scrolled .header-inner { padding: 14px 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; }
  .section { padding: 90px 0; }
}

/* ===== Telas baixas (celular em paisagem, janelas curtas) =====
   .hero e .timeline-sticky são pensados pra 100vh de altura "normal"
   (retrato). Em paisagem de celular essa altura despenca (~350-430px) e o
   conteúdo (título+subtítulo+botões / heading+card+barra de progresso) não
   cabe mais — como ambos têm overflow:hidden, o excesso simplesmente
   some cortado em vez de aparecer. Aqui a gente enxuga os espaçamentos
   verticais pra tudo voltar a caber dentro da tela. */
@media (max-height: 500px) {
  .hero {
    padding: 54px 0 14px;
  }
  .hero-title { font-size: clamp(22px, 4.4vw, 34px); line-height: 1.1; }
  .hero-sub { margin-top: 8px; font-size: 14px; }
  .hero-actions { margin-top: 10px; }
  .hero-actions .btn { padding: 10px 20px; }
  .scroll-hint { display: none; }

  .timeline-sticky { gap: 18px; }
  .timeline-heading .eyebrow { margin-bottom: 6px; }
  .timeline-heading .section-title { font-size: clamp(20px, 4vw, 28px); }
  .timeline-step { padding: 20px 24px; }
  .timeline-step .step-num { margin-bottom: 8px; }
  .timeline-step h3 { margin-bottom: 6px; }
  .timeline-progress { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title .line-inner { transform: none; transition: none; }
  .scroll-dot::after { animation: none; }
  #preloader { display: none; }
  .cursor-ring { display: none; }
}
