/* ============================================================
   DG Veículos — Public CSS
   ============================================================ */

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-glow: rgba(220, 38, 38, 0.35);
  --dark: #0a0a0f;
  --dark-2: #141414;
  --dark-3: #1d1d1d;
  --gray: #2a2a2a;
  --text: #e0e0e0;
  --text-muted: #999999;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 3px;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 700;
}

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

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  background: var(--red);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--red-glow);
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.15s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: white !important;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-wpp:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.btn-menu-mobile {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  z-index: 99;
  animation: slideDown 0.2s ease;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.15s;
}

.mobile-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .btn-wpp {
    display: none;
  }

  .btn-menu-mobile {
    display: block;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(180, 0, 0, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(120, 0, 0, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0f 0%, #130808 40%, #0a0a0f 100%);
}

/* Grid lines decorativas */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Linha de velocidade decorativa */
.hero-speedline {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.4) 30%, rgba(220, 38, 38, 0.1) 70%, transparent);
  transform: translateY(-50%) rotate(-8deg);
}

.hero-speedline-2 {
  top: 45%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.15) 40%, transparent);
  transform: translateY(-50%) rotate(-8deg);
  animation: speedPulse 3s ease-in-out infinite;
}

.hero-speedline-3 {
  top: 55%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2) 50%, transparent);
  transform: translateY(-50%) rotate(-8deg);
  animation: speedPulse 3s ease-in-out 1s infinite;
}

@keyframes speedPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Círculo de glow */
.hero-glow {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 700px;
}

.hero-title span {
  color: var(--red);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 36px;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #fca5a5;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
  margin: 0 0 48px;
}

/* ============================================================
   VEHICLE CARDS
   ============================================================ */

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

.car-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(220, 38, 38, 0.2);
}

.car-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}

.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.car-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 3rem;
}

.car-badge-vendido {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(245, 158, 11, 0.9);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.car-badge-destaque {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.car-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-card-marca {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.car-card-nome {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.car-card-versao {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.car-card-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.car-spec-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.car-spec-item i {
  color: var(--red);
  width: 14px;
  text-align: center;
  font-size: 0.7rem;
}

.car-card-preco {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.car-card-preco small {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.car-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.car-badge-item {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.car-badge-troca {
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
}

.car-badge-financ {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.car-badge-unico {
  background: rgba(168, 85, 247, 0.12);
  color: #d8b4fe;
}

.car-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-card-wpp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(22,163,74,0.25);
}

.btn-card-wpp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.4);
  color: white;
}

.btn-card-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.btn-card-detail:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

/* ============================================================
   FILTERS
   ============================================================ */

.filters-bar {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.filters-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
}

.filter-select,
.filter-input {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.875rem;
  width: 100%;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--red);
  outline: none;
}

.filter-select option {
  background: var(--dark-2);
}

.filter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.btn-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-filter:hover {
  background: #ef4444;
}

/* ============================================================
   SOBRE & DIFERENCIAIS
   ============================================================ */

.sobre-section {
  background: var(--dark-2);
}

.diferencial-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.diferencial-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-3px);
}

.diferencial-icon {
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.diferencial-card:hover .diferencial-icon {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 20px var(--red-glow);
}

/* ============================================================
   CONTATO
   ============================================================ */

.contact-form-input,
.contact-form-textarea {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  width: 100%;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: var(--red);
  outline: none;
  background: rgba(255, 255, 255, 0.03);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #555555;
}

.btn-contact-submit {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px var(--red-glow);
  width: 100%;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.45);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   VEHICLE DETAIL
   ============================================================ */

.veiculo-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.veiculo-panel-sticky {
  position: sticky;
  top: 86px;
}

@media (max-width: 960px) {
  .veiculo-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .veiculo-panel-sticky {
    position: static;
  }
}

.gallery-main {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}

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

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumb {
  flex: 1;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: var(--dark-3);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-glow);
}

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

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 45%;
}

.spec-table td:last-child {
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.btn-quero-carro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
  width: 100%;
  text-align: center;
}

.btn-quero-carro:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.45);
}

.opcional-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 5px 0;
}

.opcional-item i {
  color: var(--red);
  font-size: 0.7rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 20px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: #555555;
}

/* ============================================================
   WHATSAPP BUTTON FIXO
   ============================================================ */

.wpp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 6px 24px rgba(22, 163, 74, 0.45);
  z-index: 200;
  transition: all 0.3s;
  animation: wppPulse 3s ease-in-out infinite;
}

.wpp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(22, 163, 74, 0.6);
}

@keyframes wppPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.45);
  }

  50% {
    box-shadow: 0 6px 32px rgba(22, 163, 74, 0.7), 0 0 0 8px rgba(22, 163, 74, 0.1);
  }
}

/* ============================================================
   UTILITIES / ANIMATIONS
   ============================================================ */

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
  max-width: 1280px;
  margin: 0 auto;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--dark-2);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.15s;
}

.page-btn:hover,
.page-btn.active {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

/* Alert messages */
.alert {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #86efac;
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: #fca5a5;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cars-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .wpp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .hero-stats {
    gap: 24px;
  }
}