/* ============================================================
   Portal Multimarcas SP — Estilos do site público
   Tema: escuro premium | Fontes: Bebas Neue + Manrope
   Movimento: apenas transform/opacity + prefers-reduced-motion
   ============================================================ */

:root {
  --bg: #0b0b0d;
  --bg-2: #101014;
  --superficie: #16161a;
  --superficie-2: #1d1d23;
  --linha: rgba(255, 255, 255, .07);
  --linha-forte: rgba(255, 255, 255, .16);
  --texto: #f2f0ea;
  --texto-2: #b7b4ab;
  --mudo: #85827a;
  --ouro: #d4af37;
  --ouro-claro: #ecd27c;
  --ouro-fundo: rgba(212, 175, 55, .12);
  --whats: #1fae55;
  --erro: #e5484d;
  --sucesso: #46a758;
  --fonte-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --fonte-corpo: 'Manrope', 'Segoe UI', sans-serif;
  --raio: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-corpo);
  background: var(--bg);
  color: var(--texto);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Granulado sutil que dá textura ao fundo escuro */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--ouro); color: #141310; }

:focus-visible { outline: 2px solid var(--ouro); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.pular-conteudo {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--ouro);
  color: #141310;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  transition: transform .2s var(--ease);
}
.pular-conteudo:focus { transform: translateY(60px); }

/* ---- Tipografia auxiliar ---- */

.overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ouro);
}

.texto-ouro {
  background: linear-gradient(115deg, var(--ouro-claro), var(--ouro) 55%, #a8842a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Botões ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: 11px;
  font-family: var(--fonte-corpo);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), filter .18s var(--ease);
}
.btn:active { transform: scale(.97); }

.btn-ouro {
  background: linear-gradient(135deg, var(--ouro-claro), var(--ouro) 45%, #a8842a);
  color: #17140c;
}
.btn-ouro:hover { transform: translateY(-1px); filter: brightness(1.08); }

.btn-contorno {
  background: transparent;
  border: 1px solid var(--linha-forte);
  color: var(--texto);
}
.btn-contorno:hover { border-color: var(--ouro); color: var(--ouro); }

.btn-whats {
  background: var(--whats);
  color: #fff;
}
.btn-whats:hover { transform: translateY(-1px); filter: brightness(1.1); }

.btn-grande { padding: 16px 30px; font-size: 15px; }
.btn-bloco { width: 100%; }

/* ---- Cabeçalho ---- */

.topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, .84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--linha);
}
.topo.rolado { border-bottom-color: var(--linha-forte); }

.topo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}

.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
}

@media (max-width: 640px) {
  .logo-img { height: 44px; }
}

.menu { display: flex; align-items: center; gap: 26px; }
.menu > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-2);
  position: relative;
  padding: 6px 0;
  transition: color .18s var(--ease);
}
.menu > a:hover { color: var(--texto); }
.menu > a.ativo { color: var(--ouro); }
.menu > a.ativo::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--ouro);
}
.menu-whats { padding: 10px 18px; color: #fff !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--linha-forte);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--texto);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
body.menu-aberto .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-aberto .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-aberto .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Herói (página inicial) ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 11vh, 120px) 0 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 420px at 78% -10%, rgba(212, 175, 55, .14), transparent 65%),
    radial-gradient(520px 380px at -8% 30%, rgba(212, 175, 55, .06), transparent 60%);
}
.hero > .container { position: relative; z-index: 2; }

.hero h1 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(3.3rem, 9vw, 6.6rem);
  line-height: .96;
  letter-spacing: .015em;
  margin: 18px 0 16px;
  max-width: 900px;
}

.hero-sub {
  color: var(--texto-2);
  font-size: 16.5px;
  max-width: 560px;
}

.hero-busca {
  margin-top: 40px;
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
  max-width: 760px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  margin-top: 48px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--fonte-display);
  font-size: 2.3rem;
  color: var(--ouro);
  line-height: 1;
}
.stat-rotulo {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mudo);
  margin-top: 6px;
}

/* Entrada escalonada do herói (somente transform/opacity) */
.anim-hero {
  animation: subir .7s var(--ease) both;
  animation-delay: calc(var(--d, 0) * 80ms);
}
@keyframes subir {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Seções ---- */

.secao { padding: 72px 0; }
.secao-apertada { padding: 40px 0; }

.secao-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.secao-head h2 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  letter-spacing: .02em;
  margin-top: 8px;
}

.link-mais {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ouro);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .18s var(--ease);
}
.link-mais:hover { transform: translateX(3px); }

/* ---- Cards de veículo ---- */

.vgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.vcard {
  display: flex;
  flex-direction: column;
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.vcard:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, .5);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .75);
}

.vcard-foto {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.vcard-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.vcard:hover .vcard-foto img { transform: scale(1.06); }

.vcard-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.badge {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.badge-destaque { background: linear-gradient(135deg, var(--ouro-claro), var(--ouro)); color: #17140c; }
.badge-reservado { background: rgba(234, 179, 8, .18); color: #eab308; border: 1px solid rgba(234, 179, 8, .4); }
.badge-vendido { background: rgba(0, 0, 0, .65); color: #d5d3cc; border: 1px solid var(--linha-forte); }

.vcard-corpo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  flex: 1;
}
.vcard-titulo { font-size: 16.5px; font-weight: 800; }
.vcard-versao { font-size: 13px; color: var(--mudo); margin-top: 2px; }

.vcard-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-2);
  background: var(--bg-2);
  border: 1px solid var(--linha);
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.vcard-rodape {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--linha);
  padding-top: 14px;
}
.vcard-preco {
  font-family: var(--fonte-display);
  font-size: 1.75rem;
  letter-spacing: .02em;
  color: var(--ouro);
  line-height: 1;
}
.vcard-cta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mudo);
  transition: color .18s var(--ease);
}
.vcard:hover .vcard-cta { color: var(--ouro); }

.sem-resultados {
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--linha-forte);
  border-radius: var(--raio);
  color: var(--texto-2);
}
.sem-resultados strong { display: block; font-size: 18px; color: var(--texto); margin-bottom: 6px; }

/* ---- Vantagens ---- */

.vantagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 18px;
}
.vant-card {
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  padding: 26px 22px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.vant-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, .4); }
.vant-icone { color: var(--ouro); margin-bottom: 14px; }
.vant-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.vant-card p { font-size: 13.5px; color: var(--texto-2); }

/* ---- Faixa de chamada (CTA) ---- */

.cta-faixa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(212, 175, 55, .13), rgba(212, 175, 55, .03));
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 46px);
}
.cta-faixa h2 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: .02em;
}
.cta-faixa p { color: var(--texto-2); margin-top: 4px; }

/* ---- Cabeçalho de página interna ---- */

.pagina-head { padding: 56px 0 10px; }
.pagina-head h1 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  letter-spacing: .02em;
  margin-top: 10px;
}
.pagina-head .sub { color: var(--texto-2); max-width: 620px; margin-top: 8px; }

/* ---- Formulários ---- */

.campo { display: flex; flex-direction: column; }
.campo > label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mudo);
  margin-bottom: 7px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  font-family: var(--fonte-corpo);
  font-size: 14px;
  color: var(--texto);
  background: var(--bg-2);
  border: 1px solid var(--linha-forte);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mudo) 50%), linear-gradient(135deg, var(--mudo) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
textarea { resize: vertical; min-height: 120px; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ouro);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .16);
}
input::placeholder, textarea::placeholder { color: var(--mudo); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Filtros do estoque ---- */

.filtros {
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 28px;
}

.resultado-info { font-size: 13px; color: var(--mudo); margin: 20px 0 16px; }

/* ---- Paginação ---- */

.paginacao {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 44px 0 10px;
}
.paginacao a,
.paginacao span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--linha-forte);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--texto-2);
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.paginacao a:hover { border-color: var(--ouro); color: var(--ouro); }
.paginacao .atual { background: var(--ouro); border-color: var(--ouro); color: #17140c; }

/* ---- Página do veículo ---- */

.vdetalhe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: start;
  padding-top: 36px;
}

.migalhas { font-size: 13px; color: var(--mudo); padding-top: 28px; }
.migalhas a { color: var(--texto-2); }
.migalhas a:hover { color: var(--ouro); }

.galeria-principal {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--superficie);
  border: 1px solid var(--linha);
}
.galeria-principal img { width: 100%; height: 100%; object-fit: cover; }

.galeria-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.thumb {
  flex: 0 0 auto;
  width: 96px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--superficie);
  cursor: pointer;
  opacity: .55;
  transition: opacity .18s var(--ease), border-color .18s var(--ease);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { opacity: .9; }
.thumb.ativo { border-color: var(--ouro); opacity: 1; }

.vpainel {
  position: sticky;
  top: 94px;
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 26px;
}
.vpainel h1 { font-size: 22px; font-weight: 800; line-height: 1.3; }
.vpainel .versao { font-size: 14px; color: var(--mudo); margin-top: 2px; }
.vpainel-preco {
  font-family: var(--fonte-display);
  font-size: 2.7rem;
  color: var(--ouro);
  line-height: 1;
  margin: 18px 0 4px;
}
.vpainel-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 20px; }
.vpainel-divisor { border: 0; border-top: 1px solid var(--linha); margin: 20px 0; }
.vpainel-form { display: flex; flex-direction: column; gap: 10px; }
.vpainel-form h2 { font-size: 15px; font-weight: 800; }
.vpainel-obs { font-size: 12px; color: var(--mudo); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.spec {
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.spec-icone {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ouro-fundo);
  color: var(--ouro);
}
.spec-texto { min-width: 0; }
.spec-rotulo {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mudo);
}
.spec-valor { font-size: 15px; font-weight: 700; margin-top: 3px; }

.subtitulo {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: .02em;
  margin: 40px 0 16px;
}

.opcionais-lista { display: flex; flex-wrap: wrap; gap: 8px; }

.vdesc { color: var(--texto-2); line-height: 1.8; max-width: 72ch; }

.aviso-vendido {
  background: rgba(229, 72, 77, .12);
  border: 1px solid rgba(229, 72, 77, .4);
  color: #f2b8ba;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---- Alertas ---- */

.alerta {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin: 18px 0;
}
.alerta-sucesso { background: rgba(70, 167, 88, .14); border: 1px solid rgba(70, 167, 88, .4); color: #9fe0ac; }
.alerta-erro { background: rgba(229, 72, 77, .12); border: 1px solid rgba(229, 72, 77, .4); color: #f2b8ba; }

/* ---- Sobre ---- */

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.sobre-texto p { color: var(--texto-2); line-height: 1.85; margin-bottom: 16px; }
.info-card {
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 26px;
}
.info-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 14px;
}
.info-item {
  display: flex;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--linha);
  font-size: 14px;
  color: var(--texto-2);
}
.info-item:last-child { border-bottom: 0; }
.info-item svg { flex-shrink: 0; color: var(--ouro); margin-top: 2px; }
.info-item strong { display: block; color: var(--texto); font-size: 13.5px; }

/* ---- Contato ---- */

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.form-card {
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-linha { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---- Rodapé ---- */

.rodape {
  border-top: 1px solid var(--linha);
  background: #0a0a0c;
  margin-top: 84px;
}
.rodape-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding: 56px 0;
}
.rodape-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
}
.rodape-slogan { color: var(--mudo); font-size: 13.5px; margin-top: 6px; }
.rodape-social { display: flex; gap: 10px; margin-top: 18px; }
.rodape-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--linha-forte);
  border-radius: 50%;
  color: var(--texto-2);
  transition: color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.rodape-social a:hover { color: var(--ouro); border-color: var(--ouro); transform: translateY(-2px); }

.rodape-col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 16px;
}
.rodape-col ul { list-style: none; }
.rodape-col li { font-size: 14px; color: var(--texto-2); margin: 9px 0; }
.rodape-col a:hover { color: var(--ouro); }

.rodape-base { border-top: 1px solid var(--linha); padding: 18px 0; }
.rodape-base p { font-size: 12.5px; color: var(--mudo); }

/* ---- WhatsApp flutuante ---- */

.whats-flutuante {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px -8px rgba(31, 174, 85, .55);
  transition: transform .2s var(--ease);
}
.whats-flutuante:hover { transform: scale(1.08); }
.whats-flutuante::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whats);
  animation: pulso 2.6s var(--ease) infinite;
}
@keyframes pulso {
  0%   { opacity: .8; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.55); }
  100% { opacity: 0;  transform: scale(1.55); }
}

/* ---- Revelação ao rolar (ativada via JS) ---- */

html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.visivel {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

/* ---- Responsivo ---- */

@media (max-width: 1020px) {
  .vdetalhe { grid-template-columns: 1fr; gap: 28px; }
  .vpainel { position: static; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  .menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(13, 13, 16, .98);
    border-bottom: 1px solid var(--linha-forte);
    padding: 14px clamp(16px, 4vw, 32px) 20px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  body.menu-aberto .menu { opacity: 1; transform: none; pointer-events: auto; }
  .menu > a { padding: 12px 4px; font-size: 15px; border-bottom: 1px solid var(--linha); }
  .menu > a.ativo::after { display: none; }
  .menu-whats { margin-top: 10px; justify-content: center; }
  .menu-toggle { display: flex; }

  .hero-busca { grid-template-columns: 1fr; }
  .secao { padding: 54px 0; }
  .secao-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rodape-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px 0; }
  .form-linha { grid-template-columns: 1fr; }
  .cta-faixa { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .vgrid { grid-template-columns: 1fr; }
  .rodape-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px 32px; }
  .whats-flutuante { right: 14px; bottom: 14px; }
}

/* ---- Acessibilidade: movimento reduzido ---- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .whats-flutuante::after { display: none; }
}

/* ==== v2: carrossel, busca rápida, marcas, instagram, mapa ==== */

/* ---- Carrossel de banners ---- */

.banner-carrossel {
  position: relative;
  overflow: hidden;
}
.carrossel-track {
  display: flex;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.carrossel-slide {
  flex: 0 0 100%;
  position: relative;
  height: clamp(340px, 42vw, 540px);
}
.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-conteudo {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(11, 11, 13, .85), transparent);
  padding: clamp(24px, 5vw, 56px);
}
.slide-conteudo h2 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: .02em;
}
.slide-conteudo p { color: var(--texto-2); margin: 6px 0 16px; max-width: 560px; }

.slide-padrao {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(212, 175, 55, .12), transparent 70%),
    var(--bg-2);
  display: grid;
  place-items: center;
  text-align: center;
}
.slide-conteudo-padrao { padding: 24px; }
.slide-conteudo-padrao h2 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  margin: 10px 0 8px;
}
.slide-conteudo-padrao p:not(.overline) { color: var(--texto-2); margin-bottom: 20px; }

.carrossel-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 11, 13, .55);
  border: 1px solid var(--linha-forte);
  color: var(--texto);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.carrossel-seta:hover { border-color: var(--ouro); color: var(--ouro); }
.seta-prev { left: 16px; }
.seta-next { right: 16px; }

.carrossel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.carrossel-dots .dot {
  /* 10px visíveis + padding = área de toque de 24px */
  width: 10px;
  height: 10px;
  padding: 7px;
  box-sizing: content-box;
  background-clip: content-box;
  border-radius: 50%;
  border: 1px solid var(--linha-forte);
  background-color: transparent;
  cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.carrossel-dots .dot.ativo { background-color: var(--ouro); border-color: var(--ouro); }

/* ---- Busca rápida ---- */

.busca-rapida { padding: 56px 0 34px; }
.busca-titulo {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.busca-linha {
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.busca-linha form { flex: 1; }
.busca-caixa {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--superficie);
  border: 1px solid var(--linha-forte);
  border-radius: 14px;
  padding: 6px 6px 6px 48px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.busca-caixa:focus-within {
  border-color: var(--ouro);
  box-shadow: 0 0 0 3px var(--ouro-fundo);
}
.busca-caixa .busca-lupa {
  position: absolute;
  left: 16px;
  color: var(--mudo);
  pointer-events: none;
}
.busca-caixa input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  color: var(--texto);
  font-family: var(--fonte-corpo);
  font-size: 15.5px;
  padding: 12px 8px;
}
.busca-caixa .btn { flex-shrink: 0; }

.btn-contorno-ouro {
  background: transparent;
  border: 1.5px solid var(--ouro);
  color: var(--ouro);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-contorno-ouro:hover {
  background: var(--ouro-fundo);
  transform: translateY(-1px);
}

.sugestoes {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--superficie-2);
  border: 1px solid var(--linha-forte);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px -18px rgba(0, 0, 0, .8);
  display: none;
}
.sugestoes.aberta { display: block; }
.sugestao {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .15s;
}
.sugestao:hover,
.sugestao[aria-selected="true"] { background: rgba(212, 175, 55, .1); }
.sugestao img {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sugestao-info { min-width: 0; }
.sugestao-titulo {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sugestao-detalhe { font-size: 12px; color: var(--mudo); }
.sugestao-preco {
  margin-left: auto;
  font-family: var(--fonte-display);
  font-size: 1.15rem;
  color: var(--ouro);
  flex-shrink: 0;
}
.sugestao-marca {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ouro);
  background: var(--ouro-fundo);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
}
.sugestao-vazia { cursor: default; color: var(--mudo); font-size: 13.5px; }
.sugestao-vazia:hover { background: transparent; }

/* ---- Faixa de marcas ---- */

.marcas-faixa {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 22px 4px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.marcas-faixa::-webkit-scrollbar { height: 6px; }
.marcas-faixa::-webkit-scrollbar-thumb { background: var(--superficie-2); border-radius: 999px; }

.marca-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  min-width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #17171b;
  border-radius: 14px;
  padding: 18px 16px 14px;
  border: 2px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.marca-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .6);
}
.marca-card.selecionada {
  border-color: var(--ouro);
  box-shadow: 0 0 0 3px var(--ouro-fundo);
}
.marca-logo {
  height: 44px;
  width: auto;
  max-width: 84px;
  object-fit: contain;
}
.marca-monograma {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f2ecd8;
  color: #8a7420;
  display: grid;
  place-items: center;
  font-family: var(--fonte-display);
  font-size: 1.5rem;
}
.marca-nome { font-size: 13.5px; font-weight: 800; }
.marca-qtd { font-size: 11px; color: #85827a; }

/* ---- Instagram ---- */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.insta-grid .instagram-media {
  max-width: 100% !important;
  min-width: 0 !important;
  border-radius: 14px !important;
}

/* ---- Mapa no rodapé ---- */

.rodape-mapa {
  width: 100%;
  height: 320px;
  border-bottom: 1px solid var(--linha);
}
.rodape-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Responsivo v2 ---- */

@media (max-width: 860px) {
  .busca-rapida { padding: 40px 0 26px; }
  .busca-linha { flex-direction: column; }
  .busca-linha .btn-contorno-ouro { width: 100%; justify-content: center; }
  .carrossel-slide { height: clamp(260px, 60vw, 400px); }
  .carrossel-seta { width: 38px; height: 38px; }
  .seta-prev { left: 10px; }
  .seta-next { right: 10px; }
  .rodape-mapa { height: 240px; }
}

/* ==== v3: venda seu carro + financie ==== */
.venda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.venda-card {
  position: relative;
  overflow: hidden;
  background: var(--superficie);
  border: 1px solid var(--linha);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.venda-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, .45); }
.venda-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px 260px at 90% -20%, rgba(212, 175, 55, .14), transparent 65%);
}
.venda-icone { color: var(--ouro); position: relative; z-index: 2; }
.venda-card h3 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  letter-spacing: .02em;
  position: relative;
  z-index: 2;
}
.venda-card p { color: var(--texto-2); max-width: 46ch; position: relative; z-index: 2; }
.venda-card .btn { margin-top: 8px; position: relative; z-index: 2; }
@media (max-width: 860px) {
  .venda-grid { grid-template-columns: 1fr; }
}
