/* ============ KING IMPORTS 999 — Brand Identity ============
   Paleta oficial:
   - Royal Midnight  #16182F
   - Luxury Brown    #291C17
   - Pearl Light     #F0F0EB
   - Plateado / Silver
   Tipografía: Montserrat (Semibold para títulos, Regular para cuerpo)
============================================================ */
:root {
  --royal: #000000;
  --royal-deep: #000000;
  --royal-elev: #0e0e0e;
  --royal-elev-2: #181818;
  --brown: #0a1f3d;
  --brown-soft: #122a52;
  --pearl: #F0F0EB;
  --pearl-soft: #d8d8d2;
  --pearl-mute: #9a9a93;
  --silver: #c9c9c9;
  --silver-bright: #e6e6e6;
  --line: rgba(240,240,235,0.10);
  --line-strong: rgba(240,240,235,0.18);
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-soft: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,201,201,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--royal);
  color: var(--pearl);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1240px; margin: 0 auto; }
.center { text-align: center; }

/* ============ Typography ============ */
.eyebrow {
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 14px;
}
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.3px;
  color: var(--pearl);
  text-transform: uppercase;
}
h1 { font-size: clamp(38px, 5.5vw, 64px); margin-bottom: 20px; letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
h3 { font-size: 18px; margin-bottom: 12px; letter-spacing: 1px; }
p { color: var(--pearl-soft); font-size: 16px; font-weight: 400; }
.highlight {
  color: var(--silver-bright);
  font-weight: 600;
}
.tagline {
  font-style: italic;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--silver);
  font-size: 12px;
}

/* ============ Navigation ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  position: relative;
}
.nav .logo {
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--pearl);
  text-transform: uppercase;
  font-weight: 600;
}
.nav .logo .nine { color: var(--silver); }
.nav .nav-links { display: flex; gap: 36px; font-size: 12px; letter-spacing: 2px; font-weight: 500; }
.nav .nav-links a {
  color: var(--pearl-soft);
  text-transform: uppercase;
  transition: color .25s ease;
  position: relative;
  padding: 4px 0;
}
.nav .nav-links a:hover, .nav .nav-links a.active { color: var(--pearl); }
.nav .nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--silver);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background-image: url(assets/hero-bg.jpg);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  background-color: #000;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 50%, rgba(0,0,0,0.38) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.08) 62%, rgba(0,0,0,0.70) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero {
    background-position: center 38%;
  }
}
@media (max-width: 700px) {
  .hero {
    background-position: center 78%;
  }
  .hero::before {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.50) 0%,
      rgba(0,0,0,0.18) 22%,
      rgba(0,0,0,0.55) 48%,
      rgba(0,0,0,0.92) 62%,
      rgba(0,0,0,1.00) 72%
    );
  }
}
.hero h1 { font-weight: 600; }
.hero p { font-size: 17px; margin-top: 8px; color: var(--pearl-soft); }
.hero .tagline { display: inline-block; margin-bottom: 20px; }

/* ============ Buttons ============ */
.buttons { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--silver-bright), var(--silver));
  color: var(--royal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  background: linear-gradient(135deg, #fff, var(--silver-bright));
}
.btn-secondary {
  border: 1px solid var(--silver);
  color: var(--pearl);
  background: transparent;
}
.btn-secondary:hover {
  background: rgba(240,240,235,0.06);
  border-color: var(--pearl);
  transform: translateY(-2px);
}

/* ============ Sections ============ */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-heading p { font-size: 16px; }

.section-alt {
  background: linear-gradient(180deg, var(--royal-deep), #0a0c1c);
}
.section-brown {
  background: linear-gradient(135deg, var(--brown), var(--brown-soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-brown::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,240,235,0.04), transparent 60%);
  pointer-events: none;
}
.section-brown .container { position: relative; z-index: 2; }

/* ============ Grids ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.card {
  background: linear-gradient(180deg, var(--royal-elev), var(--royal-elev-2));
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .3s ease, transform .3s ease;
}
.card:hover { border-color: rgba(201,201,201,0.35); }

/* ============ Vehicle Cards ============ */
.vehicle-card {
  padding: 0;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  overflow: hidden;
  background: linear-gradient(180deg, #0c0c0c, #050505);
  border: 1px solid rgba(201,201,201,0.10);
  border-radius: 6px;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s ease, border-color .4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(201,201,201,0) 0%, rgba(201,201,201,0) 40%, rgba(201,201,201,0.35) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,201,201,0.25);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9), 0 0 0 1px rgba(201,201,201,0.06);
}
.vehicle-card:hover::before { opacity: 1; }

.vc-cover {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, #131313 0%, #060606 75%);
  position: relative;
}
.vc-cover::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.vehicle-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.vehicle-card:hover img { transform: scale(1.08) !important; }

.vc-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  display: flex; justify-content: flex-end;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.vc-overlay span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pearl);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,201,201,0.4);
  padding: 8px 14px;
  border-radius: 3px;
  backdrop-filter: blur(6px);
}
.vehicle-card:hover .vc-overlay { opacity: 1; transform: translateY(0); }

.vehicle-card .vc-body {
  padding: 32px 34px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Title zone grows to fill space → pins meta to consistent Y across cards */
.vc-title-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vc-brand {
  font-size: 10px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver);
  margin: 0 0 14px;
  opacity: .82;
  display: inline-flex; align-items: center; gap: 12px;
}
.vc-brand::after {
  content: ""; flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,201,201,0.25), transparent);
  max-width: 60px;
}
.vc-model {
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.12;
  color: var(--pearl);
  margin: 0 0 14px;
  min-height: calc(25px * 1.12 * 2);
}
.vc-eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: rgba(240,240,235,0.5);
  font-style: italic;
  margin: 0 0 26px;
  letter-spacing: 0.3px;
}
.vc-meta {
  display: flex;
  gap: 18px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(201,201,201,0.10);
  margin-bottom: 26px;
  position: relative;
}
.vc-meta-mobile { display: none; }
.vc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--pearl);
  font-weight: 500;
  flex: 1;
  min-width: 0;
}
.vc-meta-value {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vc-meta-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,201,201,0.5);
  font-weight: 600;
}
.vc-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.vc-actions .btn { width: 100%; padding: 14px 16px; font-size: 11px; letter-spacing: 1.6px; }
.vc-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(240,240,235,0.72);
  padding: 6px 4px;
  text-decoration: none;
  transition: color .25s ease, letter-spacing .3s ease;
}
.vc-wa svg { color: #25D366; }
.vc-wa:hover { color: var(--pearl); letter-spacing: 2.4px; }

/* ============ Modal ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,12,28,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--royal-elev);
  max-width: 1180px;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 60px rgba(201,201,201,0.04);
  animation: modalIn .35s cubic-bezier(.2,.7,.3,1);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}
@media (max-width: 980px) {
  .modal { grid-template-columns: 1fr; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(240,240,235,0.25);
  color: var(--pearl);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  transition: all .25s ease;
}
.modal-close:hover { background: var(--silver); color: var(--royal); border-color: var(--silver); }

.modal-media {
  background: #050505;
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(201,201,201,0.08);
}
@media (max-width: 980px) {
  .modal-media { border-right: 0; border-bottom: 1px solid rgba(201,201,201,0.08); }
}
.modal-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #050505;
  background-image: radial-gradient(ellipse at center, #131313 0%, #050505 75%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex: 1;
}
.modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 28px;
  box-sizing: border-box;
}
.modal-counter {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--pearl);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,201,201,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  font-weight: 600;
}
.modal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(240,240,235,0.25);
  color: var(--pearl);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 26px; line-height: 1;
  padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  opacity: 0.7;
  font-family: var(--sans);
}
.modal-arrow.prev::before { content: "‹"; display: block; margin-top: -3px; }
.modal-arrow.next::before { content: "›"; display: block; margin-top: -3px; }
.modal-arrow:hover {
  background: var(--silver);
  color: var(--royal);
  border-color: var(--silver);
  opacity: 1;
}
.modal-arrow.prev { left: 18px; }
.modal-arrow.next { right: 18px; }

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 10px;
  background: #030303;
}
.modal-thumbs img {
  width: 100%; height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: .42;
  transition: opacity .25s ease, transform .25s ease;
  border-radius: 2px;
}
.modal-thumbs img:hover { opacity: .85; transform: scale(1.03); }
.modal-thumbs img.active { opacity: 1; outline: 1px solid var(--silver); outline-offset: -1px; }

.modal-info {
  display: flex;
  background: #0a0a0a;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,201,201,0.15) transparent;
}
.modal-info::-webkit-scrollbar { width: 6px; }
.modal-info::-webkit-scrollbar-thumb { background: rgba(201,201,201,0.15); border-radius: 3px; }
.modal-info-inner {
  padding: 48px 48px 44px;
  width: 100%;
  display: flex; flex-direction: column;
}
.modal-head { margin-bottom: 36px; }
.modal-info .eyebrow {
  margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--silver);
}
.modal-info .eyebrow::after {
  content: ""; display: inline-block;
  width: 32px; height: 1px;
  background: linear-gradient(to right, rgba(201,201,201,0.4), transparent);
}
.modal-info h2 {
  margin: 0 0 18px;
  line-height: 1.08;
  font-size: 30px;
  letter-spacing: 0.2px;
}
.modal-info .modal-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240,240,235,0.65);
  max-width: 52ch;
  margin: 0;
}

.specs-block { margin-bottom: 36px; }
.specs-heading {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,201,201,0.55);
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,201,201,0.10);
  display: flex; align-items: center; gap: 10px;
}
.specs-heading::before {
  content: ""; display: inline-block;
  width: 4px; height: 4px; background: var(--silver);
  border-radius: 50%; opacity: .7;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201,201,201,0.08);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.spec {
  background: transparent;
  padding: 16px 18px;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(201,201,201,0.06);
  border-bottom: 1px solid rgba(201,201,201,0.06);
  display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch;
  min-height: 78px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.spec:hover, .spec:focus-visible { background: rgba(201,201,201,0.025); outline: none; }
.spec.is-expanded { background: rgba(201,201,201,0.04); }
.spec.is-expanded .spec-value {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
  white-space: normal;
}
.spec:nth-child(2n) { border-right: none; }
.specs .spec:nth-last-child(-n+2):nth-child(2n+1):not(:nth-last-child(1)),
.specs .spec:nth-last-child(1) { border-bottom: none; }
.specs .spec:nth-last-child(2):nth-child(2n+1) { border-bottom: none; }
.spec .spec-label {
  font-size: 9px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(201,201,201,0.55);
  font-weight: 600;
}
.spec .spec-value {
  font-size: 13.5px;
  color: var(--pearl);
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-foot { margin-top: auto; }
.modal-value-line {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px;
  letter-spacing: .3px;
  line-height: 1.5;
  color: rgba(240,240,235,0.6);
  padding: 16px 0;
  border-top: 1px solid rgba(201,201,201,0.10);
  margin-bottom: 24px;
}
.mvl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.18);
  flex-shrink: 0;
}

.modal-actions { gap: 12px; }
.btn-wa-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
.btn-wa-modal:hover {
  background: #1ebe5d !important;
  border-color: #1ebe5d !important;
}
.btn-wa-modal .wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.92;
}
@media (max-width: 700px) {
  .btn-wa-modal .wa-icon { width: 17px; height: 17px; }
}
.modal-actions .btn {
  flex: 1; min-width: 0;
  justify-content: center; text-align: center;
  padding: 16px 20px;
  font-size: 11px;
  letter-spacing: 1.8px;
}
.modal-actions .btn-primary {
  flex: 1.5;
  box-shadow: 0 8px 24px -8px rgba(201,201,201,0.25);
}

/* ============ Banner / Process / Pillars / Testimonials ============ */
.banner {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, var(--brown), var(--brown-soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,240,235,0.05), transparent 60%);
  pointer-events: none;
}
.banner .container { position: relative; z-index: 2; }
.banner h2 { color: var(--pearl); }

.step-number {
  font-family: var(--sans);
  font-size: 42px;
  color: var(--silver);
  margin-bottom: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
}

.testimonial {
  font-style: italic;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--pearl);
  line-height: 1.7;
  font-weight: 400;
}
.testimonial::before { content: "\201C"; color: var(--silver); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 4px; font-weight: 600; }
.testimonial-name { margin-top: 20px; font-weight: 600; color: var(--pearl); font-size: 13px; letter-spacing: 0.5px; }
.testimonial-role { font-size: 10px; text-transform: uppercase; color: var(--pearl-mute); letter-spacing: 2px; margin-top: 2px; font-weight: 500; }

/* ============ Brand Quote (history block) ============ */
.brand-quote {
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--pearl);
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.2px;
}
.brand-quote .nine-mark { color: var(--silver); font-weight: 500; }

/* ============ Mision / Vision blocks ============ */
.mv-card {
  background: linear-gradient(180deg, var(--royal-elev), var(--royal-elev-2));
  padding: 44px 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.mv-card .mv-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.mv-card h3 { font-size: 22px; margin-bottom: 16px; letter-spacing: 0; }

/* ============ Value list ============ */
.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  margin-top: 28px;
  list-style: none;
}
.value-list li {
  position: relative;
  padding-left: 28px;
  color: var(--pearl-soft);
  font-size: 15px;
  line-height: 1.6;
}
.value-list li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--silver);
  font-weight: 600;
}

/* ============ Page Header (Catalogo) ============ */
.page-header {
  padding: 120px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(41,28,23,0.4), transparent 60%),
    var(--royal);
}
@media (min-width: 901px) {
  .page-header { padding: 72px 0 52px; }
}

/* ============ Footer ============ */
.footer {
  background: #000;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 56px;
  padding: 68px 0 52px;
}
.ft-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pearl);
  margin: 0 0 20px;
}
.ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-list li,
.ft-list a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-list a:hover { color: rgba(255,255,255,0.92); }
.ft-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.ft-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: transform 0.22s, opacity 0.22s;
  flex-shrink: 0;
  border-radius: 10px;
  opacity: 0.88;
}
.ft-social-link svg { width: 40px; height: 40px; display: block; }
.ft-social-img { width: 40px; height: 40px; display: block; border-radius: 10px; object-fit: cover; }
.ft-social-link:hover { transform: translateY(-3px); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0;
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding: 52px 0 40px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; padding: 40px 0 32px; }
  .ft-social { gap: 16px; }
}

/* ============ Accessibility: keyboard focus ============ */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }
.modal-thumbs img:focus-visible { outline-offset: 0; opacity: 1; }

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .value-list { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 980px) {
  .modal-info { max-height: none; }
  .modal-info-inner { padding: 40px 32px 36px; }
}
@media (max-width: 700px) {
  .modal-overlay { padding: 16px 12px; }
  .modal { border-radius: 6px; }
  .modal-main-img { padding: 14px; }
  .modal-thumbs { grid-template-columns: repeat(5, 1fr); padding: 8px; }
  .modal-thumbs img { height: 50px; }
  .modal-info-inner { padding: 32px 22px 30px; }
  .modal-head { margin-bottom: 28px; }
  .modal-info h2 { margin: 0 0 14px; font-size: 22px; line-height: 1.15; }
  .modal-info .modal-desc { font-size: 14px; line-height: 1.6; }
  .modal-info .eyebrow { margin: 0 0 12px; font-size: 10px; }
  .specs-block { margin-bottom: 28px; }
  .specs-heading { font-size: 8px; letter-spacing: 2.5px; margin-bottom: 14px; padding-bottom: 12px; }
  .specs { grid-template-columns: 1fr 1fr; }
  .spec { padding: 12px 14px; min-height: 64px; }
  .spec .spec-label { font-size: 8px; letter-spacing: 2px; }
  .spec .spec-value { font-size: 12.5px; }
  .modal-value-line { font-size: 11px; line-height: 1.55; padding: 14px 0; margin-bottom: 20px; }
  .modal-counter { font-size: 9px; padding: 5px 12px; bottom: 14px; }
  .modal-actions { flex-direction: column; gap: 10px; }
  .modal-actions .btn { width: 100%; flex: none; padding: 15px 18px; }
  .nav .container { padding: 12px 0; }
  .nav .logo { font-size: 16px; letter-spacing: 4px; }
  .nav .nav-links { gap: 18px; font-size: 11px; letter-spacing: 1.5px; }
  .nav-toggle { width: 36px; height: 36px; border-color: rgba(201,201,201,0.18); border-radius: 2px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { width: 16px; height: 1px; }
  .nav-toggle span::before { top: -5px; }
  .nav-toggle span::after { top: 5px; }
  .logo-img { height: 38px; }
  .vc-cover, .vehicle-card img { height: 220px; }
  .mv-card { padding: 32px 26px; }
}
@media (max-width: 540px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav .nav-links { gap: 14px; }
  .btn { padding: 14px 24px; font-size: 11px; }
}

/* ============ NEW: Hero extras ============ */
.hero-sub { font-size: 17px; margin-top: 12px; line-height: 1.7; }
.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 24px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pearl-mute); font-weight: 500;
}
.hero-bullets span { position: relative; padding-left: 18px; }
.hero-bullets span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; background: var(--silver); border-radius: 50%;
}

/* ============ NEW: Small buttons ============ */
.btn-sm { padding: 11px 18px; font-size: 11px; letter-spacing: 1.5px; }

/* ============ NEW: Vehicle Card v2 (with actions) ============ */
.vc-media { position: relative; cursor: pointer; }
.vc-cover-empty {
  height: 280px; display: flex; align-items: center; justify-content: center;
  background: #050505; color: var(--pearl-mute);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.vc-year {
  position: absolute; top: 20px; left: 20px;
  background: rgba(0,0,0,0.55);
  color: var(--pearl);
  border: 1px solid rgba(201,201,201,0.35);
  padding: 8px 13px 7px;
  font-size: 10px; font-weight: 600; letter-spacing: 3.5px;
  border-radius: 2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  text-transform: uppercase;
}

/* ============ Showcase grid (refined vitrina) ============ */
.showcase-grid {
  gap: 36px !important;
}
@media (max-width: 1200px) {
  .showcase-grid { gap: 28px !important; }
}
@media (max-width: 992px) {
  .showcase-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
}
@media (max-width: 700px) {
  .showcase-grid { grid-template-columns: 1fr !important; gap: 32px !important; max-width: 480px; margin-left: auto; margin-right: auto; }
}
/* ============ Catalog mobile: meta swap (≤900px) ============ */
@media (max-width: 900px) {
  .catalog-grid .vc-meta { display: none !important; }
  .catalog-grid .vc-meta-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(201,201,201,0.10);
  }
  .catalog-grid .vc-meta-mobile .vc-meta-item { font-size: 12px; }
}
/* ============ Catalog 2-col compact layout (≤700px) ============ */
@media (max-width: 700px) {
  .catalog-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .catalog-grid .vc-cover,
  .catalog-grid .vehicle-card img {
    height: 155px;
  }
  .catalog-grid .vehicle-card .vc-body {
    padding: 12px 11px 14px;
  }
  .catalog-grid .vc-brand {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .catalog-grid .vc-model {
    font-size: 13px;
    line-height: 1.12;
    margin-bottom: 6px;
    min-height: calc(13px * 1.12 * 2);
  }
  .catalog-grid .vc-eyebrow {
    font-size: 10.5px;
    margin-bottom: 14px;
  }
  .catalog-grid .vc-year { display: none; }
  .catalog-grid .vc-meta-mobile {
    gap: 6px;
    padding: 10px 0;
    margin-bottom: 12px;
    min-height: 95px;
  }
  .catalog-grid .vc-meta-mobile .vc-meta-item { font-size: 11px; }
  .catalog-grid .vc-meta-mobile .vc-meta-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .catalog-grid .vc-actions { gap: 8px; }
  .catalog-grid .vc-actions .btn {
    padding: 10px 8px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .catalog-grid .vc-wa span { display: none; }
  .catalog-grid .vc-wa { justify-content: center; gap: 0; }
}

/* ============ Homepage cards — mobile compact (≤700px) ============ */
@media (max-width: 700px) {
  .grid-3:not(.catalog-grid) .vehicle-card .vc-body {
    padding: 20px 20px 22px;
  }
  .grid-3:not(.catalog-grid) .vc-brand {
    margin-bottom: 8px;
  }
  .grid-3:not(.catalog-grid) .vc-model {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .grid-3:not(.catalog-grid) .vc-eyebrow {
    margin-bottom: 14px;
  }
  .grid-3:not(.catalog-grid) .vc-meta {
    padding: 12px 0 14px;
    margin-bottom: 14px;
    gap: 12px;
  }
  .grid-3:not(.catalog-grid) .vc-actions {
    gap: 8px;
  }
  .grid-3:not(.catalog-grid) .vc-actions .btn {
    padding: 11px 16px;
  }
  .grid-3:not(.catalog-grid) .vc-wa {
    padding: 4px 4px;
  }
}

/* ============ NEW: Reverse on mobile (grid-2) ============ */
.reverse-mobile { align-items: center; }
@media (max-width: 992px) {
  .reverse-mobile > *:first-child { order: 2; }
  .reverse-mobile > *:last-child { order: 1; }
}

/* ============ NEW: Brand Mark (999) Block ============ */
.brand-mark-block { display: flex; justify-content: center; }
.brand-mark {
  width: 280px; height: 280px;
  border: 1px solid rgba(240,240,235,0.2);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(circle at center, rgba(240,240,235,0.06), transparent 70%);
  position: relative;
}
.brand-mark::before {
  content: ""; position: absolute; inset: -14px;
  border: 1px solid rgba(240,240,235,0.08);
  border-radius: 50%;
}
.brand-mark-num {
  font-size: 96px; font-weight: 300;
  color: var(--pearl); letter-spacing: -2px;
  line-height: 1;
}
.brand-mark-label {
  margin-top: 12px;
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver); font-weight: 600;
}

/* ============ NEW: Trust Pillars (6 items) ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.trust-item {
  background: linear-gradient(180deg, var(--royal-elev), var(--royal-elev-2));
  padding: 40px 32px;
  position: relative;
  transition: background .3s ease;
}
.trust-item:hover { background: linear-gradient(180deg, var(--royal-elev-2), var(--royal-elev)); }
.trust-num {
  font-size: 13px; letter-spacing: 3px;
  color: var(--silver); font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-strong);
  min-width: 36px;
}
.trust-item h3 { font-size: 16px; letter-spacing: 0.5px; margin-bottom: 12px; }
.trust-item p { font-size: 14px; line-height: 1.65; }

/* ============ NEW: Process steps (4 with connector line) ============ */
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-line::before {
  content: ""; position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver), var(--silver), transparent);
  opacity: 0.4;
}
.process-step {
  text-align: center;
  padding: 0 22px;
  position: relative;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--royal);
  border: 1px solid var(--silver);
  color: var(--pearl);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; letter-spacing: 1px;
  margin: 0 auto 24px;
  position: relative; z-index: 2;
}
.process-step h3 { font-size: 15px; letter-spacing: 0.5px; margin-bottom: 10px; }
.process-step p { font-size: 14px; line-height: 1.6; }

/* ============ NEW: Testimonials v2 ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(180deg, var(--royal-elev), var(--royal-elev-2));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.testimonial-card:hover { border-color: rgba(201,201,201,0.3); transform: translateY(-3px); }
.testimonial-rating {
  color: var(--silver-bright);
  font-size: 14px; letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial-card .testimonial { flex: 1; margin-bottom: 24px; }
.testimonial-meta {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver-bright), var(--silver));
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; letter-spacing: 1px;
  flex-shrink: 0;
}
.testimonial-meta .testimonial-name { margin-top: 0; font-size: 14px; }
.testimonial-meta .testimonial-role { margin-top: 2px; }

/* ============ NEW: Brand Resumed Block ============ */
.brand-block {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.brand-block .brand-quote { margin-top: 22px; }
.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.brand-pillars > div { text-align: center; }
.brand-pillars span {
  display: block;
  font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 10px;
}
.brand-pillars p { font-size: 14px; }

/* ============ NEW: CTA final ============ */
.cta-final {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(41,28,23,0.5), transparent 60%),
    linear-gradient(180deg, var(--royal), var(--royal-deep));
  position: relative;
  border-top: 1px solid var(--line);
}
.cta-final .tagline { color: var(--silver-bright); }

/* ============ NEW: WhatsApp Floating Button ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55), 0 6px 16px rgba(0,0,0,0.4);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.3), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ Responsive overrides for new sections ============ */
@media (max-width: 992px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-line::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 18px; }
  .brand-pillars { grid-template-columns: 1fr; gap: 28px; }
  .brand-mark { width: 220px; height: 220px; }
  .brand-mark-num { font-size: 72px; }
}
@media (max-width: 700px) {
  .brand-mark-block { display: none !important; }
  .hero-bullets { gap: 16px; font-size: 11px; }
  .vc-actions { flex-direction: column; }
  .vc-actions .btn { width: 100%; }
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}
@media (max-width: 540px) {
  .trust-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ Mobile Navigation (hamburger) ============ */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  width: 42px; height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--pearl);
}
.nav-toggle span {
  display: block; position: relative;
  width: 18px; height: 1.5px;
  background: var(--pearl);
  transition: transform .3s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--pearl);
  transition: transform .3s ease, top .3s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 24px 5%;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav .nav-links a { padding: 8px 0; font-size: 13px; }
}

/* ============ Brand Logo ============ */
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  transition: transform .3s ease, filter .3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}
.logo:hover .logo-img { transform: scale(1.04); }

/* ============ Hero — nueva composición por niveles ============ */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0 64px;
}
.hero-top {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 36px;
}
.hero-title-block {
  flex: 1 1 auto;
  min-width: 0;
}
.hero-logo {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
}
.hero-logo img {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.8)) drop-shadow(0 0 30px rgba(201,201,201,.08));
  animation: heroLogoFloat 6s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-sub { max-width: none; }
.hero .buttons { justify-content: center; margin-top: 32px; gap: 16px; }
.hero-bullets { justify-content: center; gap: 40px; flex-wrap: nowrap; }


@media (max-width: 900px) {
  .hero-inner { padding: 36px 0 44px; text-align: center; }
  .hero-top { flex-direction: column; align-items: center; gap: 0; margin-bottom: 20px; }
  .hero-logo { order: -1; margin: 0 auto 12px; }
  .hero-logo img { max-width: 300px; animation: none; }
  .hero-title-block { text-align: center; }
  .hero .tagline { margin-bottom: 18px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-bullets { justify-content: center; flex-wrap: wrap; }
  .hero .buttons { justify-content: center; }
  .logo-img { height: 42px; }
}

@media (max-width: 700px) {
  .hero { padding-top: 0; min-height: auto; background-image: url('assets/hero-bg-mobile.jpg'); }
  .hero-logo { margin: 0 auto -8px; }
  .hero-logo img { max-width: 268px; filter: drop-shadow(0 8px 28px rgba(0,0,0,.85)) drop-shadow(0 0 22px rgba(201,201,201,.06)); }
  .hero-inner { padding: 0 4px 36px; }
  .hero .tagline {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 3.5px;
  }
  .hero h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.4px;
    margin: 0 0 16px;
  }
  .hero h1 br { display: none; }
  .hero-sub {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 auto 26px;
    max-width: 440px;
    color: var(--pearl-soft);
  }
  .hero .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    max-width: 320px;
  }
  .hero .buttons .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .hero .buttons .btn-primary {
    box-shadow: 0 10px 28px -10px rgba(201,201,201,0.28);
  }
  .hero-bullets {
    margin-top: 26px;
    gap: 10px 18px;
    font-size: 9.5px;
    letter-spacing: 1.8px;
    justify-content: center;
    color: rgba(201,201,201,0.55);
  }
  .hero-bullets span { padding-left: 14px; }
  .hero-bullets span::before { width: 4px; height: 4px; }
}

@media (max-width: 600px) {
  .logo-img { height: 36px; }
}

/* ============ Refined CTA promise & note ============ */
.cta-promise {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  margin: 36px auto 0;
  max-width: 760px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,201,201,0.12);
}
.cta-promise span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(240,240,235,0.7);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.cta-promise strong {
  color: var(--pearl);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
}
.cta-note {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  opacity: .7;
  font-weight: 500;
}

/* ============ Editorial section rhythm ============ */
.section {
  padding: 90px 0;
  position: relative;
}
.section + .section { padding-top: 76px; }
.section-heading { margin-bottom: 54px; }
.section-heading h2 { line-height: 1.15; }

/* Hairline divider between adjacent same-tone sections */
.section + .section:not(.section-alt):not(.section-brown):not(.cta-final)::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,201,201,0.18), transparent);
}

/* Smoother transitions into colored sections */
.section-brown { padding: 96px 0; }
.section-alt { padding: 90px 0; }
.cta-final { padding-top: 96px; padding-bottom: 104px; }

/* Hero into first section: reduce top padding for natural flow */
.hero + .section { padding-top: 88px; }

@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .section + .section { padding-top: 64px; }
  .section-brown, .section-alt { padding: 80px 0; }
  .cta-final { padding-top: 84px; padding-bottom: 88px; }
  .hero + .section { padding-top: 72px; }
  .section-heading { margin-bottom: 44px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section + .section { padding-top: 52px; }
  .section-brown, .section-alt { padding: 72px 0; }
  .cta-final { padding-top: 76px; padding-bottom: 80px; }
  .hero + .section { padding-top: 36px; }
  .section-heading { margin-bottom: 38px; }
  .vc-cover, .vehicle-card img, .vc-cover-empty { height: 240px; }
  .vc-model { font-size: 19px; }
  .cta-promise { flex-direction: column; gap: 18px; }
  .pdp-block { padding-bottom: 44px; }
  .pdp-block + .showroom-block { padding-top: 40px; }
  #vehiculos { padding-bottom: 28px; }
  #vehiculos + .section-brown { padding-top: 28px; }
}

/* ============ Showroom / Presencia real ============ */
.showroom-block {
  background: linear-gradient(180deg, var(--royal) 0%, var(--royal-elev) 100%);
}
.showroom-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 56px;
  background: linear-gradient(180deg, rgba(18,42,82,0.18), rgba(10,31,61,0.10));
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.showroom-card::before {
  content: ""; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}
.showroom-mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--silver);
  margin-bottom: 24px;
  background: rgba(0,0,0,0.4);
}
.showroom-title {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--pearl);
  margin: 14px 0 22px;
}
.showroom-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pearl-soft);
  max-width: 540px;
  margin: 0 auto 36px;
}
.showroom-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  margin-bottom: 36px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pearl-mute);
}
.showroom-meta span { position: relative; padding-left: 14px; }
.showroom-meta span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; background: var(--silver); border-radius: 50%;
}
.showroom-meta strong { color: var(--pearl); font-weight: 600; letter-spacing: 1.8px; }
.showroom-cta { display: inline-flex; align-items: center; }

@media (max-width: 700px) {
  .showroom-card { padding: 32px 20px; }
  .showroom-title { font-size: 24px; line-height: 1.18; margin: 10px 0 14px; }
  .showroom-title br { display: none; }
  .showroom-desc { font-size: 14px; margin-bottom: 20px; }
  .showroom-meta { gap: 8px 18px; font-size: 10px; letter-spacing: 1.6px; margin-bottom: 20px; }
  .showroom-mark { width: 40px; height: 40px; margin-bottom: 14px; }
}

/* ============ Showroom v2 — ubicación real ============ */
.showroom-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--silver);
  background: rgba(201,201,201,0.06);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.showroom-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 700px) {
  .showroom-location { font-size: 10.5px; letter-spacing: 0.8px; padding: 7px 13px; text-align: left; margin-bottom: 22px; }
  .showroom-actions { flex-direction: column; align-items: center; gap: 10px; }
  .showroom-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============ Parte de pago block ============ */
.pdp-block {
  background: linear-gradient(180deg, var(--royal-elev) 0%, var(--royal) 100%);
  padding-bottom: 56px;
}
.pdp-block + .showroom-block {
  padding-top: 52px;
}
.pdp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 44px 52px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.pdp-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,201,201,0.22), transparent);
}
.pdp-left .eyebrow { margin-bottom: 16px; }
.pdp-title {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--pearl);
  line-height: 1.2;
  margin-bottom: 18px;
}
.pdp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pearl-soft);
  max-width: 400px;
}
.pdp-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pdp-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pdp-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  background: rgba(0,0,0,0.3);
  margin-top: 2px;
}
.pdp-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pearl);
  font-weight: 600;
  margin-bottom: 6px;
}
.pdp-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--pearl-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .pdp-card { grid-template-columns: 1fr; gap: 44px; padding: 44px 36px; }
  .pdp-desc { max-width: 100%; }
}
@media (max-width: 600px) {
  .pdp-card { padding: 36px 24px; gap: 36px; }
  .pdp-title { font-size: 20px; }
  .pdp-desc { font-size: 14px; }
  .pdp-item p { font-size: 13px; }
  .pdp-icon { width: 34px; height: 34px; }
}

/* ============ FAQ accordion ============ */
.faq-block { background: var(--royal); }
.faq-list {
  border-top: 1px solid var(--line-strong);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 24px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--pearl);
  letter-spacing: 0.2px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--silver-bright); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--silver);
  transition: transform .3s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .3s ease;
  padding-bottom: 0;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--pearl-soft);
  max-width: 680px;
}

@media (max-width: 700px) {
  .faq-q { font-size: 14px; padding: 20px 0; }
  .faq-a p { font-size: 13.5px; }
}

/* ============ POR QUÉ NOSOTROS PAGE ============ */
.pq-hero {
  border-bottom: 1px solid var(--line-strong);
}
.page-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--pearl-soft);
  max-width: 640px;
  margin: 18px auto 0;
  font-weight: 300;
}

.pq-intro-block { background: var(--royal); }
.pq-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pq-intro-left h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.18;
}
.pq-intro-right p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--pearl-soft);
}

.pq-how-block { background: var(--royal); }
.pq-how-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pq-how-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.pq-how-item:last-child { border-bottom: none; }
.pq-how-line {
  width: 1px;
  height: 100%;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  margin: 4px auto 0;
}
.pq-how-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--pearl);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.pq-how-content p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--pearl-soft);
}

@media (max-width: 860px) {
  .pq-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-sub { font-size: 15px; }
}

/* ============ CONTACTO PAGE ============ */
.ct-main-block { background: var(--royal); }
.ct-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.ct-what-block h2 {
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}
.ct-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pearl-soft);
  margin-top: 16px;
}
.ct-steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.ct-step:last-child { border-bottom: none; }
.ct-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--silver);
  padding-top: 3px;
}
.ct-step strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.ct-step p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--pearl-soft);
}

.ct-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ct-channel-card {
  background: var(--royal-elev);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-channel-main {
  border-color: rgba(201,201,201,0.22);
}
.ct-channel-icon {
  color: var(--silver);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.ct-channel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
}
.ct-channel-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pearl);
  margin: 6px 0 10px;
  letter-spacing: 0.01em;
}
.ct-channel-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pearl-soft);
}
.ct-channel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-channel-meta {
  font-size: 11.5px;
  color: var(--pearl-mute);
  letter-spacing: 0.03em;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.ct-promise-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--pearl-soft);
}
.ct-promise-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .ct-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ct-promise-row { display: none; }
  .page-header { padding: 60px 0 36px; }
  .ct-what-block h2 { font-size: clamp(22px, 5vw, 28px); margin-top: 10px; }
  .ct-sub { margin-top: 12px; }
  .ct-steps { margin-top: 20px; }
  .ct-step { padding: 14px 0; }
  .ct-channel-card { padding: 22px 20px; gap: 14px; }
  .ct-channel-body h3 { font-size: 18px; margin: 4px 0 8px; }
  .ct-channel-meta { padding-top: 10px; }
  .ct-main-block.section { padding: 48px 0; }
  .showroom-block.section-alt { padding: 52px 0; }
  .cta-final { padding-top: 56px; padding-bottom: 60px; }
}

/* ============ PROCESO PAGE ============ */
.pr-intro-block { background: var(--royal); }

.pr-steps-block { background: var(--royal-elev); }
.pr-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--line-strong);
}
.pr-step-card {
  background: var(--royal-elev-2);
  padding: 36px 32px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.pr-step-card:hover { background: #1a1a1a; }
.pr-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.pr-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--silver);
  flex-shrink: 0;
}
.pr-step-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--silver), transparent);
  opacity: 0.4;
}
.pr-step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pearl);
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.pr-step-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pearl-soft);
}
.pr-step-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pr-step-details li {
  font-size: 12.5px;
  color: var(--pearl-mute);
  letter-spacing: 0.02em;
  padding-left: 14px;
  position: relative;
}
.pr-step-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--silver);
  font-size: 10px;
}

.pr-assurance-block { background: var(--royal); }
.pr-assurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--line);
}
.pr-assurance-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.pr-assurance-item:nth-child(even) { border-right: none; }
.pr-assurance-item:nth-last-child(-n+2) { border-bottom: none; }
.pr-assurance-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  flex-shrink: 0;
  margin-top: 2px;
}
.pr-assurance-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.pr-assurance-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--pearl-soft);
}

@media (max-width: 800px) {
  .pr-steps-grid { grid-template-columns: 1fr; }
  .pr-assurance-grid { grid-template-columns: 1fr; }
  .pr-assurance-item { border-right: none; }
  .pr-assurance-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pr-assurance-item:last-child { border-bottom: none; }
}

/* ── Catalog Search Bar ─────────────────────────── */
.catalog-search-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 52px;
}
.catalog-search-wrap svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  flex-shrink: 0;
}
#catalogSearch {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 17px 20px 17px 52px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
#catalogSearch::placeholder {
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
#catalogSearch:focus {
  border-color: rgba(192,192,192,0.4);
  background: rgba(255,255,255,0.07);
}
#catalogSearch::-webkit-search-cancel-button { display: none; }
#catalog-no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .catalog-search-wrap { margin-bottom: 36px; }
  #catalogSearch { font-size: 0.8rem; padding: 15px 16px 15px 46px; }
  .catalog-search-wrap svg { left: 16px; width: 15px; height: 15px; }
}

@media (max-width: 900px) {
  .desktop-only-card { display: none !important; }
}
