/* ============================================================
   FnB Digital — One-page site
   Paleta: Navy #081A33 · Blue #017FB9 · Aqua #019FC3
           Off White #F6F8FA · White #FFFFFF
   Tipografia: General Sans (display) + Geist (corpo)
   Site em tom único navy/dark — sem alternância clara/escura.
   ============================================================ */

:root {
  --navy: #081A33;
  --blue: #017FB9;
  --aqua: #019FC3;
  --off-white: #F6F8FA;
  --white: #FFFFFF;

  --ink-muted-on-dark: rgba(246, 248, 250, 0.68);
  --hairline-on-dark: rgba(246, 248, 250, 0.14);

  --gradient-fnb: linear-gradient(90deg, #081A33 0%, #017FB9 50%, #019FC3 100%);
  /* "Negativo" do gradiente oficial — troca o stop Navy por White para
     permanecer legível quando usado como texto/traço sobre fundo navy. */
  --gradient-fnb-ondark: linear-gradient(90deg, #FFFFFF 0%, #017FB9 50%, #019FC3 100%);
  --gradient-fnb-navyblue: linear-gradient(90deg, #081A33 0%, #017FB9 50%, #081A33 100%);

  --font-display: 'General Sans', 'Arial', sans-serif;
  --font-body: 'Geist', 'Arial', sans-serif;
  --font-mono: 'Geist Mono', 'Consolas', monospace;

  --wrap-max: 1120px;
  --wrap-pad: clamp(24px, 5vw, 64px);

  --space-section: clamp(48px, 6vw, 88px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink-muted-on-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}

section[id] { scroll-margin-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 20px;
}
.eyebrow--plain {
  font-family: var(--font-display);
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 18ch;
}

.grad-text {
  background: var(--gradient-fnb-ondark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-headline .grad-text {
  background: var(--gradient-fnb-navyblue);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 3px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background-color 0.25s var(--ease);
}

.btn-primary {
  background: var(--gradient-fnb);
  background-size: 160% 100%;
  background-position: 0% 0%;
  color: var(--white);
}
.btn-primary:hover { background-position: 100% 0%; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-header {
  padding: 11px 22px;
  font-size: 14px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease), transform 0.25s var(--ease);
}
.btn-header:hover { transform: translateY(-1px); }
.site-header.is-scrolled .btn-header { background: var(--aqua); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background-color 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8, 26, 51, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--hairline-on-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; }
.brand-mark {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}
.site-header.is-scrolled .brand-mark { width: 34px; height: 34px; }

.site-nav {
  display: flex;
  gap: 36px;
  margin: 0 auto;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.72;
  transition: opacity 0.25s var(--ease);
}
.site-nav a:hover { opacity: 1; }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

main { position: relative; }

/* ============================================================
   Ambient washes — a continuidade entre seções vem do gradiente
   da marca respirando pela página (glows entrando/saindo em cantos
   opostos, de seção pra seção), não de uma linha estrutural.
   ============================================================ */
.hero, .tese, .servicos, .autoridade, .performance, .faq, .cta-final {
  position: relative;
  background: var(--navy);
  color: var(--white);
}
.hero::before, .tese::before, .servicos::before, .performance::before, .faq::before, .cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero::before, .cta-final::before {
  background:
    radial-gradient(ellipse 65% 55% at 82% 8%, rgba(1, 159, 195, 0.26), transparent 62%),
    radial-gradient(ellipse 55% 45% at 12% 92%, rgba(1, 127, 185, 0.20), transparent 62%);
}
.tese::before {
  background:
    radial-gradient(ellipse 65% 55% at 6% 0%, rgba(1, 127, 185, 0.20), transparent 60%),
    radial-gradient(ellipse 60% 50% at 96% 100%, rgba(1, 159, 195, 0.17), transparent 60%);
}
.servicos::before {
  background:
    radial-gradient(ellipse 60% 55% at 100% 4%, rgba(1, 159, 195, 0.18), transparent 60%),
    radial-gradient(ellipse 55% 48% at 2% 96%, rgba(1, 127, 185, 0.15), transparent 60%);
}
/* Autoridade fica deliberadamente sem glow — muito espaço negativo,
   peça editorial quieta. Performance retoma o respiro ambiente
   (mais "dados/energia") para marcar a virada de assunto. */
.performance::before {
  background:
    radial-gradient(ellipse 55% 45% at 96% 0%, rgba(1, 159, 195, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 42% at 4% 100%, rgba(1, 127, 185, 0.12), transparent 58%);
}
.faq::before {
  background:
    radial-gradient(ellipse 60% 50% at 96% 4%, rgba(1, 159, 195, 0.17), transparent 60%),
    radial-gradient(ellipse 55% 45% at 4% 98%, rgba(1, 127, 185, 0.14), transparent 60%);
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(88px, 11vh, 120px);
  padding-bottom: clamp(64px, 9vh, 96px);
}
/* Foto como camada de atmosfera atrás da tipografia — nunca o conceito
   central. Duotone pesado com o gradiente oficial via mix-blend-mode,
   para parecer tratamento gráfico da marca, não uma foto solta com filtro.
   Compartilhada entre Hero e CTA final. */
.bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(1) contrast(1.15) brightness(0.85);
}
.bg-photo-duotone {
  position: absolute;
  inset: 0;
  background: var(--gradient-fnb);
  mix-blend-mode: color;
}
.bg-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.30) 0%, rgba(8, 26, 51, 0.55) 55%, var(--navy) 100%);
}

/* Vídeo de fundo do hero — substitui a foto estática + Ken Burns.
   Overlay simples com o gradiente oficial da marca, sem duotone. */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-fnb);
  opacity: 0.4;
}
/* Sem isso o vídeo termina em corte reto exatamente onde a próxima
   seção começa em navy sólido — volta o degradê de transição que
   o resto do site já usa entre foto e seção seguinte. */
.hero-video-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0) 55%, var(--navy) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content { max-width: 720px; }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-signature {
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-muted-on-dark);
  max-width: 42ch;
}
.hero-actions { margin-top: 30px; }

.scroll-cue {
  position: absolute;
  right: var(--wrap-pad);
  bottom: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--aqua), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--white);
  animation: cue-drip 2.6s var(--ease) infinite;
}
@keyframes cue-drip {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
.scroll-cue-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted-on-dark);
  writing-mode: vertical-rl;
}
@media (max-width: 640px) {
  .scroll-cue { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line::after { animation: none; top: 0; }
}

/* ============================================================
   2. ESTRATÉGIA — cards, não grade de linhas
   ============================================================ */
.tese {
  padding: var(--space-section) 0;
}
.tese-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(48px, 7vw, 88px);
}
.tese-header-text { flex: 1 1 480px; }
.tese .section-headline { margin-top: 4px; margin-bottom: 0; max-width: none; }
.tese-mockup {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  height: auto;
  align-self: center;
}

@media (max-width: 860px) {
  .tese-mockup { display: none; }
}

.tese-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tese-item {
  position: relative;
  padding: 30px 26px 28px;
  background: linear-gradient(165deg, rgba(1, 127, 185, 0.16), rgba(1, 159, 195, 0.04));
  border: 1px solid rgba(1, 159, 195, 0.3);
  border-radius: 14px;
  box-shadow:
    0 28px 50px -26px rgba(1, 127, 185, 0.6),
    0 0 44px -8px rgba(1, 159, 195, 0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tese-item:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 159, 195, 0.55);
  box-shadow:
    0 36px 64px -22px rgba(1, 159, 195, 0.7),
    0 0 60px -6px rgba(1, 159, 195, 0.55);
}

.tese-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  background: var(--gradient-fnb-ondark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.tese-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.tese-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted-on-dark);
}

@media (max-width: 980px) {
  .tese-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tese-list { grid-template-columns: 1fr; }
}

/* ============================================================
   3. SERVIÇOS — lista editorial, não cards, sem contagem fechada
   ============================================================ */
.servicos {
  padding: var(--space-section) 0;
}
.servicos-list { margin-top: 8px; }

.servico-item {
  position: relative;
  border-top: 1px solid var(--hairline-on-dark);
  overflow: hidden;
}
.servico-item:last-child { border-bottom: 1px solid var(--hairline-on-dark); }

/* Ícones com sentido: plataformas de anúncio pra Tráfego Pago,
   uma janelinha de site pra Sites e Landing Pages — em vez da marca
   abstrata anterior, que ficava bonita mas não dizia nada. Aparecem
   em sequência (motion leve) quando a seção entra na tela. */
.servico-icons {
  position: absolute;
  right: clamp(0px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 0;
  pointer-events: none;
}
.servico-icon-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 4.6vw, 52px);
  height: clamp(42px, 4.6vw, 52px);
  background: linear-gradient(160deg, rgba(1, 127, 185, 0.18), rgba(1, 159, 195, 0.05));
  border: 1px solid rgba(1, 159, 195, 0.28);
  border-radius: 11px;
  box-shadow: 0 16px 30px -16px rgba(1, 127, 185, 0.6), 0 0 26px -6px rgba(1, 159, 195, 0.4);
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.servico-icon-chip svg { width: 42%; height: 42%; fill: currentColor; color: currentColor; }

.servico-item.is-visible .servico-icon-chip { opacity: 0.95; transform: translateY(0); }
.servico-icon-chip:nth-child(1) { transition-delay: 0.05s; }
.servico-icon-chip:nth-child(2) { transition-delay: 0.16s; }
.servico-icon-chip:nth-child(3) { transition-delay: 0.27s; }
.servico-icon-chip:nth-child(4) { transition-delay: 0.38s; }

.servico-icon-chip--site {
  width: clamp(96px, 11vw, 128px);
  height: clamp(64px, 7.4vw, 86px);
  padding: 0;
  background: none;
  border: none;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(1, 127, 185, 0.55), 0 0 34px -6px rgba(1, 159, 195, 0.5);
}
.servico-icon-chip--site svg { width: 100%; height: 100%; }

.servico-icon-chip--gauge {
  width: clamp(96px, 11vw, 128px);
  height: clamp(64px, 7.4vw, 86px);
  padding: 0;
  background: none;
  border: none;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(1, 127, 185, 0.55), 0 0 34px -6px rgba(1, 159, 195, 0.5);
}
.servico-icon-chip--gauge img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 760px) {
  .servico-icons { position: static; transform: none; margin-bottom: 20px; }
  .servico-item.is-visible .servico-icon-chip { transform: none; }
}

.servico-row {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: clamp(36px, 5vw, 56px) 0;
  transition: transform 0.4s var(--ease);
}
.servico-item:hover .servico-row { transform: translateX(6px); }

.servico-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--white);
  margin-bottom: 14px;
}
.servico-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted-on-dark);
  max-width: 60ch;
}

.servicos-closing {
  margin-top: clamp(56px, 7vw, 96px);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--white);
  max-width: 62ch;
}

/* ============================================================
   4. AUTORIDADE — peça editorial única. Sem cards, sem caixas,
   sem sombra, sem borda arredondada. A foto-colagem é um arquivo
   único fornecido pela cliente (marcas já embutidas na imagem).
   ============================================================ */
.autoridade {
  min-height: clamp(680px, 86vh, 960px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vh, 88px) 0;
}
.autoridade-canvas {
  position: relative;
  width: 100%;
}
.autoridade-headline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 760px;
  margin: 0 0 -38px;
}
/* Uma linha à esquerda, a outra à direita — dá o mesmo ar de
   colagem/composição assimétrica que a foto ao lado. Fundo
   transparente — a linha direita passa por cima da foto sem placa. */
.autoridade-headline-line { display: block; }
.autoridade-headline-line--right { align-self: flex-end; }
.autoridade-headline-accent { color: var(--aqua); }

.autoridade-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.autoridade-text {
  flex: 0 1 200px;
  min-width: 150px;
  max-width: 200px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--white);
}
.autoridade-text em {
  font-style: normal;
  font-weight: 600;
  color: inherit;
}

.autoridade-collage-photo {
  flex: 0 0 auto;
  width: auto;
  height: clamp(380px, min(58vh, 34vw), 560px);
  aspect-ratio: 3 / 4;
}

.autoridade-figure {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.autoridade-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(70px, 7vw, 108px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  background: var(--gradient-fnb-ondark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.autoridade-number-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  max-width: 190px;
}

@media (max-width: 900px) {
  .autoridade { min-height: 0; padding: var(--space-section) 0; }
  .autoridade-headline { margin-bottom: clamp(28px, 6vw, 48px); }
  .autoridade-headline-line--right { align-self: flex-start; }
  .autoridade-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .autoridade-text { max-width: none; min-width: 0; }
  .autoridade-collage-photo { flex: 0 0 auto; width: 70%; height: auto; max-width: none; max-height: none; align-self: center; }
}

/* ============================================================
   4b. PERFORMANCE — mais limpa e estruturada que a Autoridade,
   de propósito. Dois grandes dados, fluxo simples, argumento claro.
   ============================================================ */
.performance {
  min-height: clamp(680px, 74vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.8vh, 36px) 0;
}
.performance > .wrap { width: 100%; }

.performance-headline {
  max-width: 26ch;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.performance-benchmarks {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.performance-benchmark {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 1 42%;
}
.performance-benchmark--right { align-items: flex-start; }
.performance-benchmark-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.performance-benchmark-label {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-muted-on-dark);
  max-width: 30ch;
}
.performance-benchmark-source {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-muted-on-dark);
  opacity: 0.65;
  max-width: 262px;
}

.performance-argument { max-width: 60ch; }
.performance-argument p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted-on-dark);
  margin: 0;
}

@media (max-width: 700px) {
  .performance { min-height: 0; }
  .performance-benchmarks { flex-direction: column; gap: 32px; }
  .performance-benchmark { flex: none; }
}

/* ============================================================
   5. FAQ
   ============================================================ */
.faq {
  padding: var(--space-section) 0;
}
.faq-list { max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--hairline-on-dark);
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline-on-dark); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 0 0 30px;
  max-width: 68ch;
}
.faq-answer p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-muted-on-dark);
}

/* ============================================================
   6. CTA FINAL
   ============================================================ */
.cta-final { padding: var(--space-section) 0; }
.cta-final .bg-photo-img { object-position: center 40%; }
/* Ao contrário do hero (primeira seção, nada acima pra combinar),
   o CTA final vem logo depois do FAQ, que é navy chapado — por isso
   aqui a foto precisa ficar quase invisível no topo (encostando no
   FAQ) e só aparecer mais conforme desce, em vez de já entrar forte. */
.cta-final .bg-photo-fade {
  background: linear-gradient(
    180deg,
    var(--navy) 0%,
    rgba(8, 26, 51, 0.55) 24%,
    rgba(8, 26, 51, 0.22) 58%,
    rgba(8, 26, 51, 0.5) 100%
  );
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  letter-spacing: -0.01em;
}
.cta-final p {
  align-self: stretch;
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-muted-on-dark);
}
.cta-final .btn { margin-top: 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid var(--hairline-on-dark);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-mark { width: 22px; height: 22px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-inner p {
  font-size: 13px;
  color: var(--ink-muted-on-dark);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
