/* ==========================================================================
   DMV Soluções Financeiras — folha de estilo única
   Identidade: fundo navy profundo, azul DMV, prata metálica, tipografia
   Montserrat (títulos) + Inter (texto). Sem dependências externas.
   ========================================================================== */

:root {
  --navy-950: #040A16;
  --navy-900: #070F1F;
  --navy-800: #0B1830;
  --navy-700: #122341;
  --navy-600: #1B345F;
  --blue: #1F6FEB;
  --blue-hi: #3B8BFF;
  --blue-soft: rgba(31, 111, 235, .16);
  --silver: #C7CDD8;
  --silver-dim: #8E98AA;
  --white: #F5F7FA;
  --wa: #25D366;
  --wa-dark: #07200F;
  --line: rgba(199, 205, 216, .13);
  --line-strong: rgba(199, 205, 216, .26);
  --font-d: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-b: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --maxw: 1180px;
  --r: 18px;
  --r-lg: 26px;
  --shadow: 0 30px 60px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .05);
  --metal: linear-gradient(180deg, #FFFFFF 0%, #E3E7EE 48%, #B9C1CE 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
body {
  font-family: var(--font-b);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.12; letter-spacing: -.015em; font-weight: 700; }
strong { font-weight: 600; color: #fff; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
.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; }
:focus-visible { outline: 3px solid var(--blue-hi); outline-offset: 3px; border-radius: 6px; }

/* ---------- Tipografia editorial ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-d); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue-hi);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--blue-hi); border-radius: 2px; }
.kicker.center { justify-content: center; }
.kicker.center::before { display: none; }
.display {
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
h1.display { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 800; letter-spacing: -.025em; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.sec-head p { color: var(--silver); font-size: 1.08rem; max-width: 62ch; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center p { margin-inline: auto; }
.lead { color: var(--silver); font-size: 1.12rem; max-width: 60ch; }
.muted { color: var(--silver-dim); }
.num {
  font-family: var(--font-d); font-weight: 800; font-size: 2.8rem; line-height: 1;
  background: linear-gradient(180deg, var(--blue-hi), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-d); font-weight: 700; font-size: .95rem;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 28px rgba(31, 111, 235, .35); }
.btn-primary:hover { background: var(--blue-hi); transform: translateY(-1px); }
.btn-wa { background: var(--wa); color: var(--wa-dark); box-shadow: 0 10px 28px rgba(37, 211, 102, .28); }
.btn-wa:hover { background: #3AE07A; transform: translateY(-1px); }
.btn-ghost { background: rgba(255, 255, 255, .02); color: var(--white); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--silver); background: rgba(255, 255, 255, .05); }
.btn-lg { padding: 18px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.ico { width: 20px; height: 20px; flex: none; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-hi); font-weight: 600; font-family: var(--font-d); font-size: .92rem; }
.link-arrow:hover { color: #fff; }
.link-arrow .ico { transition: transform .15s; }
.link-arrow:hover .ico { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7, 15, 31, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 54px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--silver); font-size: .95rem; transition: color .15s; position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--blue-hi); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 20px; font-size: .9rem; }
.menu-btn { display: none; background: transparent; border: 1.5px solid var(--line-strong); border-radius: 12px; width: 46px; height: 46px; place-items: center; cursor: pointer; }
.menu-btn svg { width: 22px; height: 22px; }
.menu-btn .close { display: none; }
.menu-open .menu-btn .open { display: none; }
.menu-open .menu-btn .close { display: block; }
@media (max-width: 960px) {
  .nav { height: 72px; }
  .brand img { height: 44px; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; z-index: 59; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(7, 15, 31, .97); border-bottom: 1px solid var(--line); padding: 10px 24px 22px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  }
  .menu-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta .btn span { display: none; }
  .nav-cta .btn { padding: 12px 14px; }
  .menu-btn { display: grid; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 104px 0 96px;
  background:
    radial-gradient(1100px 560px at 78% -12%, rgba(31, 111, 235, .30), transparent 62%),
    radial-gradient(700px 400px at 8% 110%, rgba(59, 139, 255, .12), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
}
.hero::before, .hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.hero::before {
  background:
    linear-gradient(115deg, transparent 44%, rgba(59, 139, 255, .20) 44.2%, rgba(59, 139, 255, .20) 44.55%, transparent 44.75%),
    linear-gradient(115deg, transparent 50%, rgba(199, 205, 216, .10) 50.2%, rgba(199, 205, 216, .10) 50.4%, transparent 50.6%);
  opacity: .9;
}
.hero::after {
  background-image: radial-gradient(rgba(199, 205, 216, .10) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, .7), transparent 55%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, .7), transparent 55%);
}
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; color: var(--silver); font-weight: 500; font-size: .88rem;
  margin-bottom: 26px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(11, 24, 48, .7);
}
.hero-tag i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-hi); box-shadow: 0 0 14px var(--blue-hi); }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.trust { display: flex; gap: 26px; flex-wrap: wrap; color: var(--silver-dim); font-size: .9rem; }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { color: var(--blue-hi); width: 18px; height: 18px; }
@media (max-width: 960px) {
  .hero { padding: 64px 0 72px; }
  .hero-grid, .landing-hero .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) { .hide-sm { display: none; } .hero-tag { font-size: .82rem; } }

/* Cartões de jornada (Imóvel / Carro) */
.journeys { display: grid; gap: 18px; }
.journey {
  position: relative; display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: center;
  padding: 26px 26px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(27, 52, 95, .55), rgba(11, 24, 48, .85));
  border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.journey::after { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 120px at 100% 0%, rgba(59, 139, 255, .18), transparent 70%); opacity: 0; transition: opacity .18s; pointer-events: none; }
.journey:hover { transform: translateY(-3px); border-color: rgba(59, 139, 255, .55); }
.journey:hover::after { opacity: 1; }
.journey .badge { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-hi); }
.journey .badge svg { width: 30px; height: 30px; }
.journey h3 { font-size: 1.32rem; margin-bottom: 4px; }
.journey p { color: var(--silver); font-size: .93rem; }
.journey .go { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; color: #fff; transition: background .15s, border-color .15s; }
.journey:hover .go { background: var(--blue); border-color: var(--blue); }
.journey .go svg { width: 20px; height: 20px; }
.journeys-note { color: var(--silver-dim); font-size: .85rem; margin-top: 6px; }
@media (max-width: 600px) {
  .journey { grid-template-columns: 54px 1fr; gap: 16px; padding: 22px 20px; }
  .journey .badge { width: 54px; height: 54px; border-radius: 14px; }
  .journey .badge svg { width: 26px; height: 26px; }
  .journey .go { display: none; }
  .journey h3 { font-size: 1.2rem; }
}

/* ---------- Cards genéricos ---------- */
.card {
  background: linear-gradient(160deg, rgba(27, 52, 95, .50), rgba(11, 24, 48, .82));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Faixa de números (hero numbers) ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-950); padding: 34px 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { display: flex; align-items: center; gap: 16px; }
.stat .num { font-size: 2.2rem; min-width: 74px; }
.stat b { display: block; font-family: var(--font-d); font-size: .95rem; font-weight: 700; }
.stat span { color: var(--silver-dim); font-size: .85rem; }
@media (max-width: 960px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats .wrap { grid-template-columns: 1fr; } }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px 28px; background: rgba(11, 24, 48, .55); }
.step .num { display: block; margin-bottom: 18px; }
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: var(--silver); font-size: .94rem; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Caminhos (consórcio / financiamento / garantia) ---------- */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.path {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px 30px; overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 35, 65, .60), rgba(11, 24, 48, .40));
  display: flex; flex-direction: column; gap: 18px;
}
.path::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-hi), var(--blue)); }
.path .badge { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-hi); }
.path .badge svg { width: 26px; height: 26px; }
.path h3 { font-size: 1.28rem; }
.path .tagline { color: var(--silver-dim); font-size: .85rem; font-weight: 500; margin-top: -10px; }
.path dl { display: grid; gap: 12px; }
.path dt { font-family: var(--font-d); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-hi); margin-bottom: 3px; }
.path dd { color: var(--silver); font-size: .94rem; }
.path .foot { margin-top: auto; padding-top: 6px; }
@media (max-width: 960px) { .paths { grid-template-columns: 1fr; } }

/* ---------- Tabela comparativa ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(11, 24, 48, .5); }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: .94rem; }
.compare th { font-family: var(--font-d); font-weight: 700; color: #fff; background: rgba(27, 52, 95, .35); }
.compare th:first-child, .compare td:first-child { color: var(--blue-hi); font-family: var(--font-d); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; width: 180px; }
.compare td { color: var(--silver); }
.compare tr:last-child td { border-bottom: 0; }
@media (max-width: 760px) {
  .compare-wrap { overflow: visible; border: 0; background: transparent; }
  .compare { min-width: 0; display: block; }
  .compare thead { display: none; }
  .compare tbody, .compare tr, .compare td { display: block; width: auto; }
  .compare tr { border: 1px solid var(--line); border-radius: var(--r); background: rgba(11, 24, 48, .5); margin-bottom: 14px; overflow: hidden; }
  .compare td { border-bottom: 1px solid var(--line); padding: 16px 18px; }
  .compare td:first-child { background: rgba(27, 52, 95, .35); font-size: .82rem; padding: 14px 18px; width: auto; }
  .compare td[data-label]::before { content: attr(data-label); display: block; font-family: var(--font-d); font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: 4px; }
  .compare tr td:last-child { border-bottom: 0; }
}

/* ---------- Lista com check ---------- */
.checks { display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; color: var(--silver); font-size: .95rem; line-height: 1.5; }
.checks li svg { flex: none; width: 18px; height: 18px; margin-top: 4px; color: var(--blue-hi); }

/* ---------- Soluções secundárias ---------- */
.sol { position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; background: rgba(11, 24, 48, .5); display: flex; flex-direction: column; gap: 14px; }
.sol .badge { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-hi); }
.sol .badge svg { width: 22px; height: 22px; }
.sol h3 { font-size: 1.12rem; }
.sol p { color: var(--silver); font-size: .92rem; }
.sol .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sol .tags span { font-size: .78rem; color: var(--silver); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.sol .link-arrow { margin-top: auto; }

/* ---------- Por que a DMV ---------- */
.why { background: var(--navy-800); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: grid; gap: 20px; }
.why-item { display: flex; gap: 16px; }
.why-item .badge { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-hi); display: grid; place-items: center; flex: none; }
.why-item .badge svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { color: var(--silver); font-size: .93rem; }
.why-visual { position: relative; display: grid; place-items: center; }
.why-visual .plate {
  width: min(100%, 440px); aspect-ratio: 1 / 1; border-radius: 50%; display: grid; place-items: center; padding: 48px;
  background: radial-gradient(closest-side, rgba(27, 52, 95, .85), rgba(11, 24, 48, .3)), radial-gradient(circle at 30% 20%, rgba(59, 139, 255, .25), transparent 60%);
  border: 1px solid var(--line-strong); box-shadow: 0 40px 100px rgba(31, 111, 235, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.why-visual .plate img { width: 100%; height: auto; }
.why-visual .orbit { position: absolute; inset: -6% ; border-radius: 50%; border: 1px dashed rgba(199, 205, 216, .18); pointer-events: none; }
@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } .why-visual { order: -1; } .why-visual .plate { width: 240px; padding: 28px; } }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--line); border-radius: 14px; background: rgba(11, 24, 48, .5); margin-bottom: 10px; }
.faq summary { list-style: none; cursor: pointer; padding: 19px 22px; font-family: var(--font-d); font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; width: 20px; height: 20px; color: var(--blue-hi); transition: transform .2s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--silver); font-size: .95rem; max-width: 72ch; }
.faq details p + p { margin-top: -8px; }

/* ---------- Formulário de simulação ---------- */
.form-card { background: linear-gradient(160deg, rgba(27, 52, 95, .55), rgba(11, 24, 48, .88)); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.22rem; margin-bottom: 6px; }
.form-card > p { color: var(--silver); font-size: .92rem; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .85rem; color: var(--silver); margin-bottom: 6px; font-weight: 500; }
.field input, .field select {
  width: 100%; background: var(--navy-900); border: 1px solid var(--line-strong); border-radius: 12px; color: #fff;
  padding: 13px 14px; font: inherit; font-size: .95rem; appearance: none; -webkit-appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--blue-hi); outline: none; box-shadow: 0 0 0 3px rgba(59, 139, 255, .22); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23C7CDD8' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input::placeholder { color: var(--silver-dim); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.radio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-row label { position: relative; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line-strong); border-radius: 12px; padding: 12px; cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--silver); background: var(--navy-900); }
.radio-row input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.radio-row label:has(input:checked) { border-color: var(--blue); background: rgba(31, 111, 235, .16); color: #fff; }
.radio-row label:has(input:focus-visible) { outline: 3px solid var(--blue-hi); outline-offset: 2px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--silver-dim); margin: 6px 0 16px; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.consent a { color: var(--silver); text-decoration: underline; text-underline-offset: 2px; }
.form-card .btn { width: 100%; }
.form-card small { display: block; margin-top: 12px; color: var(--silver-dim); font-size: .78rem; text-align: center; }
.form-error { display: none; color: #FFB4B4; font-size: .85rem; margin: -6px 0 12px; }
.form-error.show { display: block; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-list { display: grid; gap: 18px; margin: 28px 0 30px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .badge { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-hi); display: grid; place-items: center; flex: none; }
.contact-item .badge svg { width: 20px; height: 20px; }
.contact-item b { display: block; font-family: var(--font-d); font-size: .95rem; }
.contact-item span, .contact-item a { color: var(--silver); font-size: .95rem; }
.contact-item a:hover { color: #fff; }
.map { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; min-height: 360px; background: var(--navy-800); }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.25) contrast(1.05); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA final ---------- */
.cta-final { padding: 0 0 96px; }
.cta-box {
  position: relative; overflow: hidden; border-radius: 30px; padding: 64px 48px; text-align: center;
  background: radial-gradient(800px 320px at 50% 125%, rgba(59, 139, 255, .38), transparent 70%), linear-gradient(160deg, var(--navy-600), var(--navy-800));
  border: 1px solid rgba(59, 139, 255, .32);
}
.cta-box h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.cta-box p { color: var(--silver); margin-bottom: 30px; max-width: 56ch; margin-inline: auto; }
.cta-box .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .cta-box { padding: 44px 24px; } }

/* ---------- Rodapé ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 36px; background: var(--navy-950); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.foot-brand p { color: var(--silver-dim); font-size: .9rem; max-width: 40ch; }
.foot-col h4 { font-family: var(--font-d); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-hi); margin-bottom: 16px; }
.foot-col ul { display: grid; gap: 10px; }
.foot-col a, .foot-col span { color: var(--silver); font-size: .93rem; }
.foot-col a:hover { color: #fff; }
.legal { color: var(--silver-dim); font-size: .8rem; line-height: 1.65; border-top: 1px solid var(--line); padding-top: 24px; }
.legal p + p { margin-top: 10px; }
.legal b { color: var(--silver); font-weight: 600; }
.legal a { color: var(--silver); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37, 211, 102, .42); transition: transform .15s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 31px; height: 31px; color: var(--wa-dark); }

/* ---------- Banner de cookies ---------- */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; max-width: 640px; margin: 0 auto;
  background: rgba(11, 24, 48, .97); border: 1px solid var(--line-strong); border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5); display: none; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p { flex: 1 1 320px; font-size: .85rem; color: var(--silver); }
.cookie p a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cookie .actions { display: flex; gap: 8px; }
.cookie .btn { padding: 11px 18px; font-size: .85rem; }
@media (max-width: 600px) { .cookie { left: 12px; right: 12px; bottom: 90px; } }

/* ---------- Landing (imóvel / carro) ---------- */
@media (min-width: 961px) { .landing-hero .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.pill-list span { font-size: .84rem; color: var(--silver); border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px; background: rgba(11, 24, 48, .6); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .visual { border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(160deg, rgba(27, 52, 95, .5), rgba(11, 24, 48, .8)); padding: 34px; box-shadow: var(--shadow); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* Linha do tempo de troca */
.timeline { display: grid; gap: 0; position: relative; }
.timeline li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 0 0 26px; position: relative; }
.timeline li::before { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: linear-gradient(180deg, rgba(59, 139, 255, .6), rgba(59, 139, 255, .05)); }
.timeline li:last-child::before { display: none; }
.timeline .dot { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(59, 139, 255, .6); background: var(--navy-900); display: grid; place-items: center; font-family: var(--font-d); font-weight: 800; color: var(--blue-hi); }
.timeline h4 { font-size: 1.02rem; margin-bottom: 4px; }
.timeline p { color: var(--silver); font-size: .93rem; }

/* Bloco de aviso / nota */
.note { border: 1px solid var(--line); border-left: 3px solid var(--blue-hi); border-radius: 12px; padding: 16px 18px; color: var(--silver); font-size: .9rem; background: rgba(11, 24, 48, .5); }

/* ---------- Página de texto (privacidade) ---------- */
.prose h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.prose h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--silver); font-size: 1rem; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-bottom: 14px; }
.prose a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.prose .updated { color: var(--silver-dim); font-size: .88rem; margin-bottom: 32px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Página 404 ---------- */
.page-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; }
