/* ================================================
   AUTOS ROSAS — Premium
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- Variables ---- */
:root {
  --blue:        #2AABDB;
  --blue-hover:  #40BAEC;
  --blue-dim:    rgba(42, 171, 219, 0.45);
  --blue-thin:   rgba(42, 171, 219, 0.14);
  --blue-bg:     rgba(42, 171, 219, 0.08);

  --black:   #060607;
  --dark-1:  #0A0A0C;
  --dark-2:  #101013;
  --dark-3:  #161619;
  --dark-4:  #1D1D21;
  --dark-5:  #272729;
  --dark-6:  #343437;

  --white:   #FFFFFF;
  --off-wh:  #ECEAE4;
  --gray-1:  #D4D2CC;
  --gray-2:  #9C9A94;
  --gray-3:  #5C5A56;
  --gray-4:  #38383A;

  --wa:      #25D366;

  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --nav-h:  72px;
  --t-fast: 0.16s ease;
  --t:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---- Utilities ---- */
.text-blue  { color: var(--blue); }
.text-gray  { color: var(--gray-2); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Section ---- */
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--off-wh);
  letter-spacing: -0.025em;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--gray-2);
  max-width: 520px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-b);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: var(--black);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,171,219,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.16);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.36);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-blue-ghost {
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid var(--blue-thin);
}
.btn-blue-ghost:hover {
  background: rgba(42,171,219,0.15);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  font-weight: 600;
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.28);
}
.btn-wa-ghost {
  background: rgba(37,211,102,.08);
  color: var(--wa);
  border: 1px solid rgba(37,211,102,.3);
}
.btn-wa-ghost:hover {
  background: rgba(37,211,102,.14);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 0.9rem;
  border-radius: 8px;
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(6,6,7,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-2);
  padding: 8px 15px;
  border-radius: 6px;
  transition: var(--t-fast);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,211,102,.1);
  color: var(--wa);
  border: 1px solid rgba(37,211,102,.28);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--t-fast);
}
.nav-wa:hover { background: rgba(37,211,102,.17); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: var(--t-fast);
}
.nav-burger:hover { background: rgba(255,255,255,.06); }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--t-fast);
}

/* Mobile Menu */
.m-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid var(--dark-5);
  z-index: 1001;
  padding: var(--nav-h) 0 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.m-menu.open { right: 0; }
.m-menu-links {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.m-menu-links a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-1);
  border-radius: 6px;
  transition: var(--t-fast);
}
.m-menu-links a:hover { background: var(--dark-4); color: var(--white); }
.m-menu-links a.active { color: var(--blue); }
.m-menu-wa {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(37,211,102,.1);
  color: var(--wa);
  border: 1px solid rgba(37,211,102,.28);
  padding: 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}
.m-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--dark-4);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}
.m-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.m-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-1);
}
.hero-photo {
  position: absolute; inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(6,6,7,0.96) 0%,
    rgba(6,6,7,0.84) 42%,
    rgba(6,6,7,0.52) 65%,
    rgba(6,6,7,0.24) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--nav-h) 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s ease .2s forwards;
}
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--blue); border-radius: 2px; }
.hero-eyebrow-text {
  font-family: var(--font-b);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--off-wh);
  opacity: 0;
  animation: fadeUp .85s ease .36s forwards;
}
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--gray-2);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .85s ease .52s forwards;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .85s ease .66s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}
.hero-scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--dark-5);
  border-bottom: 1px solid var(--dark-5);
  background: var(--dark-1);
}
.marquee-track {
  display: flex; gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-b);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-3); white-space: nowrap;
  display: flex; align-items: center; gap: 9px;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats-band {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-5);
  border-bottom: 1px solid var(--dark-5);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid var(--dark-5);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-val {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.vehicle-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-5);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.vehicle-card:hover {
  border-color: rgba(42,171,219,.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,.5), 0 0 0 1px rgba(42,171,219,.08);
}
.v-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-3);
}
.v-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.vehicle-card:hover .v-img img { transform: scale(1.05); }
.v-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--dark-3);
}
.v-img-ph i { font-size: 2.4rem; color: var(--dark-6); }
.v-img-ph span { font-size: 0.7rem; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.12em; }
.v-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(6,6,7,0.72);
  backdrop-filter: blur(6px);
  color: var(--gray-1);
  font-size: 0.72rem; font-weight: 500;
  padding: 4px 10px; border-radius: 4px;
}
.v-price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--blue);
  color: var(--black);
  font-family: var(--font-h);
  font-size: 0.8rem; font-weight: 700;
  padding: 4px 12px; border-radius: 4px;
}
.v-body { padding: 18px 20px 20px; }
.v-brand {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 3px;
}
.v-name {
  font-family: var(--font-h);
  font-size: 1.1rem; font-weight: 600;
  color: var(--off-wh);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.v-specs {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 16px;
}
.v-spec {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--dark-4);
  border: 1px solid var(--dark-5);
  padding: 4px 9px; border-radius: 4px;
  font-size: 0.73rem; color: var(--gray-2);
}
.v-spec i { font-size: 0.6rem; color: var(--blue); }
.v-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--dark-5);
  padding-top: 14px;
}
.v-price {
  font-family: var(--font-h);
  font-size: 1.4rem; font-weight: 700;
  color: var(--off-wh); letter-spacing: -0.02em;
}
.v-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,.1); color: var(--wa);
  border: 1px solid rgba(37,211,102,.3);
  padding: 8px 14px; border-radius: 6px;
  font-size: 0.77rem; font-weight: 500;
  transition: var(--t-fast); text-decoration: none; cursor: pointer;
}
.v-wa:hover { background: rgba(37,211,102,.18); }

/* ============================================================
   FILTERS
   ============================================================ */
.filters {
  background: var(--dark-2);
  border: 1px solid var(--dark-5);
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 32px;
  display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end;
}
.f-group { flex: 1; min-width: 140px; }
.f-label {
  display: block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3); margin-bottom: 7px;
}
.f-select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  color: var(--gray-1);
  padding: 10px 34px 10px 12px; border-radius: 6px;
  font-family: var(--font-b); font-size: 0.875rem;
  cursor: pointer; transition: var(--t-fast); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2210%22 height=%226%22%3E%3Cpath d=%22M1 1l4 4 4-4%22 stroke=%22%232AABDB%22 stroke-width=%221.5%22 fill=%22none%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.f-select:focus { outline: none; border-color: var(--blue); }
.f-select option { background: var(--dark-3); }
.f-btn { flex-shrink: 0; align-self: flex-end; }
.f-results { font-size: 0.84rem; color: var(--gray-3); margin-bottom: 24px; }
.f-results strong { color: var(--gray-1); }
.no-results { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--gray-3); }
.no-results i { font-size: 2.2rem; display: block; margin-bottom: 14px; color: var(--dark-6); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3); margin-bottom: 7px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  color: var(--off-wh);
  padding: 13px 15px; border-radius: 6px;
  font-family: var(--font-b); font-size: 0.9rem;
  transition: var(--t-fast);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-4); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--blue); background: var(--dark-4);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2210%22 height=%226%22%3E%3Cpath d=%22M1 1l4 4 4-4%22 stroke=%22%232AABDB%22 stroke-width=%221.5%22 fill=%22none%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-select option { background: var(--dark-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--blue-bg); border: 1px solid var(--blue-thin);
  border-radius: 6px; padding: 13px 15px;
  font-size: 0.8rem; color: var(--gray-2); line-height: 1.6; margin-top: 4px;
}
.form-note i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 155px 0 80px;
  overflow: hidden;
  background: var(--dark-1);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,6,7,.82) 0%,
    rgba(6,6,7,.92) 55%,
    rgba(6,6,7,1)   100%
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--off-wh);
}
.page-hero-sub { font-size: 0.95rem; color: var(--gray-2); max-width: 540px; line-height: 1.8; }
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .25;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feat-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-5);
  border-radius: 10px;
  padding: 30px 26px;
  transition: var(--t);
}
.feat-card:hover {
  border-color: rgba(42,171,219,.3);
  background: var(--dark-3);
  transform: translateY(-3px);
}
.feat-icon {
  width: 44px; height: 44px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-thin);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blue);
  margin-bottom: 18px;
}
.feat-title {
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 10px; color: var(--off-wh);
}
.feat-text { font-size: 0.875rem; color: var(--gray-2); line-height: 1.75; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step {
  background: var(--dark-2);
  border: 1px solid var(--dark-5);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}
.step:hover { border-color: rgba(42,171,219,.3); }
.step-num {
  font-family: var(--font-h);
  font-size: 2.4rem; font-weight: 700;
  color: var(--blue); opacity: 0.4;
  line-height: 1; margin-bottom: 18px;
}
.step-title {
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 10px; color: var(--off-wh);
}
.step-text { font-size: 0.875rem; color: var(--gray-2); line-height: 1.75; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img {
  position: relative; overflow: hidden;
  border-radius: 12px; aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.about-img:hover img { transform: scale(1.03); }
.about-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-3); font-size: 4rem; color: var(--dark-6);
}
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(42,171,219,.14);
  border-radius: inherit; pointer-events: none;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.about-badge::before { content: ''; width: 20px; height: 1.5px; background: var(--blue); border-radius: 2px; }
.about-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 18px; color: var(--off-wh);
}
.about-text { font-size: 0.92rem; color: var(--gray-2); line-height: 1.82; margin-bottom: 14px; }
.about-nums {
  display: flex; gap: 32px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--dark-5); flex-wrap: wrap;
}
.a-num-val {
  font-family: var(--font-h);
  font-size: 2rem; font-weight: 700;
  color: var(--blue); line-height: 1; margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.a-num-lbl { font-size: 0.7rem; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; padding: 110px 0; text-align: center; overflow: hidden; }
.cta-band-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.cta-band-overlay {
  position: absolute; inset: 0;
  background: rgba(6,6,7,.88);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 16px; color: var(--off-wh);
}
.cta-band-sub {
  font-size: 0.95rem; color: var(--gray-2);
  max-width: 480px; margin: 0 auto 44px; line-height: 1.8;
}
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CARTA TEASER
   ============================================================ */
.carta-teaser { position: relative; overflow: hidden; }
.carta-teaser-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.carta-teaser-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,6,7,.97) 0%,
    rgba(6,6,7,.88) 55%,
    rgba(6,6,7,.78) 100%
  );
}
.carta-teaser-content { position: relative; z-index: 1; padding: 100px 0; }
.carta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 28px; align-items: start; }
.contact-card { background: var(--dark-2); border: 1px solid var(--dark-5); border-radius: 12px; padding: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue-bg); border: 1px solid var(--blue-thin);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.9rem;
}
.contact-item-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-3); margin-bottom: 4px;
}
.contact-item-value { font-size: 0.92rem; color: var(--off-wh); font-weight: 400; }
.contact-item-value a { color: var(--blue); }
.hours-card { background: var(--dark-2); border: 1px solid var(--dark-5); border-radius: 10px; padding: 26px; margin-top: 12px; }
.hours-title {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hours-title i { color: var(--blue); }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--dark-5); font-size: 0.875rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray-2); }
.hours-time { font-weight: 600; color: var(--off-wh); }
.hours-time.closed { color: var(--gray-4); font-weight: 400; }
.wa-cta-block {
  background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.2);
  border-radius: 10px; padding: 32px; text-align: center; margin-bottom: 16px;
}
.wa-cta-icon {
  width: 54px; height: 54px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--wa); margin: 0 auto 16px;
}
.wa-cta-title { font-family: var(--font-h); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; color: var(--off-wh); }
.wa-cta-sub { font-size: 0.875rem; color: var(--gray-2); margin-bottom: 20px; line-height: 1.7; }

/* ============================================================
   A LA CARTA page
   ============================================================ */
.carta-form-card {
  background: var(--dark-2); border: 1px solid var(--dark-5); border-radius: 12px; padding: 40px;
}
.promise-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.promise-item { display: flex; gap: 14px; }
.promise-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-bg); border: 1px solid var(--blue-thin);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.85rem;
}
.promise-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; color: var(--off-wh); }
.promise-text { font-size: 0.84rem; color: var(--gray-2); line-height: 1.7; }

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

/* Hero */
.vd-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-1);
  padding-top: var(--nav-h);
}
.vd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.vd-hero:hover .vd-hero-bg { transform: scale(1.025); }
.vd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,7,.22) 0%,
    rgba(6,6,7,.55) 40%,
    rgba(6,6,7,.88) 72%,
    rgba(6,6,7,1) 100%
  );
}
.vd-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 52px 0 60px;
}
.vd-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 32px;
}
.vd-hero-breadcrumb a { color: rgba(255,255,255,.4); transition: var(--t-fast); }
.vd-hero-breadcrumb a:hover { color: var(--blue); }
.vd-hero-breadcrumb i { font-size: .5rem; }
.vd-hero-breadcrumb span:last-child { color: rgba(255,255,255,.65); }
.vd-hero-brand {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.vd-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--off-wh);
  margin-bottom: 24px;
  line-height: 1.08;
  max-width: 820px;
}
.vd-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.vd-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gray-1);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
}
.vd-hero-pill i { color: var(--blue); font-size: .68rem; }
.vd-hero-bottom-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.vd-hero-price-wrap { display: flex; flex-direction: column; }
.vd-hero-price-label {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 2px;
}
.vd-hero-price {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.vd-hero-price-note { font-size: .72rem; color: var(--gray-3); }

@media (max-width: 768px) {
  .vd-hero { min-height: 70vh; }
  .vd-hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .vd-hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .vd-hero-bottom-row .btn { width: 100%; justify-content: center; }
}

.vd-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0 80px;
}

/* Gallery */
.vd-gallery { position: sticky; top: calc(var(--nav-h) + 20px); }
.vd-main-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark-3);
  border-radius: 10px;
  cursor: zoom-in;
  margin-bottom: 10px;
}
.vd-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vd-main-img:hover img { transform: scale(1.03); }
.vd-main-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--dark-3);
}
.vd-main-img-ph i { font-size: 3rem; color: var(--dark-6); }
.vd-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.vd-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t-fast);
  background: var(--dark-3);
}
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vd-thumb.active { border-color: var(--blue); }
.vd-thumb:hover { border-color: var(--blue-dim); }

/* Panel info */
.vd-panel { padding-top: 4px; }
.vd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--gray-3);
  margin-bottom: 24px;
}
.vd-breadcrumb a { color: var(--gray-3); transition: var(--t-fast); }
.vd-breadcrumb a:hover { color: var(--blue); }
.vd-breadcrumb-sep { color: var(--dark-6); }
.vd-brand {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.vd-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--off-wh); margin-bottom: 22px;
  line-height: 1.15;
}
.vd-price-block {
  display: flex; align-items: baseline; gap: 10px;
  padding: 18px 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-5);
  border-radius: 10px;
  margin-bottom: 24px;
}
.vd-price {
  font-family: var(--font-h);
  font-size: 2.2rem; font-weight: 700;
  color: var(--blue); letter-spacing: -0.03em;
}
.vd-price-note { font-size: 0.78rem; color: var(--gray-3); }

.vd-specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-bottom: 24px;
}
.vd-spec-item {
  background: var(--dark-2); border: 1px solid var(--dark-5);
  border-radius: 8px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.vd-spec-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3);
}
.vd-spec-value {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 600;
  color: var(--off-wh);
}
.vd-spec-icon {
  font-size: 0.75rem; color: var(--blue); margin-bottom: 6px;
}

.vd-cta-block { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }

.vd-guarantee {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-bg); border: 1px solid var(--blue-thin);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.82rem; color: var(--gray-1);
}
.vd-guarantee i { color: var(--blue); font-size: 0.9rem; flex-shrink: 0; }

/* Equipment section */
.vd-equip {
  padding: 72px 0;
  background: var(--dark-1);
  border-top: 1px solid var(--dark-5);
}
.vd-equip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 40px;
}
.vd-equip-col { display: flex; flex-direction: column; gap: 16px; }
.vd-equip-title {
  font-family: var(--font-h);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 4px;
}
.vd-equip-list { display: flex; flex-direction: column; gap: 8px; }
.vd-equip-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.875rem; color: var(--gray-2);
}
.vd-equip-item::before {
  content: '';
  width: 5px; height: 5px; flex-shrink: 0;
  border-radius: 50%; background: var(--blue); opacity: 0.6;
}

/* Lightbox counter */
.lb-count {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem; color: rgba(255,255,255,.5);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.1); border: none;
  border-radius: 6px; width: 40px; height: 40px;
  color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; width: 44px; height: 44px;
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.16); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Related vehicles */
.vd-related { padding: 72px 0; background: var(--black); }

/* Breadcrumb */
.breadcrumb-bar {
  padding: calc(var(--nav-h) + 16px) 0 0;
  background: var(--dark-1);
  border-bottom: 1px solid var(--dark-5);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--gray-3);
  padding: 14px 0;
}
.breadcrumb-inner a { color: var(--gray-3); transition: var(--t-fast); }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-inner span { color: var(--white); }
.breadcrumb-sep { color: var(--dark-6); margin: 0 2px; }

/* ============================================================
   FLOATING WA
   ============================================================ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 990;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 13px 22px; border-radius: 50px;
  font-family: var(--font-b); font-size: 0.84rem; font-weight: 600;
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
  transition: var(--t); text-decoration: none;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.5); }
.float-wa i { font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-1); border-top: 1px solid var(--dark-5);
  padding: 68px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { height: 28px; margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; color: var(--gray-3); line-height: 1.8; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 9px; }
.footer-soc {
  width: 34px; height: 34px;
  background: var(--dark-4); border: 1px solid var(--dark-5);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-3); font-size: 0.82rem;
  transition: var(--t-fast); text-decoration: none;
}
.footer-soc:hover { background: var(--blue-bg); border-color: var(--blue-thin); color: var(--blue); }
.footer-col-title {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-3); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--gray-4); transition: var(--t-fast); }
.footer-links a:hover { color: var(--gray-1); }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--gray-4);
}
.footer-contact-item i { color: var(--blue); opacity: 0.7; margin-top: 2px; width: 14px; }
.footer-bottom {
  border-top: 1px solid var(--dark-5); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: var(--gray-4); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100% { opacity:.6; } 50% { opacity:.2; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .feat-grid  { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--dark-5); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--dark-5); border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .carta-grid { grid-template-columns: 1fr; gap: 44px; }
  .vd-layout { grid-template-columns: 1fr; }
  .vd-gallery { position: static; }
  .vd-equip-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container-sm { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding-left: 20px; padding-right: 20px; }
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .feat-grid  { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-nums { gap: 24px; }
  .hero-overlay { background: rgba(6,6,7,.9); }
  .float-wa span { display: none; }
  .float-wa { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }
  .vd-specs-grid { grid-template-columns: repeat(2,1fr); }
  .vd-equip-grid { grid-template-columns: 1fr; }
  .vd-thumbs { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 480px) {
  .section { padding: 68px 0; }
  .section-sm { padding: 48px 0; }
  .vd-specs-grid { grid-template-columns: 1fr 1fr; }
}
