/* ============ TORRENTE LOCADORA ============ */
:root {
  --navy: #1e2c55;
  --navy-deep: #141f3d;
  --navy-soft: #2a3b6e;
  --orange: #ff7a2f;
  --orange-strong: #f2620f;
  --bg: #ffffff;
  --bg-alt: #f4f6fb;
  --ink: #24304f;
  --muted: #5c6a8c;
  --line: #e3e8f4;
  --radius: 18px;
  --shadow: 0 18px 45px -18px rgba(20, 31, 61, .25);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- typography ---------- */
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.14; font-weight: 800; letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; font-weight: 700; color: var(--navy); letter-spacing: -.4px; margin-bottom: .6em; }
h2.light { color: #fff; }
h3 { font-weight: 600; color: var(--navy); }
.center { text-align: center; }
.kicker {
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange-strong); margin-bottom: .9em;
}
.kicker.orange { color: var(--orange); }
.section-sub { max-width: 640px; color: var(--muted); margin: 0 auto 3rem; }
.section-sub.light { color: #b6c2e2; }
.grifo { color: var(--orange); }
.grifo-navy {
  background: linear-gradient(transparent 62%, rgba(255, 122, 47, .35) 62%);
  padding-inline: .08em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font); font-weight: 600; font-size: .95rem;
  padding: .78rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  color: #fff; box-shadow: 0 12px 30px -10px rgba(242, 98, 15, .55);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(242, 98, 15, .65); }
.btn-ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
#contato .btn-ghost, .hero .btn-ghost { backdrop-filter: blur(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  padding: 1.1rem 0; transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(20, 31, 61, .92); backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .4); padding: .65rem 0;
}
.nav-inner { display: flex; align-items: center; gap: 2rem; }
.logo-img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  color: #e6ebf7; font-size: .92rem; font-weight: 500; position: relative; padding-block: .2rem;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .22s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: .88rem; padding: .62rem 1.25rem; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-burger span { display: block; width: 24px; height: 2.6px; background: #fff; margin: 5px 0; border-radius: 3px; transition: .25s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/img/fotos/hero-01.jpg') center 38% / cover no-repeat;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 23, 47, .94) 8%, rgba(20, 31, 61, .72) 46%, rgba(20, 31, 61, .38) 100%),
    linear-gradient(to top, rgba(15, 23, 47, .95) 0%, transparent 42%);
}
.hero-content {
  position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-top: 7rem; padding-bottom: 2rem; max-width: 1160px;
}
.hero-content h1 { max-width: 15em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #ffb289;
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--orange); border-radius: 2px; }
.hero-sub { max-width: 560px; margin-top: 1.3rem; font-size: 1.06rem; color: #ccd6ee; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

.hero-stats { position: relative; z-index: 2; border-top: 1px solid rgba(255, 255, 255, .14); background: rgba(15, 23, 47, .45); backdrop-filter: blur(8px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.5rem 1rem; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .12); }
.stat-num { display: block; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: var(--orange); line-height: 1.1; }
.stat-label { font-size: .85rem; color: #c3cde8; }

/* ---------- sections ---------- */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-navy {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 122, 47, .16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}

/* sobre */
.sobre-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: start; }
.sobre-text p { color: var(--muted); margin-bottom: 1rem; }
.sobre-text strong { color: var(--navy); }
.checklist { list-style: none; margin-top: 1.4rem; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .7rem; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .28em; width: 1.15em; height: 1.15em; border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E") center / 60% no-repeat;
}
.sobre-cards { display: grid; gap: 1.2rem; }
.mvv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; box-shadow: 0 8px 26px -18px rgba(20, 31, 61, .35);
  display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.1rem; align-items: start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mvv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mvv-card h3 { grid-column: 2; font-size: 1.06rem; }
.mvv-card p { grid-column: 2; font-size: .92rem; color: var(--muted); }
.mvv-icon {
  grid-row: span 2; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--orange-strong);
  background: linear-gradient(140deg, rgba(255, 122, 47, .16), rgba(255, 122, 47, .05));
}

/* cards por que alugar */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255, 122, 47, .45); }
.card-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.1rem;
  color: #fff; background: linear-gradient(140deg, var(--navy-soft), var(--navy));
}
.card:hover .card-icon { background: linear-gradient(140deg, var(--orange), var(--orange-strong)); }
.card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.card p { font-size: .92rem; color: var(--muted); }

/* frota */
.modelo {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
  margin-top: 4.5rem;
}
.modelo-invert .modelo-media { order: 2; }
.modelo-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.modelo-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* carrossel */
.car-track { display: flex; transition: transform .55s cubic-bezier(.33, .8, .25, 1); }
.car-slide { flex: 0 0 100%; min-width: 100%; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(20, 31, 61, .55); color: #fff; font-size: 1rem; line-height: 1;
  display: grid; place-items: center; backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease; opacity: .9;
}
.car-btn:hover { background: var(--orange-strong); transform: translateY(-50%) scale(1.08); }
.car-prev { left: .9rem; }
.car-next { right: .9rem; }
.car-dots {
  position: absolute; bottom: .9rem; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: .5rem;
}
.car-dot {
  width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, .55); transition: background .25s ease, width .25s ease;
}
.car-dot.active { background: var(--orange); width: 26px; }
.modelo-tag {
  position: absolute; top: 1.1rem; left: 1.1rem; background: rgba(20, 31, 61, .85); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.modelo-info h3 { font-size: 1.5rem; font-weight: 500; color: var(--navy); }
.modelo-info h3 strong { font-weight: 800; }
.modelo-desc { color: var(--muted); margin: .8rem 0 1.2rem; }
.modelo-list { list-style: none; margin-bottom: 1.6rem; }
.modelo-list li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; font-size: .93rem; }
.modelo-list li::before {
  content: ''; position: absolute; left: 0; top: .5em; width: .8em; height: .22em; border-radius: 2px;
  background: var(--orange);
}
.modelo-specs {
  display: grid; grid-template-columns: repeat(4, auto); gap: 1rem 2rem; justify-content: start;
  border-top: 1px solid var(--line); padding-top: 1.3rem;
}
.modelo-specs span { display: block; font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.modelo-specs small { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

.comparativo { margin-top: 5rem; }
.comparativo h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.table-wrap {
  overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 10px 30px -22px rgba(20, 31, 61, .4);
}
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
th, td { padding: 1rem 1.4rem; text-align: left; font-size: .93rem; }
thead th { background: var(--navy); color: #fff; font-weight: 600; letter-spacing: .03em; }
thead th:first-child { width: 30%; }
tbody tr:nth-child(even) { background: var(--bg-alt); }
tbody td:first-child { font-weight: 600; color: var(--navy); }
tbody td { border-top: 1px solid var(--line); color: var(--ink); }

/* galeria (carrossel de 1 linha) */
.galeria { position: relative; overflow: hidden; background: var(--navy-deep); }
.galeria-head { position: relative; z-index: 2; padding: 4.5rem 0 0; }
.galeria-head .section-sub { margin-bottom: 2.2rem; }
.galeria-body { position: relative; } /* setas centralizadas nas FOTOS, não na seção */
.galeria-track { display: flex; }
.galeria-track img {
  flex: 0 0 25%; min-width: 25%;
  aspect-ratio: 1 / 1; object-fit: cover;
  border: 2px solid var(--navy-deep);
  filter: saturate(.92); transition: filter .45s ease;
}
.galeria-track img:hover { filter: saturate(1.15); }
.galeria .car-dots { position: static; margin: .95rem 0 1.15rem; }
.galeria .car-dot { background: rgba(255, 255, 255, .35); }
.galeria .car-dot.active { background: var(--orange); }

/* tecnologia */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.tech-card {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.tech-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .09); border-color: rgba(255, 122, 47, .5); }
.tech-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.1rem;
  color: var(--orange); background: rgba(255, 122, 47, .14);
}
.tech-card h3 { color: #fff; font-size: 1.04rem; margin-bottom: .4rem; }
.tech-card p { font-size: .9rem; color: #b6c2e2; }

/* ---------- corpo com estrada decorativa ---------- */
.page-body { position: relative; }
.road-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
/* o SVG tem tamanho FIXO em px (definido pelo JS no build) — nunca estica
   junto com o body, então estrada e caminhão ficam sempre no mesmo espaço
   de coordenadas; o ResizeObserver reconstrói quando o conteúdo cresce */
.road-layer svg { position: absolute; top: 0; left: 0; }
#roadAsphalt { stroke: rgba(30, 44, 85, .016); stroke-linecap: round; }
#roadEdge { stroke: rgba(30, 44, 85, .026); stroke-linecap: round; }
#roadDashes { stroke: rgba(242, 98, 15, .085); stroke-linecap: round; }
/* cópia clara da estrada, recortada para as seções de fundo azul */
#roadAsphaltLight { stroke: rgba(255, 255, 255, .026); stroke-linecap: round; }
#roadEdgeLight { stroke: rgba(255, 255, 255, .05); stroke-linecap: round; }
.road-truck {
  /* irmão da .road-layer, depois dela no DOM: fica ACIMA da estrada (z-1)
     e ABAIXO de todo o conteúdo (z-2) */
  position: absolute; top: 0; left: 0; z-index: 1; will-change: transform;
  filter: drop-shadow(0 6px 8px rgba(20, 31, 61, .22));
  opacity: .45;
  /* transform SEM transition: o movimento é animado por JS ao longo do
     próprio traçado da estrada (nunca corta caminho fora da faixa) */
  transition: opacity .3s ease;
  pointer-events: none;
}
.road-truck.oculto { opacity: 0; }
.road-truck svg { display: block; }
.section .container, .galeria-track { position: relative; z-index: 2; }

/* atuação */
.atuacao-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.atuacao-grid p { color: var(--muted); margin-bottom: 1rem; }
.estados { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.estado-chip {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .5rem 1.1rem .5rem .55rem; font-size: .88rem; font-weight: 500; color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.estado-chip:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 20px -12px rgba(20,31,61,.4); }
.estado-chip strong {
  background: var(--navy); color: #fff; font-size: .78rem; font-weight: 700;
  border-radius: 999px; padding: .3rem .6rem; letter-spacing: .05em;
}
/* mapa animado */
.mapa-card {
  background:
    radial-gradient(520px 320px at 80% 0%, rgba(255, 122, 47, .14), transparent 60%),
    linear-gradient(160deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  border-radius: 24px; box-shadow: var(--shadow); padding: 1.6rem 1.7rem 1.4rem; color: #fff;
}
.mapa-wrap { position: relative; }
.mapa-img { width: 100%; height: auto; opacity: .5; aspect-ratio: 1100 / 1145; }
.mapa-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.rota { fill: none; stroke: var(--orange); stroke-width: .5; stroke-dasharray: 1.5 1.5; stroke-linecap: round; opacity: .55; }
.destino circle, .origem circle { fill: var(--orange); }
.destino .pulso, .origem .pulso-sp { fill: none; stroke: var(--orange); stroke-width: .35; }
.mapa-overlay text {
  fill: #fff; font-family: var(--font); font-weight: 700; font-size: 3.1px;
  paint-order: stroke; stroke: rgba(20, 31, 61, .65); stroke-width: .55px; text-anchor: middle;
}
.origem text { fill: #ffb289; }
.mapa-foot { display: flex; align-items: baseline; gap: .6rem; margin-top: .7rem; border-top: 1px solid rgba(255,255,255,.14); padding-top: .9rem; }
.mapa-foot strong { font-size: 1.35rem; font-weight: 800; color: var(--orange); }
.mapa-foot span { font-size: .85rem; color: #9fb0d8; }

/* clientes */
.clientes-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem 1rem; max-width: 900px; margin: 0 auto;
}
.clientes-strip span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .75rem 1.6rem; font-weight: 600; font-size: .95rem; color: var(--navy);
  box-shadow: 0 6px 18px -14px rgba(20, 31, 61, .5);
  transition: transform .2s ease, border-color .2s ease;
}
.clientes-strip span:hover { transform: translateY(-3px); border-color: rgba(255, 122, 47, .55); }

/* cta final */
.cta-final {
  position: relative; padding: 5.5rem 0; color: #fff; overflow: hidden;
  background:
    radial-gradient(700px 380px at 12% 120%, rgba(255, 122, 47, .28), transparent 60%),
    linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
}
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.cta-text p { color: #c3cde8; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; justify-self: end; }
.cta-actions .btn { width: 100%; justify-content: center; }

/* footer */
.footer { background: #0e1730; color: #aab6d6; padding: 4rem 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo-img { height: 44px; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 340px; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: .5rem; }
.footer-col a { color: #aab6d6; transition: color .18s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 1.4rem; font-size: .82rem; color: #7787ad;
}

/* whatsapp fab */
.whats-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .2s ease;
}
.whats-fab:hover { transform: scale(1.08); }

/* ---------- reveal animations (only when JS is active) ---------- */
body.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
body.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
  .road-truck { display: none; }
  .car-track { transition: none; }
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ============ v11 — componentes da visão de mercado ============ */

/* hero split com formulário de cotação */
.hero-split .hero-grid {
  /* z-index 3: acima da .hero-stats (z-2, posterior no DOM) para os
     dropdowns abertos do formulário não ficarem atrás da barra de marcos */
  position: relative; z-index: 3; flex: 1;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 3.2rem; align-items: center;
  padding-top: 6rem; padding-bottom: 2rem;
}
.hero-split { min-height: 100svh; }
.hero-copy h1 { max-width: 12em; font-size: clamp(2.1rem, 4vw, 3.4rem); }
.hero-split .hero-sub { font-size: .98rem; }
.hero-checks { list-style: none; margin-top: 1.6rem; }
.hero-checks li { position: relative; padding-left: 2rem; margin-bottom: .65rem; color: #dbe3f5; font-size: .98rem; }
.hero-checks li strong { color: #fff; }
.hero-checks li::before {
  content: ''; position: absolute; left: 0; top: .22em; width: 1.2em; height: 1.2em; border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E") center / 60% no-repeat;
}

.quote-card {
  background: #fff; border-radius: 22px; padding: 1.9rem 1.9rem 1.5rem;
  box-shadow: 0 30px 70px -25px rgba(10, 16, 35, .65);
  scroll-margin-top: 96px;
}
.quote-card h2 { font-size: 1.35rem; margin-bottom: .15rem; }
.quote-sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.2rem; }
.quote-card form { display: flex; flex-direction: column; gap: .9rem; }
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.quote-card label { display: flex; flex-direction: column; gap: .3rem; font-size: .8rem; font-weight: 600; color: var(--navy); }
.quote-card input, .quote-card select {
  font-family: var(--font); font-size: .9rem; color: var(--ink);
  padding: .65rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.quote-card input:focus, .quote-card select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 47, .18);
}
.q-submit { justify-content: center; margin-top: .3rem; }
.q-note { font-size: .74rem; color: var(--muted); text-align: center; }

/* dropdown customizado (o select nativo fica escondido como fonte de dados) */
.sel { position: relative; }
.sel-native { display: none !important; }
.sel-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  font-family: var(--font); font-size: .9rem; font-weight: 400; color: var(--ink); text-align: left;
  padding: .65rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease;
}
.sel-btn span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sel-btn svg { flex: none; color: var(--muted); transition: transform .2s ease, color .2s ease; }
.sel-btn:focus-visible { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 47, .18); }
.sel.open .sel-btn { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 47, .18); }
.sel.open .sel-btn svg { transform: rotate(180deg); color: var(--orange-strong); }
.sel-list {
  position: absolute; z-index: 30; top: calc(100% + 6px); left: 0; right: 0;
  margin: 0; padding: .45rem; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 22px 48px -18px rgba(20, 31, 61, .4);
  max-height: 250px; overflow: auto;
  animation: selPop .16s ease;
}
@keyframes selPop { from { opacity: 0; transform: translateY(-6px); } }
.sel-opt {
  position: relative; padding: .55rem .8rem .55rem 2rem; border-radius: 9px;
  font-size: .88rem; font-weight: 400; color: var(--ink); cursor: pointer;
  transition: background .14s ease, color .14s ease;
}
.sel-opt:hover { background: rgba(255, 122, 47, .12); color: var(--navy); }
.sel-opt.active { font-weight: 500; color: var(--navy); }
.sel-opt.active::before {
  content: ''; position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), var(--orange-strong));
}

/* clientes no topo */
.clientes-top { padding: 3.5rem 0; }
.clientes-lead {
  text-align: center; font-weight: 600; color: var(--muted);
  font-size: .95rem; margin-bottom: 1.4rem;
}

/* segmentos */
.seg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.seg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; border-top: 3px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.seg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-top-color: var(--orange); }
.seg-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem;
  color: var(--orange-strong); background: linear-gradient(140deg, rgba(255, 122, 47, .16), rgba(255, 122, 47, .05));
}
.seg-card h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.seg-card p { font-size: .89rem; color: var(--muted); }

/* como funciona */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: passo; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem 1.7rem; box-shadow: 0 8px 26px -20px rgba(20, 31, 61, .4);
}
.step-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), var(--orange-strong)); color: #fff;
  font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
  box-shadow: 0 10px 22px -10px rgba(242, 98, 15, .6);
}
.step h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.step p { font-size: .89rem; color: var(--muted); }
.step:not(:last-child)::after {
  /* conector tracejado NO VÃO entre os cards, na altura do círculo numerado */
  content: ''; position: absolute; top: 3.25rem; right: -1.3rem; width: 1.3rem; height: 0;
  border-top: 3px dashed var(--orange); opacity: .85;
}

/* alugar x comprar */
.vs-table th.vs-torrente { background: var(--orange-strong); }
.vs-table td.vs-torrente { background: rgba(255, 122, 47, .09); font-weight: 600; color: var(--navy); }
.vs-table thead th { font-size: .95rem; }

/* incluir na cotação */
.btn-navy {
  background: var(--navy); color: #fff; margin-top: 1.4rem;
  box-shadow: 0 12px 26px -14px rgba(20, 31, 61, .6);
}
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* veículos sob medida */
.custom-band {
  margin-top: 4.5rem; border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center;
  padding: 2.8rem 3rem;
  color: #fff;
  background:
    radial-gradient(620px 340px at 90% -20%, rgba(255, 122, 47, .22), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  box-shadow: var(--shadow);
}
.custom-tag {
  display: inline-block; background: rgba(255, 122, 47, .18); color: #ffb289;
  border: 1px solid rgba(255, 122, 47, .45); border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem 1rem; margin-bottom: 1.1rem;
}
.custom-text h3 { color: #fff; font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.25; font-weight: 500; margin-bottom: .9rem; }
.custom-text h3 strong { font-weight: 800; }
.custom-text p { color: #c3cde8; font-size: .95rem; margin-bottom: .8rem; }
.custom-text p strong { color: #fff; }
.custom-note { font-size: .8rem !important; color: #8fa0c8 !important; margin-top: 1.2rem !important; }
.custom-flow {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem;
  margin-top: 1.4rem; max-width: 420px;
}
.cf-arrow { display: none; }
.cf-step {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px; padding: .5rem .9rem .5rem .5rem;
  font-size: .82rem; font-weight: 600; color: #dbe3f5; white-space: nowrap;
}
.cf-step em {
  font-style: normal; display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), var(--orange-strong));
  color: #fff; font-size: .72rem; font-weight: 800;
}
.cf-arrow { color: var(--orange); font-weight: 800; font-size: 1.05rem; }
.custom-points { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.custom-point {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-left: 3px solid var(--orange);
  border-radius: 12px; padding: .85rem 1.1rem;
}
.custom-point strong { display: block; font-size: .93rem; margin-bottom: .15rem; }
.custom-point span { font-size: .84rem; color: #b6c2e2; }
.custom-cta { align-self: flex-start; margin-top: .4rem; }

/* depoimentos */
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.5rem; }
.depo-card {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; position: relative;
}
.depo-card::before {
  content: '“'; position: absolute; top: .4rem; left: 1.2rem; font-size: 3.4rem; line-height: 1;
  color: rgba(255, 122, 47, .35); font-family: Georgia, serif;
}
.depo-card blockquote { margin: 1.2rem 0 1rem; font-size: .93rem; color: var(--ink); line-height: 1.65; }
.depo-card figcaption { font-size: .8rem; font-weight: 600; color: var(--muted); }

/* faq */
.faq-wrap { max-width: 780px; }
.faq-list { margin-top: 2.2rem; display: flex; flex-direction: column; gap: .8rem; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0 1.4rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-list details[open] { border-color: rgba(255, 122, 47, .5); box-shadow: 0 10px 30px -22px rgba(20, 31, 61, .4); }
.faq-list summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--navy);
  padding: 1.05rem 2rem 1.05rem 0; position: relative; font-size: .97rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 122, 47, .14); color: var(--orange-strong); font-weight: 700;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); }
.faq-list details p { padding: 0 0 1.2rem; color: var(--muted); font-size: .92rem; }

/* ---------- responsive ---------- */
/* telas mais baixas (notebook/1080p com barra do Windows): hero compacta
   para os marcos não ficarem cortados na dobra */
@media (max-height: 880px) and (min-width: 721px) {
  /* hero split (v11+): o TÍTULO permanece grande — quem encolhe para caber
     na dobra é o card do formulário e os respiros (telas ~820-880px úteis) */
  .hero-split .hero-grid { padding-top: 5.2rem; padding-bottom: 1.4rem; gap: 2.6rem; }
  .hero-copy h1 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
  .hero-split .hero-sub { font-size: .95rem; margin-top: .9rem; }
  .hero-checks { margin-top: 1.2rem; }
  .hero-checks li { font-size: .9rem; margin-bottom: .5rem; }
  .quote-card { padding: 1.5rem 1.6rem 1.1rem; }
  .quote-card h2 { font-size: 1.2rem; }
  .quote-sub { margin-bottom: .9rem; }
  .quote-card form { gap: .7rem; }
  .quote-card input, .quote-card select, .quote-card .sel-btn { padding: .55rem .75rem; font-size: .88rem; }
  .q-submit { padding: .85rem 1.5rem; font-size: .95rem; }
  .q-note { font-size: .7rem; }
  .hero-content { padding-top: 5.5rem; padding-bottom: 1.2rem; }
  .hero-content h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
  .eyebrow { margin-bottom: .8rem; }
  .hero-sub { margin-top: .9rem; font-size: .98rem; }
  .hero-actions { margin-top: 1.5rem; }
  .hero-actions .btn-lg { padding: .85rem 1.7rem; font-size: .96rem; }
  .stat { padding: 1rem .8rem; }
  .stat-num { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
  .stat-label { font-size: .78rem; }
}

/* telas MUITO baixas (notebooks compactos): aperta mais um pouco */
@media (max-height: 800px) and (min-width: 721px) {
  .hero-split .hero-grid { padding-top: 5rem; padding-bottom: 1.2rem; gap: 2.4rem; }
  .hero-copy h1 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
  .hero-split .hero-sub { font-size: .9rem; margin-top: .8rem; }
  .hero-checks li { font-size: .86rem; margin-bottom: .45rem; }
  .quote-card { padding: 1.35rem 1.5rem 1.05rem; }
  .quote-card h2 { font-size: 1.12rem; }
  .quote-sub { margin-bottom: .8rem; }
  .quote-card form { gap: .6rem; }
  .quote-card input, .quote-card select, .quote-card .sel-btn { padding: .5rem .7rem; font-size: .86rem; }
  .q-submit { padding: .78rem 1.5rem; font-size: .93rem; }
  .q-note { font-size: .68rem; }
}

@media (max-width: 1024px) {
  .cards-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 6.5rem; }
  .seg-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .depo-grid { grid-template-columns: 1fr; }
  .custom-band { grid-template-columns: 1fr; padding: 2.2rem 1.8rem; gap: 1.8rem; }
  .sobre-grid, .atuacao-grid, .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-actions { justify-self: start; width: 100%; max-width: 420px; }
  .modelo { grid-template-columns: 1fr; gap: 2rem; }
  .modelo-invert .modelo-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 4rem 0; }
  .nav-links {
    position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; background: rgba(14, 23, 48, .97); opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .nav-links a { font-size: 1.2rem; }
  .nav.menu-open .nav-links { opacity: 1; pointer-events: auto; z-index: 0; }
  .nav.menu-open { background: transparent; box-shadow: none; }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }
  .nav-burger { display: block; margin-left: auto; position: relative; z-index: 2; }
  .nav-cta { display: none; }
  .nav-logo { position: relative; z-index: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { padding: 1.1rem .6rem; }
  .cards-grid, .tech-grid { grid-template-columns: 1fr; }
  .galeria-track img { flex-basis: 50%; min-width: 50%; }
  .modelo-specs { grid-template-columns: repeat(2, 1fr); }
  .car-btn { width: 36px; height: 36px; }
  .road-layer, .road-truck { display: none; }
  .seg-grid, .steps-grid { grid-template-columns: 1fr; }
  .q-row { grid-template-columns: 1fr; }
  .quote-card { padding: 1.5rem 1.3rem 1.2rem; }
  /* no mobile, volta o select nativo (melhor experiência no toque) */
  .sel-btn, .sel-list { display: none !important; }
  .sel-native { display: block !important; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
