/* ── Tokens ──────────────────────────────────────────────────────────────────── */
:root {
  --bg:         #0a0a0a;
  --surface:    #111111;
  --surface2:   #181818;
  --border:     #222222;
  --border-dim: #1a1a1a;
  --blue:       #3b82f6;
  --blue-glow:  rgba(59,130,246,.18);
  --blue-dim:   #1d4ed8;
  --silver:     #c0c0c0;
  --text:       #f0f0f0;
  --muted:      #888888;
  --muted2:     #555555;
  --green:      #25d366;
  --red:        #ef4444;
  --radius:     12px;
  --nav-h:      68px;
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  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; }

/* ── Nav ─────────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: lighten;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  padding: .48rem 1.1rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  transition: background .2s, transform .1s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-dim); transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .95rem; color: var(--text); }
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  padding: .72rem 1.6rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  transition: background .2s, transform .12s, box-shadow .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: var(--text);
  padding: .72rem 1.6rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .12s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--silver); transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: #fff;
  padding: .72rem 1.6rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: filter .2s, transform .12s;
  cursor: pointer;
}
.btn-green:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 55%, rgba(59,130,246,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.25);
  color: var(--blue);
  padding: .32rem .9rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--blue); }
.hero-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
  mix-blend-mode: lighten;
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Section utils ───────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; }
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .45rem;
}
.section-title {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: .5rem;
}
.section-sub {
  color: var(--muted);
  font-size: .9rem;
  max-width: 460px;
  margin-bottom: 2.25rem;
}

/* ── Vehicle Card ────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  flex-shrink: 0;
  width: 285px;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,.45);
  box-shadow: 0 0 0 1px rgba(59,130,246,.2), 0 12px 40px rgba(59,130,246,.12);
}
.card-thumb {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  background: var(--surface);
}
.card-thumb-placeholder {
  width: 100%;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.card-body { padding: 1rem 1.15rem 1.2rem; }
.card-tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 600;
  padding: .17rem .55rem;
  border-radius: 4px;
  margin-bottom: .45rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tag-gas     { background: rgba(59,130,246,.12);  color: #60a5fa; }
.tag-diesel  { background: rgba(168,85,247,.12); color: #c084fc; }
.tag-elec    { background: rgba(34,197,94,.12);  color: #4ade80; }
.tag-hibrido { background: rgba(20,184,166,.12); color: #2dd4bf; }
.tag-moto    { background: rgba(249,115,22,.12); color: #fb923c; }

.card-title { font-size: .9rem; font-weight: 600; margin-bottom: .35rem; line-height: 1.35; }
.card-meta {
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: .65rem;
}
.card-price { font-size: 1.3rem; font-weight: 700; color: var(--blue); line-height: 1; }

.card-sold-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(239,68,68,.92);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Carousel ────────────────────────────────────────────────────────────────── */
#destaques {
  background: var(--surface);
  padding: 3.5rem 0;
}
.carousel-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.carousel-header h2 { font-size: 1.25rem; font-weight: 700; }
.carousel-nav { display: flex; gap: .5rem; }
.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.carousel-btn:hover { border-color: var(--blue); background: rgba(59,130,246,.1); }

/* The fade effect lives here — no pseudo-elements needed */
.carousel-fade-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .5rem 2.5rem 1.25rem;
  cursor: grab;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel-track .card { scroll-snap-align: start; }

/* ── Inventory grid ──────────────────────────────────────────────────────────── */
#inventario { padding: 5rem 2rem; }
.filter-bar {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .38rem .95rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--text); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.inventory-grid .card { width: 100%; }
.no-vehicles {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: .9rem;
}

/* ── Services ────────────────────────────────────────────────────────────────── */
#servicos { background: var(--surface); padding: 5rem 2rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1rem;
}
.service-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: rgba(59,130,246,.35); transform: translateY(-3px); }
.service-icon { font-size: 1.7rem; margin-bottom: .55rem; }
.service-name { font-size: .88rem; font-weight: 600; margin-bottom: .25rem; }
.service-desc { font-size: .76rem; color: var(--muted); line-height: 1.5; }

/* ── About ───────────────────────────────────────────────────────────────────── */
#sobre { padding: 5rem 2rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-items { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.trust-item { display: flex; gap: .85rem; align-items: flex-start; }
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(59,130,246,.5);
}
.trust-item h4 { font-size: .88rem; font-weight: 600; margin-bottom: .15rem; }
.trust-item p  { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.rating-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.stars { font-size: 1.5rem; margin-bottom: .3rem; color: #fbbf24; letter-spacing: 2px; }
.rating-num { font-size: 3.2rem; font-weight: 700; line-height: 1; color: var(--text); }
.rating-label { color: var(--muted); font-size: .78rem; margin-top: .35rem; }
.rating-quote { font-size: .8rem; color: var(--muted); margin-top: 1rem; font-style: italic; line-height: 1.6; }
.rating-author { font-size: .75rem; color: var(--muted2); margin-top: .35rem; }
.since { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.since-num { font-size: 1.8rem; font-weight: 700; color: var(--blue); line-height: 1; }
.since-label { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* ── Contact ─────────────────────────────────────────────────────────────────── */
#contacto { background: var(--surface); padding: 5rem 2rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: 1.25rem; }
.contact-row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.contact-row-text small { display: block; font-size: .7rem; color: var(--muted); margin-bottom: 1px; }
.contact-row-text a,
.contact-row-text span  { font-size: .88rem; font-weight: 500; color: var(--text); }
.contact-row-text a:hover { color: var(--blue); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .4rem 0; font-size: .82rem; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child  { text-align: right; font-weight: 500; }
.closed { color: var(--muted) !important; font-weight: 400 !important; }
.map-link {
  margin-top: 1.25rem;
  height: 110px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .4rem;
  color: var(--muted);
  font-size: .82rem;
  transition: border-color .2s, color .2s;
}
.map-link:hover { border-color: var(--blue); color: var(--blue); }
.map-link-icon { font-size: 1.4rem; }

/* ── Contact Form ────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: .62rem .85rem;
  font-size: .88rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-group select option { background: var(--surface2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { margin-top: 1.25rem; }
.form-msg {
  padding: .65rem .9rem;
  border-radius: 8px;
  font-size: .82rem;
  display: none;
  margin-top: .75rem;
}
.form-msg.success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #4ade80;
  display: block;
}
.form-msg.error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
  display: block;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo .jm { font-weight: 700; color: var(--blue); }
.footer-logo .cl { font-weight: 300; color: var(--silver); letter-spacing: .08em; }
.footer-copy  { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .75rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.admin-link { font-size: .75rem !important; color: var(--border) !important; }
.admin-link:hover { color: var(--muted2) !important; }

/* ── WhatsApp Float ──────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── Vehicle Detail ──────────────────────────────────────────────────────────── */
.vehicle-detail { padding: calc(var(--nav-h) + 2.5rem) 2rem 5rem; }
.vehicle-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 2rem;
  transition: color .2s;
}
.vehicle-back:hover { color: var(--text); }
.vehicle-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Gallery */
.gallery-main {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface2);
  display: block;
  cursor: zoom-in;
}
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .6rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .25rem;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, opacity .2s;
  opacity: .6;
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--blue); opacity: 1; }

/* Info panel */
.vehicle-info { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.vehicle-tags { display: flex; gap: .4rem; margin-bottom: .9rem; flex-wrap: wrap; }
.vehicle-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.vehicle-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.spec-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem .9rem;
}
.spec-label { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
.spec-value { font-size: .9rem; font-weight: 600; }
.vehicle-actions { display: flex; flex-direction: column; gap: .75rem; }
.vehicle-desc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  white-space: pre-line;
}

/* Interest form */
.interest-form {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.interest-form h3 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── Sold overlay ────────────────────────────────────────────────────────────── */
.sold-overlay {
  text-align: center;
  padding: 2rem;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: var(--radius);
  color: #f87171;
  margin-top: 1rem;
}
.sold-overlay strong { display: block; font-size: 1.1rem; margin-bottom: .3rem; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .vehicle-layout { grid-template-columns: 1fr; }
  .vehicle-info { position: static; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .vehicle-specs { grid-template-columns: 1fr 1fr; }
  #inventario { padding: 3.5rem 1.25rem; }
  #servicos, #sobre, #contacto { padding: 3.5rem 1.25rem; }
  .container { padding: 0; }
  .rating-block { padding: 1.75rem 1.5rem; }
}
