/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --surface:     #111111;
  --surface-2:   #1a1a1a;
  --border:      #232323;
  --border-2:    #2e2e2e;
  --accent:      #E94E1B;
  --accent-dark: #c43e14;
  --white:       #ffffff;
  --gray-1:      #aaaaaa;
  --gray-2:      #666666;
  --gray-3:      #3a3a3a;
  --font:        'Montserrat', sans-serif;
  --radius:      10px;
  --header-h:    68px;
  --dur:         0.28s;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── FOCUS RINGS (accesibilidad crítica) ─────────────── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-back:focus-visible,
.filter-btn:focus-visible,
.model-card:focus-visible,
.trim-card:focus-visible,
.detail-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── SKIP LINK (accesibilidad teclado) ───────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── TOUCH: elimina delay 300ms ──────────────────────── */
a, button, [role="button"] { touch-action: manipulation; }

/* ── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── HEADER ──────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  letter-spacing: 0.02em;
  transition: color var(--dur);
  padding: 4px 0;
}
.header-nav a:hover { color: var(--white); }

.btn-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  flex-shrink: 0;
  min-height: 44px;
}
.btn-wa-header:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(233,78,27,0.3);
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 96px;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-glow {
  position: absolute;
  top: -22%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,78,27,0.18) 0%, rgba(233,78,27,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-content {
  animation: fadeUp 0.9s var(--ease) both;
  animation-delay: 0.1s;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--accent); flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: var(--gray-1);
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  max-width: 460px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta { animation: fadeUp 0.9s var(--ease) both; animation-delay: 0.3s; }

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-gallery-col { display: flex; flex-direction: column; gap: 16px; }
.hero-gallery-col.offset { margin-top: 64px; }
.hero-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
#hero.loaded .hero-gallery-item { opacity: 1; transform: translateY(0) scale(1); }
.hero-gallery-col:nth-child(1) .hero-gallery-item:nth-child(1) { transition-delay: 0.15s; }
.hero-gallery-col:nth-child(1) .hero-gallery-item:nth-child(2) { transition-delay: 0.32s; }
.hero-gallery-col:nth-child(2) .hero-gallery-item:nth-child(1) { transition-delay: 0.24s; }
.hero-gallery-col:nth-child(2) .hero-gallery-item:nth-child(2) { transition-delay: 0.42s; }
.hero-gallery-item.tall { aspect-ratio: 3 / 4; }
.hero-gallery-item.short { aspect-ratio: 1 / 1; }
.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hero-gallery-item:hover img { transform: scale(1.06); }

.hero-badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  z-index: 2;
  width: max-content;
  max-width: calc(100vw - 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 14px 20px 14px 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.55s;
}
#hero.loaded .hero-badge { opacity: 1; transform: translateY(0); }
.hero-badge-avatars { display: flex; flex-shrink: 0; }
.hero-badge-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #111111;
  margin-left: -10px;
}
.hero-badge-avatars img:first-child { margin-left: 0; }
.hero-badge-text strong { display: block; font-size: 13px; font-weight: 800; line-height: 1.3; }
.hero-badge-text span { font-size: 11px; color: var(--gray-1); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  border: none;
  cursor: pointer;
  min-height: 48px;
  touch-action: manipulation;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,78,27,0.3);
}
.btn-primary.btn-large { font-size: 16px; padding: 17px 36px; border-radius: 10px; min-height: 56px; }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-1);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  transition: color var(--dur), gap var(--dur);
  letter-spacing: 0.01em;
  min-height: 44px;
  touch-action: manipulation;
}
.btn-back:hover { color: var(--white); gap: 12px; }

/* ── CATÁLOGO SECTION ────────────────────────────────── */
#catalogo {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── VIEWS ───────────────────────────────────────────── */
.view { display: none; animation: viewIn 0.32s var(--ease) both; }
.view.active { display: block; }

.view-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.view-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
}
.breadcrumb {
  font-size: 13px;
  color: var(--gray-2);
  margin-left: auto;
  white-space: nowrap;
}
.breadcrumb span { color: var(--gray-1); }

/* ── FILTERS ─────────────────────────────────────────── */
.filters {
  display: flex;
  gap: 8px;
  margin-left: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
  flex-shrink: 0;
  max-width: 100%;
}
.filters::-webkit-scrollbar { display: none; }
.filter-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  color: var(--gray-1);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--dur), color var(--dur), background var(--dur);
  white-space: nowrap;
  min-height: 36px;
  touch-action: manipulation;
}
.filter-btn:hover { border-color: var(--gray-1); color: var(--white); }
.filter-btn.active, .filter-btn[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ── SKELETON LOADER ─────────────────────────────────── */
.skeleton-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.skeleton-filters { display: flex; gap: 8px; }
.skeleton-pill {
  height: 36px;
  width: 80px;
  border-radius: 100px;
  background: var(--surface-2);
  animation: shimmer 1.6s ease-in-out infinite;
}
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.skeleton-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.skeleton-img {
  aspect-ratio: 16/10;
  background: var(--surface-2);
  animation: shimmer 1.6s ease-in-out infinite;
}
.skeleton-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: var(--surface-2);
  animation: shimmer 1.6s ease-in-out infinite;
  animation-delay: 0.1s;
  width: 100%;
}
.skeleton-line.tall { height: 18px; }
.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-45 { width: 45%; }
.skeleton-line.w-50 { width: 50%; }
.skeleton-line.w-55 { width: 55%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-65 { width: 65%; }
.skeleton-line.w-70 { width: 70%; }
.skeleton-line.w-75 { width: 75%; }
.skeleton-line.w-80 { width: 80%; }

@keyframes shimmer {
  0%   { opacity: 1; }
  50%  { opacity: 0.45; }
  100% { opacity: 1; }
}

/* ── MODELS GRID ─────────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.model-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  position: relative;
  touch-action: manipulation;
}
.model-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.model-card:active { transform: translateY(-2px) scale(0.99); }
.model-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.model-card:hover .model-card-img img { transform: scale(1.05); }
.model-card-body { padding: 18px 20px 20px; }
.model-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(233,78,27,0.15);
  color: var(--accent);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.model-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.model-card-brand {
  font-size: 11px;
  color: var(--gray-2);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.model-card-price {
  font-size: 13px;
  color: var(--gray-1);
  margin-bottom: 14px;
  line-height: 1.5;
}
.model-card-price strong { color: var(--white); font-size: 1.05rem; font-weight: 700; }
.model-card-price .fob-tag { font-size: 11px; color: var(--gray-2); font-weight: 500; }
.model-card-footer { display: flex; align-items: center; justify-content: space-between; }
.model-trims-count { font-size: 12px; color: var(--gray-2); }
.model-card-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur);
}
.model-card:hover .model-card-cta { gap: 8px; }
.model-card-cta::after { content: '→'; }

/* ── TRIMS VIEW ──────────────────────────────────────── */
.trims-header { margin-bottom: 32px; }
.trims-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.trims-header p { font-size: 14px; color: var(--gray-1); }
.trims-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trim-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  touch-action: manipulation;
}
.trim-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.trim-card:active { transform: translateY(-1px) scale(0.99); }
.trim-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.trim-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.trim-card:hover .trim-card-img img { transform: scale(1.05); }
.trim-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
}
.trim-card-body { padding: 16px 18px 18px; }
.trim-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.trim-card-specs { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.trim-card-spec { display: flex; justify-content: space-between; font-size: 12px; }
.trim-card-spec .spec-key { color: var(--gray-2); }
.trim-card-spec .spec-val { color: var(--gray-1); font-weight: 500; }
.trim-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.trim-card-price .price-num { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.trim-card-price .price-fob { font-size: 11px; color: var(--gray-2); font-weight: 500; }

/* ── DETAIL VIEW ─────────────────────────────────────── */
.detail-content { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.detail-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.detail-main-img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease), opacity 0.2s;
}
.detail-main-img:hover img { transform: scale(1.03); }
.detail-thumbs { display: flex; gap: 10px; }
.detail-thumb {
  flex: 1;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--dur), opacity var(--dur);
  opacity: 0.55;
  touch-action: manipulation;
}
.detail-thumb:hover { opacity: 0.8; }
.detail-thumb.active { border-color: var(--accent); opacity: 1; }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-model-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 8px;
}
.detail-trim-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.detail-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.detail-price { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--accent); letter-spacing: -0.02em; }
.detail-fob { font-size: 12px; color: var(--gray-2); font-weight: 500; }
.detail-fob-note { font-size: 12px; color: var(--gray-2); margin-bottom: 28px; line-height: 1.55; }
.detail-divider { height: 1px; background: var(--border); margin: 24px 0; }
.detail-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 14px;
}
.detail-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.detail-spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-2); font-weight: 600; margin-bottom: 3px; }
.detail-spec-value { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.4; }
.detail-colors { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-color-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-1);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  padding: 5px 13px;
  border-radius: 100px;
}
.detail-features { display: flex; flex-direction: column; gap: 9px; }
.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.5;
}
.detail-feature::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.detail-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 17px 24px;
  border-radius: 10px;
  margin-top: 28px;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  min-height: 56px;
  touch-action: manipulation;
}
.detail-wa-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233,78,27,0.35);
}

/* ── EMPTY STATE ─────────────────────────────────────── */
.empty-state { grid-column: 1 / -1; text-align: center; padding: 80px 24px; color: var(--gray-2); }
.empty-state p { font-size: 15px; }

/* ── FLOATING WHATSAPP (FAB) ─────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  z-index: 90;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--dur), box-shadow var(--dur), padding var(--dur);
  touch-action: manipulation;
}
.fab-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.3);
}
.fab-wa:active { transform: scale(0.97); }
.fab-label { font-size: 13px; font-weight: 700; }

/* ── SERVICES SECTION ────────────────────────────────── */
.section-services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-1);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--dur);
}
.service-card:hover { border-color: var(--border-2); }
.service-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.service-card p { font-size: 13px; color: var(--gray-1); line-height: 1.65; }
.fob-notice {
  display: flex;
  gap: 16px;
  background: rgba(233,78,27,0.07);
  border: 1px solid rgba(233,78,27,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  align-items: flex-start;
}
.fob-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.fob-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.fob-text span { font-size: 13px; color: var(--gray-1); line-height: 1.65; }

/* ── CONTACT SECTION ─────────────────────────────────── */
.section-contact { padding: 100px 0; text-align: center; }
.section-contact .section-label,
.section-contact .section-title,
.section-contact .section-sub { margin-left: auto; margin-right: auto; }
.section-contact .section-sub { margin-bottom: 36px; }
.contact-info { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 40px; margin-top: 40px; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-2); }
.contact-item svg { color: var(--gray-3); flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────── */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand img.footer-logo { height: 30px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(0.55); }
.footer-brand p { font-size: 13px; color: var(--gray-2); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.footer-links a { font-size: 13px; color: var(--gray-2); transition: color var(--dur); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-3);
  max-width: 1400px;
  margin: 0 auto;
}

/* ── LIGHTBOX ────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s var(--ease);
}
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--dur);
  background: none;
  border: none;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { opacity: 1; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-content { grid-template-columns: 1fr 360px; gap: 32px; }
  .skeleton-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .models-grid  { grid-template-columns: repeat(2, 1fr); }
  .trims-grid   { grid-template-columns: repeat(2, 1fr); }
  .detail-content { grid-template-columns: 1fr; }
  .detail-gallery { position: static; }
  .fab-wa .fab-label { display: none; }
  .fab-wa { padding: 16px; border-radius: 50%; }
}
@media (max-width: 640px) {
  #catalogo { padding-left: 16px; padding-right: 16px; }
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .header-nav { display: none; }
  .models-grid  { grid-template-columns: 1fr; }
  .trims-grid   { grid-template-columns: 1fr; }
  .skeleton-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .detail-specs-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 32px 16px; flex-direction: column; }
  .view-header { gap: 12px; }
  .filters { margin-left: 0; width: 100%; }
  .breadcrumb { display: none; }
  .fab-wa { bottom: 20px; right: 16px; }
  .section-services, .section-contact { padding: 64px 0; }
}
@media (max-width: 400px) {
  .btn-wa-header span { display: none; }
  .btn-wa-header { padding: 10px 12px; }
}

/* ════════════════════════════════════════════════════════
   EXTENSIÓN MULTI-PÁGINA
   ════════════════════════════════════════════════════════ */

/* ── NAV ACTIVO ──────────────────────────────────────── */
.header-nav a.nav-active {
  color: var(--white);
  position: relative;
}
.header-nav a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── NAV MÓVIL ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-1);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.nav-active { color: var(--white); }
.mobile-nav-wa {
  margin-top: 8px;
  background: var(--accent);
  color: var(--white) !important;
  text-align: center;
  padding: 12px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ── FOOTER MULTI-COLUMNA ────────────────────────────── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a { color: var(--gray-2); transition: color var(--dur); }
.footer-social a:hover { color: var(--white); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 4px;
}
.footer-col p { font-size: 13px; color: var(--gray-2); line-height: 1.6; }
.footer-col a { font-size: 13px; color: var(--gray-2); transition: color var(--dur); }
.footer-col a:hover { color: var(--white); }

/* ── PAGE HERO (páginas interiores) ─────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-breadcrumb {
  font-size: 12px;
  color: var(--gray-2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-breadcrumb a { color: var(--gray-2); transition: color var(--dur); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { color: var(--gray-3); }
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--gray-1);
  line-height: 1.65;
}

/* ── RESEÑAS DE GOOGLE (marquee) ─────────────────────── */
.reviews-section { padding: 76px 0 84px; overflow: hidden; }
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.reviews-header .section-title { margin-bottom: 0; }
.reviews-google-link { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; white-space: nowrap; }

.reviews-marquee {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsMarquee 62s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-track-dup { display: contents; }
@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

.review-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.review-card-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: #FBBC04; letter-spacing: 2px; font-size: 14px; }
.review-google-icon { width: 18px; height: 18px; flex-shrink: 0; }
.review-text { font-size: 14px; color: var(--gray-1); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.review-avatar-google { font-size: 15px; font-weight: 800; color: #4285F4; background: var(--bg); }
.review-author-name { font-size: 13px; font-weight: 700; }
.review-author-sub { font-size: 11px; color: var(--gray-2); margin-top: 1px; }

/* ── STATS BAR (home) ────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--gray-1); font-weight: 500; }

/* ── FEATURED MODELS (home) ──────────────────────────── */
.featured-models-section { padding: 80px 0; }
.featured-models-section .container { max-width: 1200px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  text-decoration: none;
  color: inherit;
  display: block;
}
.featured-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.featured-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.featured-card:hover .featured-card-img img { transform: scale(1.05); }
.featured-card-body { padding: 16px 18px; }
.featured-card-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.featured-card-price { font-size: 13px; color: var(--gray-1); }
.featured-card-price strong { color: var(--white); }
.featured-cta-row { text-align: center; margin-top: 32px; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 15px; color: var(--gray-1); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-detail { font-size: 12px; color: var(--gray-2); margin-top: 2px; }
.testimonials-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── BLOG ────────────────────────────────────────────── */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card-title { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13px; color: var(--gray-1); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-card-meta { font-size: 11px; color: var(--gray-2); display: flex; gap: 12px; }
.blog-cta-row { text-align: center; margin-top: 32px; }

/* ── ARTICLE ─────────────────────────────────────────── */
.article-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; padding-top: 56px; padding-bottom: 80px; }
.article-main {}
.article-header { margin-bottom: 32px; }
.article-category { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.article-title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 16px; }
.article-meta { font-size: 12px; color: var(--gray-2); display: flex; gap: 16px; flex-wrap: wrap; }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 36px; }
.article-body { font-size: 16px; line-height: 1.8; color: #d0d0d0; }
.article-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin: 36px 0 14px; letter-spacing: -0.015em; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { color: #d0d0d0; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body .highlight-box { background: var(--surface); border-left: 3px solid var(--accent); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; font-size: 15px; }
.article-sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sidebar-card-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-2); margin-bottom: 14px; }
.sidebar-wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--accent); color: var(--white); font-family: var(--font); font-size: 14px; font-weight: 700; padding: 14px; border-radius: 8px; text-decoration: none; transition: background var(--dur), transform var(--dur); }
.sidebar-wa-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.sidebar-models { display: flex; flex-direction: column; gap: 10px; }
.sidebar-model { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; padding: 8px; border-radius: 6px; transition: background var(--dur); }
.sidebar-model:hover { background: var(--surface-2); }
.sidebar-model img { width: 60px; height: 40px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-model-name { font-size: 13px; font-weight: 600; }
.sidebar-model-price { font-size: 11px; color: var(--gray-2); }

/* ── ABOUT / NOSOTROS ────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--gray-1); line-height: 1.75; margin-bottom: 16px; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--surface-2); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 260px;
  border: 2px dashed var(--border-2);
  border-radius: var(--radius);
  color: var(--gray-2);
  text-align: center;
  padding: 32px;
}
.team-placeholder svg { opacity: 0.4; }
.team-placeholder p { font-size: 13px; line-height: 1.6; }
.team-placeholder strong { color: var(--accent); font-size: 12px; }
.values-section { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.value-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.value-icon { width: 48px; height: 48px; background: rgba(233,78,27,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--gray-1); line-height: 1.65; }
.why-section { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.why-item { text-align: center; padding: 24px 16px; }
.why-num { font-size: 2.5rem; font-weight: 900; color: var(--accent); letter-spacing: -0.03em; margin-bottom: 8px; }
.why-label { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.why-desc { font-size: 12px; color: var(--gray-2); line-height: 1.6; }

/* ── FAQ (acordeón) ──────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: var(--surface);
  border: none;
  cursor: pointer;
  transition: background var(--dur);
  min-height: 56px;
  touch-action: manipulation;
  gap: 16px;
}
.faq-question:hover { background: var(--surface-2); }
.faq-chevron { flex-shrink: 0; transition: transform var(--dur); color: var(--gray-2); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { background: var(--surface-2); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease);
  background: var(--bg);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 16px 24px 24px; font-size: 14px; color: var(--gray-1); line-height: 1.75; }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-hero-wa { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 48px 0; }
.contact-page-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 800px; margin: 48px auto 0; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.contact-info-card svg { color: var(--accent); margin: 0 auto 12px; display: block; }
.contact-info-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 13px; color: var(--gray-1); line-height: 1.6; }
.contact-info-card a:hover { color: var(--white); }

/* ── HOME PREVIEW SECTIONS ───────────────────────────── */
.preview-section { padding: 80px 0; }
.preview-cta-row { text-align: center; margin-top: 32px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-2);
  color: var(--gray-1);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: border-color var(--dur), color var(--dur);
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  touch-action: manipulation;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ── GALERÍA DE CLIENTES (fotos reales de entrega) ───── */
.gallery-section { padding: 90px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.gallery-item::before {
  content: '✓ Entrega Nova Auto';
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur), transform var(--dur);
}
.gallery-item:hover::before { opacity: 1; transform: translateY(0); }

/* ── TRUST STRIP (mosaico de clientes, home) ─────────── */
.trust-strip { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 0 0 52px; }
.trust-strip-item {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-2);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), border-color var(--dur);
}
.trust-strip-item img { width: 100%; height: 100%; object-fit: cover; }
.trust-strip-item:nth-child(even) { transform: translateY(10px); }
.trust-strip-item:hover { border-color: var(--accent); transform: translateY(-4px) scale(1.06); }
.trust-strip-item:nth-child(even):hover { transform: translateY(6px) scale(1.06); }

/* ── RESPONSIVE NUEVAS PÁGINAS ───────────────────────── */
@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: 40px; }
  .hero-gallery-col.offset { margin-top: 44px; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid, .testimonials-full { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-info { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .header-nav { display: none; }
  #hero { min-height: 0; padding: calc(var(--header-h) + 40px) 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-gallery { max-width: 480px; margin: 0 auto; padding-bottom: 78px; }
  .hero-badge { left: 50%; bottom: 0; transform: translate(-50%, 16px); }
  #hero.loaded .hero-badge { transform: translate(-50%, 0); }
  .hero-eyebrow::before { display: none; }
  .reviews-header { justify-content: center; text-align: center; }
  .reviews-header > div { width: 100%; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .article-wrap { padding: 0 16px; padding-top: 40px; padding-bottom: 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-item { width: 64px; height: 64px; border-radius: 12px; }
  .trust-strip { gap: 10px; margin-bottom: 40px; }
  .hero-gallery-col.offset { margin-top: 0; }
  .hero-gallery-item.tall { aspect-ratio: 1 / 1; }
  .hero-badge { padding: 12px 16px 12px 12px; }
  .hero-badge-avatars img { width: 28px; height: 28px; }
  .review-card { flex-basis: 280px; padding: 22px 20px; }
  .reviews-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
  }
}
