/* ============================================================
   CONCEPT CAR — Design System
   Paleta: preto profundo, grafite, prata, champagne
   Tipos:  Archivo (display expandido + texto) · Michroma (rótulos técnicos)
   ============================================================ */

:root {
  --bg: #0B0B0C;
  --surface: #131315;
  --surface-2: #1A1A1D;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #EDEDEF;
  --muted: #9A9AA2;
  --faint: #5A5A62;
  --accent: #C7A468;
  --accent-bright: #E2C48D;
  --accent-dim: rgba(199, 164, 104, 0.14);
  --danger: #E07070;
  --radius: 4px;
  --container: 1240px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--accent); color: #0B0B0C; }

/* hidden sempre vence qualquer display definido em classe */
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

.display {
  font-family: 'Archivo', sans-serif;
  font-stretch: 125%;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
}

.eyebrow {
  font-family: 'Michroma', 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 14px;
}

.section-head .lead {
  color: var(--muted);
  max-width: 380px;
  font-size: 15px;
  padding-bottom: 6px;
}

/* ---------- Barra superior ---------- */

.topbar {
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 38px;
}

.topbar a { color: var(--muted); transition: color .2s; }
.topbar a:hover { color: var(--accent-bright); }
.topbar .sep { color: var(--faint); margin: 0 10px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(9, 9, 10, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand { flex-shrink: 0; }
.brand img { width: 280px; max-width: 46vw; height: auto; }

/* logo animada no header: toca uma vez e congela; corte central na faixa do texto.
   mix-blend-mode screen: o fundo preto do vídeo desaparece sobre o header escuro */
.brand-video {
  display: block;
  width: 280px;
  max-width: 46vw;
  height: 40px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.main-nav { display: flex; align-items: center; gap: 36px; }

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .28s ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  width: 42px; height: 42px;
  font-size: 18px;
  line-height: 1;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}

.btn-solid {
  background: var(--accent);
  color: #101010;
  position: relative;
  overflow: hidden;
}
.btn-solid:hover { background: var(--accent-bright); transform: translateY(-1px); }

.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  transform: translateX(-130%);
}
.btn-solid:hover::after { transition: transform .55s ease; transform: translateX(130%); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-bright); }

.btn-wa {
  background: transparent;
  border-color: rgba(37, 211, 102, 0.4);
  color: #4fd07a;
}
.btn-wa:hover { background: rgba(37, 211, 102, 0.08); border-color: #4fd07a; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 78% 30%, rgba(199, 164, 104, 0.07), transparent 65%),
    radial-gradient(ellipse 60% 60% at 15% 85%, rgba(255, 255, 255, 0.025), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 8%;
  width: 1px;
  height: 140%;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.10), transparent);
  transform: rotate(24deg);
  pointer-events: none;
  animation: beam-drift 11s ease-in-out infinite alternate;
}

@keyframes beam-drift {
  from { transform: rotate(24deg) translateX(0); opacity: .5; }
  to { transform: rotate(24deg) translateX(-160px); opacity: 1; }
}

.hero .container { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 72px; }

.hero-strip { z-index: 2; }

/* entrada orquestrada do hero */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.hero .eyebrow,
.hero h1,
.hero .sub,
.hero-actions { animation: rise .8s cubic-bezier(.2, .7, .25, 1) both; }

.hero h1 { animation-delay: .12s; }
.hero .sub { animation-delay: .26s; }
.hero-actions { animation-delay: .4s; }

.hero-strip .item { animation: rise .7s cubic-bezier(.2, .7, .25, 1) both; }
.hero-strip .item:nth-child(1) { animation-delay: .55s; }
.hero-strip .item:nth-child(2) { animation-delay: .68s; }
.hero-strip .item:nth-child(3) { animation-delay: .81s; }

.hero h1 {
  font-size: clamp(44px, 7.2vw, 104px);
  margin: 22px 0 28px;
  max-width: 13ch;
}

/* Assinatura: brilho que varre o título, como luz de showroom na lataria */
.sheen {
  background: linear-gradient(
    100deg,
    #EDEDEF 38%,
    #FFFDF6 46%,
    var(--accent-bright) 50%,
    #FFFDF6 54%,
    #EDEDEF 62%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen-sweep 7s ease-in-out infinite;
}

@keyframes sheen-sweep {
  0%, 55% { background-position: 130% 0; }
  85%, 100% { background-position: -40% 0; }
}

.hero .sub {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-strip {
  position: relative;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}

.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
}

.hero-strip .item {
  padding: 22px 28px 22px 0;
  border-right: 1px solid var(--line);
}
.hero-strip .item:last-child { border-right: none; }
.hero-strip .item + .item { padding-left: 28px; }

.hero-strip .label {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}

.hero-strip .value { font-size: 14.5px; color: var(--text); font-weight: 500; }

/* ---------- Letreiro de marcas ---------- */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #09090A;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 38s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.mq-set {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.mq-set span {
  font-family: 'Michroma', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.mq-set i {
  font-style: normal;
  color: var(--accent);
  opacity: .45;
  font-size: 9px;
}

@keyframes marquee-run { to { transform: translateX(-50%); } }

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

section.block { padding: 96px 0; }
section.block.tint { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* seção com vídeo de fundo (logo animada) */
.has-bg-video { position: relative; overflow: hidden; }

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .4;
  pointer-events: none;
}

/* véu: escurece as bordas para o conteúdo respirar sobre o vídeo */
.bg-video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(11, 11, 12, 0.55) 32%,
    rgba(11, 11, 12, 0.55) 68%,
    var(--bg) 100%
  );
}

.has-bg-video .container { position: relative; z-index: 2; }

/* ---------- Grid de veículos ---------- */

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vehicle-grid.featured-grid { grid-template-columns: repeat(3, 1fr); }

/* Cartão-placa: cada veículo como uma placa de especificação técnica */
.v-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
  animation: card-rise .65s cubic-bezier(.2, .7, .25, 1) backwards;
}

@keyframes card-rise {
  from { opacity: 0; transform: translateY(26px); }
}

.v-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }

.v-card .photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #101012;
}

.v-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.v-card:hover .photo img { transform: scale(1.04); }

/* varredura de luz na foto ao passar o mouse */
.v-card .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.14) 50%, transparent 58%);
  background-size: 260% 100%;
  background-position: 130% 0;
  pointer-events: none;
}

.v-card:hover .photo::after { animation: photo-sheen .9s ease forwards; }

@keyframes photo-sheen {
  from { background-position: 130% 0; }
  to { background-position: -50% 0; }
}

.v-card .badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.badge {
  font-family: 'Michroma', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  background: rgba(11,11,12,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.badge.gold { color: var(--accent-bright); border-color: rgba(199,164,104,0.45); }
.badge.reserved { color: #E2B84D; border-color: rgba(226,184,77,0.4); }

.v-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }

.v-card .title {
  font-size: 19px;
  font-weight: 700;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.v-card .version {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-card .specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 18px 0;
}

.v-card .spec { padding: 12px 0; }
.v-card .spec + .spec { border-left: 1px solid var(--line); padding-left: 16px; }

.v-card .spec .k {
  font-family: 'Michroma', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 3px;
}

.v-card .spec .v { font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }

.v-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.v-card .price {
  font-size: 22px;
  font-weight: 750;
  font-stretch: 110%;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
}

.v-card .more {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
}

.v-card:hover .more { color: var(--accent-bright); gap: 12px; }

.empty-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 64px 0;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}

/* ---------- Filtros (estoque) ---------- */

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-bar .field { flex: 1; min-width: 150px; }
.filter-bar .field.grow { flex: 2; min-width: 220px; }

.input, .select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s;
}

.input::placeholder { color: var(--faint); }
.input:focus, .select:focus { border-color: var(--accent); outline: none; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A9AA2' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.result-count { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.result-count strong { color: var(--accent-bright); }

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

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-grid .text p { color: var(--muted); margin-bottom: 18px; font-size: 15.5px; }
.about-grid .text p strong { color: var(--text); font-weight: 600; }

.pillars { display: flex; flex-direction: column; }

.pillar {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: baseline;
}

.pillar:last-child { border-bottom: 1px solid var(--line); }

.pillar .tag {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.pillar p { color: var(--muted); font-size: 14.5px; }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.info-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }

.info-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.info-item:first-child { border-top: 1px solid var(--line); }

.info-item .ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--accent);
}

.info-item .ico svg { width: 17px; height: 17px; }

.info-item .k {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 3px;
}

.info-item .v { font-size: 15px; font-weight: 500; }
.info-item .v a:hover { color: var(--accent-bright); }
.info-item .v .sub { display: block; color: var(--muted); font-size: 13.5px; font-weight: 400; }

.map-frame {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.map-frame iframe { display: block; width: 100%; height: 260px; border: 0; }

/* formulário */

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.lead-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.lead-form .hint { color: var(--muted); font-size: 14px; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }

.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.form-field textarea { min-height: 110px; resize: vertical; }

.form-msg { margin-top: 14px; font-size: 14px; display: none; }
.form-msg.ok { display: block; color: #6fce96; }
.form-msg.err { display: block; color: var(--danger); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: #09090A;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-grid .brand-col img { width: 240px; max-width: 100%; height: auto; margin-bottom: 18px; }
.footer-grid .brand-col p { color: var(--muted); font-size: 14px; max-width: 34ch; }

.footer-grid h4 {
  font-family: 'Michroma', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}

.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-grid ul a, .footer-grid ul li { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-grid ul a:hover { color: var(--accent-bright); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 12.5px;
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent-bright); }

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

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #22c55e;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
  transition: transform .2s;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

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

.v-page { padding: 48px 0 96px; }

.breadcrumb {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-bright); }
.breadcrumb .sep { margin: 0 10px; }

.v-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}

.gallery .main {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101012;
}

.gallery .main img { width: 100%; height: 100%; object-fit: cover; }

.gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery .thumbs button {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101012;
  padding: 0;
  opacity: .55;
  transition: opacity .2s, border-color .2s;
}

.gallery .thumbs button.active,
.gallery .thumbs button:hover { opacity: 1; border-color: var(--accent); }

.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }

.v-info .eyebrow { display: block; margin-bottom: 10px; }

.v-info h1 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.v-info .version { color: var(--muted); font-size: 16px; margin-top: 6px; }

.v-info .price-box {
  margin: 28px 0;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
}

.v-info .price-box .k {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}

.v-info .price-box .price {
  font-size: 36px;
  font-weight: 780;
  font-stretch: 112%;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.spec-table { border-top: 1px solid var(--line); margin: 8px 0 28px; }

.spec-table .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.spec-table .row .k {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  align-self: center;
}

.spec-table .row .v { font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }

.v-actions { display: flex; flex-direction: column; gap: 12px; }
.v-actions .btn { width: 100%; }

.v-desc { margin-top: 64px; max-width: 820px; }
.v-desc h2 { font-size: 22px; margin-bottom: 16px; }
.v-desc p { color: var(--muted); white-space: pre-line; }

.feature-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.chip {
  font-size: 13px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--muted);
  background: var(--surface);
}

.sold-note {
  margin: 28px 0;
  padding: 18px 22px;
  border: 1px solid rgba(224,112,112,.35);
  border-radius: var(--radius);
  color: var(--danger);
  font-size: 14.5px;
}

/* ---------- Lightbox de fotos do veículo ---------- */

.gallery .main img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 5, 6, 0.94);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
}

.lb-stage {
  max-width: 94vw;
  max-height: 88vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.lb-stage img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  transition: transform .3s ease;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.lb-stage img.zoomed {
  transform: scale(2.4);
  cursor: zoom-out;
}

.lb-btn {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(19, 19, 21, 0.8);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  transition: border-color .2s, color .2s;
}
.lb-btn:hover { border-color: var(--accent); color: var(--accent-bright); }

.lb-close { top: 22px; right: 22px; font-size: 15px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); padding-bottom: 4px; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); padding-bottom: 4px; }

.lb-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

@media (max-width: 768px) {
  .lb-btn { width: 40px; height: 40px; font-size: 17px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 14px; right: 14px; }
}

/* ---------- Modal público (solicitar contato) ---------- */

.pmodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.pmodal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 32px 30px;
  animation: pmodal-rise .35s cubic-bezier(.2, .7, .25, 1) both;
}

@keyframes pmodal-rise {
  from { opacity: 0; transform: translateY(18px); }
}

.pmodal-box h3 {
  font-size: 20px;
  font-weight: 750;
  font-stretch: 112%;
  text-transform: uppercase;
}

.pmodal-sub { color: var(--muted); font-size: 14px; margin: 4px 0 22px; }

.pmodal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
}
.pmodal-close:hover { color: var(--text); border-color: var(--accent); }

.pmodal .form-field { margin-bottom: 14px; }
.pmodal .form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.pmodal-ok { color: #6fce96; font-size: 15px; text-align: center; padding: 18px 0; }

@media (prefers-reduced-motion: reduce) {
  .pmodal-box { animation: none; }
}

/* ---------- Skeleton ---------- */

.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: sk 1.4s infinite;
  border-radius: var(--radius);
}
@keyframes sk { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

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

@media (max-width: 1024px) {
  .vehicle-grid, .vehicle-grid.featured-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .v-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section.block { padding: 64px 0; }

  .topbar .container { justify-content: center; }
  .topbar .left { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11,11,12,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .main-nav .btn { margin-top: 16px; }

  .nav-toggle { display: grid; place-items: center; }

  .brand img { width: 200px; }
  .brand-video { width: 200px; height: 30px; }

  .mq-set { gap: 40px; padding-right: 40px; }

  .hero-strip .container { grid-template-columns: 1fr; }
  .hero-strip .item { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .hero-strip .item + .item { padding-left: 0; }
  .hero-strip .item:last-child { border-bottom: none; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 32px; }

  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 26px 22px; }

  .pillar { grid-template-columns: 1fr; gap: 8px; }

  .gallery .thumbs { grid-template-columns: repeat(4, 1fr); }

  .wa-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

@media (max-width: 520px) {
  .vehicle-grid, .vehicle-grid.featured-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Movimento reduzido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sheen, .v-card .photo::after, .skeleton, .hero::after,
  .marquee-track, .v-card { animation: none !important; }
  .bg-video { display: none; }
  .hero .eyebrow, .hero h1, .hero .sub, .hero-actions, .hero-strip .item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .wa-float::before { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
