/* ==================================================
   ALAVANK CAPITAL
   Design: escuro sóbrio, dourado em traço fino,
   tipografia serifada (Playfair) + DM Sans.
   Mobile first.
   ================================================== */

:root {
  --bg: #0a0a0b;
  --bg-soft: #101012;
  --bg-card: #131316;
  --gold: #c9a84c;
  --gold-light: #e0c37a;
  --gold-soft: rgba(201, 168, 76, 0.1);
  --line: rgba(201, 168, 76, 0.18);
  --line-faint: rgba(201, 168, 76, 0.09);
  --text: #eae6dd;
  --text-muted: #9b968a;
  --wa: #25d366;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Âncoras não somem atrás da nav fixa */
[id] { scroll-margin-top: 90px; }

/* Foco de teclado visível em todos os interativos */
a:focus-visible,
button:focus-visible,
.fi:focus-visible,
.faq-q:focus-visible,
.nav a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Conteúdo visível se o JS não rodar */
.no-js .reveal { opacity: 1; transform: none; }

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* Utilitário para leitores de tela */
.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;
}

/* Campo honeypot anti-spam (oculto para humanos) */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
em { font-style: italic; color: var(--gold); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Tipografia base ---------- */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(26px, 6.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 640px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
}
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
section { padding: 42px 0; }

/* ---------- Botões ---------- */
.btn-primary, .btn-ghost, .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 26px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #0c0b08;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Nav ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 66px;
  padding: 0 22px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-faint);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg { height: 30px; width: auto; flex-shrink: 0; }
.nav-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-left: 2px;
}
.nav-links { display: none; list-style: none; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #141416;
  border: 1px solid var(--line);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
}
.nav-links li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text) !important;
}
.nav-dropdown-item:hover { background: var(--gold-soft); color: var(--gold-light) !important; }
.nav-dropdown-item svg { color: var(--gold); flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  display: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 10px 18px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: #0c0b08; }

/* hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}
.nav-hamburger span { display: block; height: 1px; background: var(--gold); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 66px 0 0 0;
  z-index: 190;
  background: rgba(10, 10, 11, 0.98);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-inner { padding: 34px 26px 60px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-faint);
}
.nav-mobile-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 26px 0 8px;
}
.nav-mobile-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line-faint);
}
.nav-mobile-sub svg { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 30px;
  background: var(--gold);
  color: #0c0b08;
  text-align: center;
  padding: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Hero (home, centrado) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 108px 22px 84px;
  overflow: hidden;
}
.hero-bg-line {
  position: absolute;
  left: 0; right: 0;
  top: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-bg-circle, .hero-bg-circle2 {
  position: absolute;
  border: 1px solid var(--line-faint);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle { width: 560px; height: 560px; top: 8%; left: 50%; transform: translateX(-50%); }
.hero-bg-circle2 { width: 380px; height: 380px; top: 18%; left: 50%; transform: translateX(-50%); border-color: var(--line); opacity: 0.6; }
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: min(72vw, 540px);
  opacity: 0.055;
  pointer-events: none;
}
.hero-watermark svg { width: 100%; height: auto; display: block; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(34px, 9vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-sub {
  position: relative;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}
.hero-scroll:hover { color: var(--gold-light); }
.hero-scroll svg { animation: heroBob 2s ease-in-out infinite; }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }
@keyframes heroBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------- Hero split (segmentos) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 22px 36px;
  align-items: center;
  min-height: auto;
}
.hero-left .hero-eyebrow { margin-bottom: 20px; }
.hero-left .hero-title { font-size: clamp(32px, 8.4vw, 56px); text-align: left; margin-bottom: 20px; }
.hero-left .hero-sub { text-align: left; margin-bottom: 32px; }
.hero-left .hero-actions { max-width: none; }
.hero-right { order: -1; }

/* ===== PremiumAssetIllustration (família de ilustrações) ===== */
.pai { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pai-svg {
  width: 100%; height: auto; max-height: 300px; display: block; overflow: visible;
  transition: filter 0.4s ease;
}
.pai:hover .pai-svg { filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.18)); }
.pai-grid { transition: transform 0.35s ease-out; will-change: transform; }
.pai-context { transition: opacity 0.5s ease; }
.pai-stage { transition: transform 0.45s ease; }
.pai-art { transition: opacity 0.5s ease; }
.pai-art:not(.active) { display: none; }
/* faróis acendem no hover */
.pai-lamp { transition: fill-opacity 0.3s ease, filter 0.3s ease; }
.pai:hover .pai-lamp { fill-opacity: 0.95; filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.75)); }
/* deslocamento discreto do veículo no hover (só em ponteiro fino) */
@media (hover: hover) and (pointer: fine) {
  .pai:hover .pai-stage { transform: translate(3px, -2px); }
}
/* náutico: leve balanço lento */
@keyframes paiBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.pai[data-category="nautical"] .pai-art.active { animation: paiBob 5.5s ease-in-out infinite; }
.pai-detail { opacity: 0.8; transition: opacity 0.45s ease; }
.pai:hover .pai-detail { opacity: 1; }
.pai-body { transition: stroke 0.3s ease; }

/* abas de variante (discretas) */
.pai-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pai-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--text-muted); background: none;
  border: 1px solid var(--line-faint);
  padding: 7px 15px; border-radius: 999px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pai-tab:hover { color: var(--gold-light); border-color: var(--line); }
.pai-tab.active { color: #0c0b08; background: var(--gold); border-color: var(--gold); }

/* draw-in: linhas escondidas até o JS desenhá-las */
.pai.pai-draw .pai-art.active :is(path, line, polyline, circle, rect, ellipse) { opacity: 0; }
/* sem JS, mostra tudo normalmente (progressive enhancement) */
.no-js .pai.pai-draw .pai-art.active :is(path, line, polyline, circle, rect, ellipse) { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .pai-grid, .pai-svg { transition: none; transform: none !important; }
  .pai:hover .pai-svg { filter: none; }
  .pai.pai-draw .pai-art.active :is(path, line, polyline, circle, rect, ellipse) { opacity: 1 !important; }
  .pai[data-category="nautical"] .pai-art.active { animation: none; }
  .pai-stage { transition: none; }
  .pai:hover .pai-stage { transform: none; }
}
.hero-stat-row {
  display: flex;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ---------- Números (home) ---------- */
.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-faint);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.number-item {
  background: var(--bg);
  padding: 24px 16px;
  text-align: center;
}
.number-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 8px;
}
.number-label { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ---------- Segmentos (home) ---------- */
.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}
.segment-card {
  position: relative;
  display: block;
  border: 1px solid var(--line-faint);
  background: var(--bg-soft);
  padding: 24px 22px;
  transition: all 0.3s ease;
}
.segment-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.segment-icon {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 18px;
}
.segment-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.segment-desc { color: var(--text-muted); font-size: 13.5px; margin-bottom: 16px; }
.segment-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 5px 12px;
}
.segment-arrow {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}
.segment-card:hover .segment-arrow { opacity: 1; }

/* ---------- Why (numerados) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}
.why-card {
  border: 1px solid var(--line-faint);
  background: var(--bg-soft);
  padding: 24px 22px;
}
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 14px;
}
.why-number::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-top: 10px;
  opacity: 0.5;
}
.why-title { font-family: 'Playfair Display', serif; font-size: 19px; margin-bottom: 8px; }
.why-text { color: var(--text-muted); font-size: 13.5px; }

/* ---------- Finalidades (segmentos) ---------- */
.fin-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.fin-card {
  border: 1px solid var(--line-faint);
  background: var(--bg-soft);
  padding: 24px 22px;
  transition: border-color 0.3s;
}
.fin-card:hover { border-color: var(--line); }
.fin-visual { margin-bottom: 20px; color: var(--gold); }
.fin-num { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--gold); margin-bottom: 10px; }
.fin-title { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.fin-desc { color: var(--text-muted); font-size: 13.5px; }

/* ---------- Mod cards (detalhes da carta) ---------- */
.mod-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.mod-card {
  border: 1px solid var(--line-faint);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.mod-card:hover { border-color: var(--line); }
.mod-visual { border-bottom: 1px solid var(--line-faint); background: rgba(201, 168, 76, 0.02); }
.mod-visual svg { display: block; width: 100%; height: auto; }
.mod-body { padding: 22px; }
.mod-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.mod-title { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.mod-desc { color: var(--text-muted); font-size: 13.5px; margin-bottom: 16px; }
.mod-items { list-style: none; display: grid; gap: 8px; }
.mod-item { font-size: 13px; color: var(--text-muted); display: flex; gap: 9px; align-items: baseline; }
.mod-item::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; }

/* nota sob tabelas */
.table-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; font-style: italic; }

/* ---------- Vantagem (quote + itens) ---------- */
.vantagem { background: var(--bg-soft); border-top: 1px solid var(--line-faint); border-bottom: 1px solid var(--line-faint); }
.vantagem-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.vantagem-quote, .about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(21px, 4.6vw, 30px);
  line-height: 1.4;
  color: var(--text);
  margin: 18px 0 22px;
}
.vantagem-items { display: flex; flex-direction: column; gap: 26px; }
.vantagem-item { display: flex; gap: 18px; align-items: flex-start; }
.vantagem-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.vantagem-icon svg { width: 20px; height: 20px; }
.vantagem-item-title { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 5px; }
.vantagem-item-text { color: var(--text-muted); font-size: 13.5px; }

/* ---------- Tabela comparativa ---------- */
.table-wrapper { overflow-x: auto; margin-top: 30px; border: 1px solid var(--line-faint); }
.compare-table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--bg-soft); }
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line-faint);
}
.compare-table thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
}
.compare-table thead th.gold-col { color: var(--gold); }
.compare-table td:first-child { color: var(--text); font-weight: 400; }
.compare-table td { color: var(--text-muted); }
.compare-table .gold-col { background: rgba(201, 168, 76, 0.04); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.badge-yes { color: var(--gold-light); font-weight: 400; }
.badge-no { color: #a49c8d; }

/* ---------- Processo ---------- */
.processo-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line-faint);
}
.processo-step {
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-faint);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 18px;
}
.processo-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  grid-row: span 2;
}
.processo-title { font-family: 'Playfair Display', serif; font-size: 18px; }
.processo-text { color: var(--text-muted); font-size: 13.5px; grid-column: 2; }

/* ---------- Sobre ---------- */
.about { background: var(--bg-soft); border-top: 1px solid var(--line-faint); border-bottom: 1px solid var(--line-faint); }
.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-text { color: var(--text-muted); font-size: 14.5px; margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 30px; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line-faint); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 17px 2px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 14px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2px;
}
.faq-item.open .faq-a { max-height: 900px; padding: 0 2px 24px; }

/* ---------- CTA final + formulário ---------- */
.cta-final {
  max-width: 1140px;
  margin: 0 auto;
  padding: 52px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}
.cta-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 7vw, 46px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-sub { color: var(--text-muted); font-size: 15px; max-width: 480px; }
.cta-checks { margin-top: 28px; display: flex; flex-direction: column; gap: 9px; }
.cta-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.cta-check svg { flex-shrink: 0; }

.cta-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 26px 20px;
}
.cta-form-title { font-family: 'Playfair Display', serif; font-size: 21px; margin-bottom: 4px; }
.cta-form-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.fg { margin-bottom: 16px; }
.fl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.fi {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-faint);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}
.fi:focus { border-color: var(--gold); }
select.fi {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-submit { width: 100%; background: var(--gold); color: #0c0b08; border: none; margin-top: 6px; }
.form-submit:hover { background: var(--gold-light); }
.form-disc { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: 14px; }

/* ---------- Blog / artigos ---------- */
.post-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.article {
  max-width: 740px;
  margin: 0 auto;
  padding: 104px 22px 30px;
}
.article .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.article .breadcrumb a { color: var(--gold); }
.article h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 6.4vw, 44px);
  line-height: 1.18;
  margin: 14px 0 10px;
}
.article .meta { color: var(--text-muted); font-size: 13px; margin-bottom: 30px; }
.article h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(20px, 4.6vw, 26px);
  margin: 34px 0 12px;
}
.article p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }
.article p strong { color: var(--text); font-weight: 500; }
.article-cta {
  max-width: 740px;
  margin: 24px auto 50px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-cta .t { font-family: 'Playfair Display', serif; font-size: 20px; }
.article-cta p { color: var(--text-muted); font-size: 14px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line-faint);
  padding: 42px 22px 88px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-bottom: 26px;
}
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { color: var(--gold); }
.footer-legal { font-size: 11.5px; color: #6b6659; margin-bottom: 8px; }
.footer-copy { font-size: 11.5px; color: #6b6659; }
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--gold-light); }
.footer-bacen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ---------- Barra de progresso de leitura ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 300;
  transition: width 0.08s linear;
}

/* nav condensa ao rolar */
nav { transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
nav.scrolled { background: rgba(10, 10, 11, 0.95); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }

/* link ativo no menu (scrollspy) */
.nav-links a.active { color: var(--gold-light); }

/* ---------- Voltar ao topo ---------- */
.to-top {
  position: fixed;
  left: 18px; bottom: 18px;
  z-index: 150;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.72);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.14); }

/* ---------- Ilustração do hero: parallax suave ---------- */
.hero-right { transition: transform 0.25s ease-out; will-change: transform; }

/* ---------- Brilho que segue o cursor nos cards ---------- */
.segment-card, .fin-card { position: relative; overflow: hidden; }
.segment-card::before, .fin-card::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.12), transparent 62%);
  z-index: 0;
}
.segment-card:hover::before, .fin-card:hover::before { opacity: 1; }
.segment-card > *, .fin-card > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-right { transition: none; transform: none !important; }
  .scroll-progress { transition: none; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: #07270f; }

/* ==================================================
   Desktop (mobile first: min-width)
   ================================================== */
@media (min-width: 760px) {
  body { font-size: 16px; }
  section { padding: 68px 0; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
  nav { height: 74px; padding: 0 40px; }

  .hero-actions { flex-direction: row; width: auto; max-width: none; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: auto; }

  .hero-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    padding: 150px 40px 70px;
    min-height: 88vh;
  }
  .hero-right { order: 0; }
  .pai-svg { max-height: 520px; }
  .hero-split.flip .hero-left { order: 2; }
  .hero-split.flip .hero-right { order: 1; }

  .numbers { grid-template-columns: repeat(4, 1fr); }
  .number-item { padding: 40px 20px; }
  .number-value { font-size: 21px; }

  .segments-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .fin-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .mod-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .segment-card, .why-card, .fin-card { padding: 30px 26px; }
  .mod-body { padding: 26px; }
  .faq-q { padding: 22px 2px; }
  .hero { min-height: 90vh; padding: 130px 40px 90px; }
  .processo-steps { grid-template-columns: repeat(2, 1fr); border-top: none; }
  .processo-step { border-top: 1px solid var(--line-faint); padding: 30px 20px 30px 4px; }

  .vantagem-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .about-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .cta-final { grid-template-columns: 1.1fr 0.9fr; gap: 60px; padding: 76px 40px; }
  .section-inner { padding: 0 40px; }
  .article { padding: 150px 40px 40px; }
  .article-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 34px 38px; }
  .cta-form { padding: 42px 38px; }
  .wa-float { right: 24px; bottom: 24px; width: 58px; height: 58px; }
  footer { padding: 64px 40px 60px; }
}

@media (min-width: 1080px) {
  .segments-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid.grid2 { grid-template-columns: repeat(2, 1fr); }
  .processo-steps { grid-template-columns: repeat(4, 1fr); }
  .processo-step { display: block; }
  .processo-num { margin-bottom: 16px; display: block; }
  .processo-title { margin-bottom: 8px; }
}
