/* ============================================================
   TRON MOTORS — veiculos.css  (mobile-first)
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   TOPSTRIP — slim title bar, substitui o page-hero gigante
   ══════════════════════════════════════════════════════════════ */
.vcat-topstrip {
  background-color: #0c0c0e;
  background-image:
    repeating-linear-gradient(45deg,  transparent 0, transparent 3px, rgba(255,255,255,.04) 3px, rgba(255,255,255,.04) 4px, transparent 4px, transparent 8px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 3px, rgba(255,255,255,.018) 3px, rgba(255,255,255,.018) 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px, 8px 8px;
  border-bottom: 1px solid rgba(124,58,237,.18);
  position: relative;
}
/* Linha de glow na base */
.vcat-topstrip::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.35) 30%, rgba(124,58,237,.55) 50%, rgba(124,58,237,.35) 70%, transparent);
  pointer-events: none;
}

.vcat-topstrip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-4);
}

.vcat-topstrip__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
}

/* Breadcrumb compacto */
.vcat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .06em;
}
.vcat-breadcrumb a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.vcat-breadcrumb a:hover { color: var(--accent); }
.vcat-breadcrumb svg { color: rgba(255,255,255,.18); flex-shrink: 0; }

/* Linha título + stats */
.vcat-topstrip__title-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.vcat-topstrip__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: var(--weight-bold);
  color: #fff;
  line-height: 1.1;
  letter-spacing: .02em;
  margin: 0;
}
.vcat-topstrip__title span { color: var(--accent); }

/* Mini stats inline */
.vcat-topstrip__stats {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.vcat-stat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vcat-stat strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,.8);
  letter-spacing: 0;
}
.vcat-stat-sep {
  width: 1px; height: 16px;
  background: rgba(255,255,255,.1);
}

/* Botão filtros mobile (fica no topstrip) */
.veiculos-filter-btn {
  display: none;
  align-items: center;
  gap: var(--space-2);
  height: 36px;
  padding: 0 var(--space-4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: all var(--tr-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.veiculos-filter-btn:hover {
  background: rgba(124,58,237,.15);
  border-color: rgba(124,58,237,.35);
  color: #fff;
}
.veiculos-filter-btn.has-filters {
  background: rgba(124,58,237,.2);
  border-color: rgba(124,58,237,.5);
  color: #fff;
}
.veiculos-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: var(--weight-bold);
  padding: 0 4px;
}
@media (max-width: 900px) {
  .veiculos-filter-btn { display: inline-flex; }
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO DO CATÁLOGO
   ══════════════════════════════════════════════════════════════ */
.vcat-section {
  padding: var(--space-6) 0 var(--space-16);
  background: var(--surface-page);
}

/* ══════════════════════════════════════════════════════════════
   BARRA SUPERIOR (contador + sort)
   ══════════════════════════════════════════════════════════════ */
.veiculos-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.veiculos-count {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.veiculos-count strong {
  font-weight: var(--weight-bold);
  color: var(--text-primary);
}

.veiculos-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

/* Chips de filtros ativos — inline, scrollável */
.veiculos-chips {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 400px;
  min-width: 0;
}
.veiculos-chips::-webkit-scrollbar { display: none; }
.veiculos-chips:empty { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  padding: 0 var(--space-3);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: var(--weight-medium);
  color: var(--accent-text);
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-chip__remove {
  display: flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  border-radius: var(--radius-full);
  background: none; border: none;
  color: var(--accent-text);
  cursor: pointer; padding: 0;
  transition: background var(--tr-fast);
}
.filter-chip__remove:hover { background: rgba(124,58,237,.2); }
.filter-chip--clear {
  background: var(--gray-100);
  border-color: var(--border-base);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr-fast);
}
.filter-chip--clear:hover { background: var(--gray-200); color: var(--text-primary); }

/* Sort select */
.veiculos-sort {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.veiculos-sort-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-faint);
  letter-spacing: .06em;
  white-space: nowrap;
}
.veiculos-sort-select {
  height: 34px;
  padding: 0 28px 0 var(--space-3);
  background: var(--white);
  border: 1.5px solid var(--border-base);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: .04em;
  color: var(--text-secondary);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23626978' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  transition: border-color var(--tr-base);
}
.veiculos-sort-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }

/* ══════════════════════════════════════════════════════════════
   LAYOUT PRINCIPAL: sidebar + grid
   ══════════════════════════════════════════════════════════════ */
.veiculos-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 1100px) {
  .veiculos-layout { grid-template-columns: 220px 1fr; gap: var(--space-5); }
}
@media (max-width: 900px) {
  .veiculos-layout { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR DE FILTROS
   ══════════════════════════════════════════════════════════════ */
.sidebar-filters {
  background: var(--surface-card);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + var(--ann-h, 0px) + var(--space-4));
  max-height: calc(100vh - var(--header-h) - var(--ann-h, 0px) - var(--space-8));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
@media (max-width: 960px) {
  .sidebar-filters { top: calc(var(--header-h-mobile) + var(--ann-h, 0px) + var(--space-4)); max-height: calc(100vh - var(--header-h-mobile) - 32px); }
}
@media (max-width: 900px) {
  .sidebar-filters {
    position: fixed; top: 0; left: 0;
    width: 100%; max-width: 320px;
    height: 100%; max-height: 100dvh;
    border-radius: 0; z-index: calc(var(--z-modal) - 10);
    transform: translateX(-100%);
    transition: transform var(--tr-slow);
    box-shadow: var(--shadow-xl);
    border: none; border-right: 1px solid var(--border-base);
  }
  .sidebar-filters.is-open { transform: translateX(0); }
}

.sf-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-base);
  background: var(--surface-stripe);
  position: sticky; top: 0; z-index: 1;
}
.sf-title {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-secondary);
}
.sf-header-actions { display: flex; align-items: center; gap: var(--space-3); }
.sf-clear {
  font-family: var(--font-mono); font-size: var(--text-xs);
  color: var(--accent); letter-spacing: .06em;
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color var(--tr-fast);
}
.sf-clear:hover { color: var(--accent-hover); }
.sf-close {
  display: none;
  width: 26px; height: 26px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); background: var(--gray-100);
  border: 1px solid var(--border-base); color: var(--text-muted);
  cursor: pointer; transition: all var(--tr-fast);
}
.sf-close:hover { background: var(--gray-200); }
@media (max-width: 900px) { .sf-close { display: inline-flex; } }

.sf-section {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-light);
}
.sf-section:last-child { border-bottom: none; }
.sf-section-title {
  font-family: var(--font-mono); font-size: 0.62rem;
  font-weight: var(--weight-medium); letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: var(--space-3);
}

.sf-search { position: relative; }
.sf-search__icon {
  position: absolute; left: 10px; top: 50%;
  transform: translateY(-50%); color: var(--text-faint); pointer-events: none;
}
.sf-search__input {
  width: 100%; height: 34px;
  padding: 0 var(--space-3) 0 30px;
  background: var(--surface-page);
  border: 1.5px solid var(--border-base);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--text-primary); outline: none;
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}
.sf-search__input::placeholder { color: var(--text-faint); }
.sf-search__input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); background: var(--white); }

.sf-select {
  width: 100%; height: 34px;
  padding: 0 26px 0 var(--space-3);
  background: var(--surface-page);
  border: 1.5px solid var(--border-base);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--text-primary); outline: none;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23626978' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 9px center;
  transition: border-color var(--tr-base);
  margin-bottom: var(--space-2);
}
.sf-select:last-child { margin-bottom: 0; }
.sf-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); background-color: var(--white); }
.sf-select:disabled { opacity: 0.4; cursor: not-allowed; }

.sf-price {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: var(--space-2);
}
.sf-price-sep {
  color: var(--text-faint); font-size: var(--text-xs);
  text-align: center; padding-top: var(--space-5);
}
.sf-price-label {
  font-family: var(--font-mono); font-size: 0.58rem;
  color: var(--text-faint); letter-spacing: .08em;
  display: block; margin-bottom: var(--space-1);
}
.sf-price-input {
  width: 100%; height: 34px; padding: 0 var(--space-2);
  background: var(--surface-page);
  border: 1.5px solid var(--border-base);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: var(--text-xs);
  color: var(--text-primary); outline: none; text-align: right;
  transition: border-color var(--tr-base);
}
.sf-price-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); background: var(--white); }

.sf-apply { padding: var(--space-4) var(--space-5); border-top: 1px solid var(--border-base); }
.sf-apply .btn { width: 100%; justify-content: center; }

.sf-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,12,18,.55); backdrop-filter: blur(2px);
  z-index: calc(var(--z-modal) - 11);
}
.sf-overlay.is-active { display: block; }

/* ══════════════════════════════════════════════════════════════
   GRID DE VEÍCULOS
   ══════════════════════════════════════════════════════════════ */
.veiculos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 520px) {
  .veiculos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .veiculos-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

/* ══════════════════════════════════════════════════════════════
   VEHICLE CARD — definição completa aqui pois index.css
   não é carregado nesta página
   ══════════════════════════════════════════════════════════════ */

/* Card base */
.vehicle-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr-base), transform var(--tr-base), border-color var(--tr-base);
}
.vehicle-card:hover {
  box-shadow: 0 10px 36px rgba(16,19,26,.11), 0 0 0 1px rgba(124,58,237,.15);
  transform: translateY(-3px);
  border-color: rgba(124,58,237,.2);
}

/* Imagem */
.vc-img-link { display: block; flex-shrink: 0; }
.vc-img {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--gray-100);
  overflow: hidden;
}
.vc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s var(--ease);
}
.vehicle-card:hover .vc-img img { transform: scale(1.05); }

/* Gradiente sutil base da foto */
.vc-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(10,12,18,.2), transparent);
  pointer-events: none; z-index: 1;
}

/* Pill de ano */
.vc-year {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  background: rgba(10,12,18,.72);
  color: rgba(232,236,242,.92);
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600; line-height: 1;
  padding: 4px 8px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  letter-spacing: .04em; pointer-events: none;
}

/* Corpo */
.vc-body {
  padding: var(--space-4);
  display: flex; flex-direction: column; flex: 1; gap: 0; min-height: 0;
}

/* Linha topo */
.vc-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); margin-bottom: var(--space-2);
}
.vc-brand {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 500;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: .12em; line-height: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}

/* Badge seminovo / 0km */
.vc-badge {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  line-height: 1; padding: 3px 6px; border-radius: 4px; white-space: nowrap;
}
.vc-badge--used { background: var(--gray-100); color: var(--gray-500); border: 1px solid var(--gray-150); }
.vc-badge--new  { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }

/* Modelo — clamped a 2 linhas, font controlada aqui */
.vc-model {
  font-family: var(--font-display);
  font-size: var(--text-base); /* 1rem — compacto */
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: 1.25; letter-spacing: .01em;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.25em * 2);
  margin-bottom: var(--space-1);
}
.vc-model a { color: inherit; text-decoration: none; transition: color var(--tr-fast); }
.vc-model a:hover { color: var(--accent); }

/* Versão / tipo */
.vc-version {
  font-family: var(--font-body);
  font-size: 0.72rem; color: var(--text-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.4; margin-bottom: var(--space-3);
}

/* Specs km */
.vc-specs { display: flex; gap: var(--space-3); margin-bottom: 0; }
.vc-spec {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--text-muted); line-height: 1;
}
.vc-spec svg { flex-shrink: 0; color: var(--gray-400); }

/* Spacer */
.vc-spacer { flex: 1; min-height: var(--space-2); }

/* Footer: preço + CTAs */
.vc-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--border-light);
}
.vc-price-wrap { min-width: 0; flex: 1; }
.vc-price-label {
  font-family: var(--font-mono); font-size: 0.55rem;
  color: var(--text-faint); text-transform: uppercase;
  letter-spacing: .1em; display: block; margin-bottom: 2px; line-height: 1;
}
.vc-price {
  font-family: var(--font-display);
  font-size: var(--text-base); /* 1rem — não gigante */
  font-weight: var(--weight-bold);
  color: var(--text-primary); line-height: 1;
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* CTAs */
.vc-cta { display: flex; gap: var(--space-2); align-items: center; flex-shrink: 0; }
.vc-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 var(--space-4); height: 32px;
  background: var(--gray-900); color: #fff;
  border: 1.5px solid var(--gray-800); border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 0.7rem;
  font-weight: var(--weight-semibold); letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  transition: background var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.vc-btn-primary:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-1px); box-shadow: var(--shadow-accent);
}
.vc-btn-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: #f0fdf4; color: #16a34a; border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-sm); text-decoration: none; flex-shrink: 0;
  transition: background var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast);
}
.vc-btn-wa:hover { background: #25D366; color: #fff; border-color: #25D366; transform: translateY(-1px); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .13s; }
.reveal.d3 { transition-delay: .19s; }
.reveal.d4 { transition-delay: .25s; }

/* ══════════════════════════════════════════════════════════════
   SKELETON
   ══════════════════════════════════════════════════════════════ */
.vc-skeleton {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: skeletonPulse 1.5s ease-in-out infinite alternate;
}
.vc-skeleton__img {
  aspect-ratio: 3 / 2;
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-150) 50%, var(--gray-100) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
}
.vc-skeleton__body {
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.vc-skeleton__line {
  height: 10px; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-150) 50%, var(--gray-100) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
}
.vc-skeleton__line--sm  { width: 36%; }
.vc-skeleton__line--md  { width: 58%; }
.vc-skeleton__line--lg  { width: 80%; height: 14px; }
.vc-skeleton__price {
  height: 24px; width: 50%; margin-top: var(--space-2);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-150) 50%, var(--gray-100) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
}

/* ══════════════════════════════════════════════════════════════
   ESTADOS: VAZIO / ERRO
   ══════════════════════════════════════════════════════════════ */
.veiculos-empty,
.veiculos-error {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-4); padding: var(--space-16) var(--space-6);
  text-align: center;
}
.veiculos-empty__icon,
.veiculos-error__icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.veiculos-empty__icon {
  background: var(--gray-100); border: 1px solid var(--border-base); color: var(--text-faint);
}
.veiculos-error__icon {
  background: #FEF2F2; border: 1px solid #FECACA; color: #EF4444;
}
.veiculos-empty__title,
.veiculos-error__title {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--text-primary);
}
.veiculos-empty__desc,
.veiculos-error__desc {
  font-size: var(--text-sm); color: var(--text-faint); max-width: 300px; line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   PAGINAÇÃO
   ══════════════════════════════════════════════════════════════ */
.veiculos-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-2); margin-top: var(--space-10); flex-wrap: wrap;
}
.pag-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 var(--space-3);
  background: var(--white); border: 1.5px solid var(--border-base);
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: var(--text-xs);
  font-weight: var(--weight-semibold); letter-spacing: .05em;
  color: var(--text-muted); cursor: pointer;
  transition: all var(--tr-fast); text-decoration: none;
}
.pag-btn:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-light); }
.pag-btn.is-active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.pag-btn.is-disabled { opacity: .3; cursor: not-allowed; pointer-events: none; }
.pag-ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 36px;
  font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-faint);
}
.veiculos-pagination-info {
  text-align: center; margin-top: var(--space-3);
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-faint); letter-spacing: .07em; text-transform: uppercase;
}
