/*
Theme Name: TDE Premium
Theme URI: https://transportesdeespectaculosmty.com
Author: Orion Agency
Description: Tema premium para Transportes de Espectáculos MTY
Version: 1.0.0
Text Domain: tde-premium
*/

/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
  --black:    #0A0A0A;
  --black-2:  #111111;
  --black-3:  #1A1A1A;
  --gold:     #C9A84C;
  --gold-2:   #E8C96A;
  --gold-dim: rgba(201,168,76,0.15);
  --white:    #FFFFFF;
  --gray:     #8A8A8A;
  --gray-2:   #3A3A3A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:       4px;
  --max-width:    1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden; /* necesario para iOS Safari */
  max-width: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TIPOGRAFÍA
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.8rem); }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 7rem 0; }
.section--dark  { background: var(--black); }
.section--dark2 { background: var(--black-2); }
.section--dark3 { background: var(--black-3); }

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* Línea decorativa dorada */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line--center { margin: 1.5rem auto; }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Animaciones de entrada */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HEADER / NAVEGACIÓN
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  padding: 1.2rem 0;
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo — forzar tamaño sin importar atributos inline de WordPress */
.site-logo img,
.site-logo .custom-logo-link img,
.site-logo .custom-logo {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
  display: block;
}
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}

.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-2) !important; }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   HERO — VIDEO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Video de fondo */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button { display: none !important; }

/* Mobile: video propio, ocultar desktop */
@media (max-width: 768px) {
  .hero-video--desktop { display: none !important; }
  .hero-video--mobile  { display: block; }
}
@media (min-width: 769px) {
  .hero-video--mobile { display: none !important; }
}
.hero-video-fallback {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.92) 100%),
    linear-gradient(to right, rgba(10,10,10,0.2) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Contenido centrado */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8rem 0 6rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.hero-eyebrow .label { color: var(--gold); }
.hero-eyebrow-line {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  max-width: 900px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-h1-sub {
  display: block;
  margin-top: -0.1em;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3.5rem; }

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.2rem 2.5rem;
}
.trust-item { text-align: center; padding: 0 2rem; }
.trust-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); display: block; line-height: 1; letter-spacing: 0.04em; }
.trust-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); margin-top: 0.2rem; display: block; }
.trust-divider { width: 1px; height: 36px; background: rgba(201,168,76,0.2); flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.hero-scroll span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--black-2);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================
   QUICK SERVICES BAR
   ============================================ */
.quick-services {
  background: var(--black-2);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 0;
}
.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.qs-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid var(--gray-2);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.qs-item:last-child { border-right: none; }
.qs-item:hover { background: var(--gold-dim); }
.qs-item:hover .qs-label { color: var(--gold); }
.qs-item:hover .qs-arrow { color: var(--gold); transform: translateX(4px); }
.qs-icon { color: var(--gold); flex-shrink: 0; }
.qs-label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); flex: 1; }
.qs-arrow { font-size: 0.9rem; color: var(--gray-2); transition: transform 0.3s ease, color 0.3s ease; }

/* ============================================
   FLOTA — SECCIÓN
   ============================================ */
.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.fleet-header-text {}
.fleet-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--gray-2);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vehicle-card {
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.vehicle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vehicle-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.vehicle-card:hover::before { opacity: 1; }

.vehicle-card-img {
  background: var(--black-3);
  padding: 2.5rem 2rem 1.5rem;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-card-img img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.04); }

.vehicle-card-category {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.25rem 0.6rem;
}

.vehicle-card-body { padding: 1.5rem; }
.vehicle-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.vehicle-card-specs {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.vehicle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-2);
}
.vehicle-badge {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vehicle-badge::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}
.vehicle-card-cta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}
.vehicle-card-cta::after { content: '→'; }
.vehicle-card:hover .vehicle-card-cta { gap: 0.8rem; }

/* ============================================
   POR QUÉ ELEGIRNOS
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 { margin-bottom: 1.5rem; }
.why-text p  { color: rgba(255,255,255,0.6); max-width: 440px; }

.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pillar {
  background: #111111;
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2.4rem 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.pillar:hover { border-color: rgba(201,168,76,0.5); background: #151515; }
.pillar:hover::before { opacity: 1; }
.pillar:hover::after { width: 100%; }

.pillar-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201,168,76,0.35);
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; color: var(--white); }
.pillar p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ============================================
   TESTIMONIOS
   ============================================ */
.reviews-header { text-align: center; margin-bottom: 3rem; }
.trustindex-wrap { margin-top: 1.5rem; }
.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.reviews-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.1em; }
.reviews-count { font-size: 0.8rem; color: var(--gray); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--black-3);
  border: 1px solid var(--gray-2);
  padding: 1.8rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.2rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}
.review-name { font-size: 0.85rem; font-weight: 500; }
.review-source { font-size: 0.72rem; color: var(--gray); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    var(--black-2);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 4rem; }
.cta-block { text-align: center; }
.cta-block h2 { margin-bottom: 1rem; }
.cta-block p  { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 3.5rem; }
.cta-block .btn { margin-top: 0; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.82rem; color: var(--gray);
  margin-top: 2rem;
  justify-content: center;
}
.cta-phone a { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--gray-2);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--gray); max-width: 300px; margin-top: 1rem; line-height: 1.8; }
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--gray-2);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* WhatsApp flotante */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================
   PAGE HERO (páginas interiores)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}
.page-hero--sm { min-height: 38vh; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero__content h1 { margin: 0.6rem 0; }
.page-hero__content p { color: var(--gray); margin-top: 1rem; font-size: 1.1rem; }

/* Breadcrumb */
.breadcrumb-bar { background: var(--black-2); border-bottom: 1px solid var(--gray-2); padding: 0.85rem 0; margin-top: 80px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--gray); }
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gray-2); }
.breadcrumb span:last-child { color: var(--white); }

/* ============================================
   SINGLE CAMIONETA — vd-hero + galería + lightbox
   ============================================ */
.vd-hero { padding: 5rem 0 4rem; }
.vd-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vd-hero__img-wrap {
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.vd-hero__img-wrap img { max-height: 360px; width: 100%; object-fit: contain; }
.vd-hero__info h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin: 0.5rem 0 1rem; }

.vd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.vd-spec {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 1.2rem;
  border-radius: 4px;
}
.vd-spec svg { flex-shrink: 0; }
.vd-spec__val { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--white); line-height: 1; }
.vd-spec__label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-top: 0.2rem; }
.vd-desc { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2rem; }
.vd-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Galería */
.vd-gallery-section { padding: 5rem 0; }
.vd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.vd-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(201,168,76,0.1);
}
.vd-gallery__item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.vd-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vd-gallery__item:hover img { transform: scale(1.05); }
.vd-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vd-gallery__item:hover .vd-gallery__overlay { opacity: 1; }

/* Lightbox */
.vd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vd-lightbox.active { opacity: 1; pointer-events: all; }
.vd-lightbox__img-wrap { max-width: 90vw; max-height: 85vh; }
.vd-lightbox__img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.vd-lightbox__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.vd-lightbox__close:hover { opacity: 1; }
.vd-lightbox__prev,
.vd-lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: white; font-size: 2.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.vd-lightbox__prev { left: 2rem; }
.vd-lightbox__next { right: 2rem; }
.vd-lightbox__prev:hover,
.vd-lightbox__next:hover { background: rgba(201,168,76,0.5); }
.vd-lightbox__counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   VEHICLE DETAIL (single-vehiculo.php legacy)
   ============================================ */
.vehicle-detail { padding: 5rem 0; }
.vehicle-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.vehicle-detail__img-wrap {
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.vehicle-detail__img-wrap img { max-height: 320px; object-fit: contain; width: 100%; }
.vehicle-detail__info-col h1 { margin: 0.5rem 0 0; font-size: clamp(2rem, 3.5vw, 3rem); }
.vehicle-detail__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.8rem 0;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.spec-item svg { color: var(--gold); flex-shrink: 0; }
.spec-item strong { color: var(--white); }
.vehicle-detail__desc { color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.vehicle-detail__desc p { margin-bottom: 1rem; }
.vehicle-detail__amenidades { margin-bottom: 2rem; }
.vehicle-detail__amenidades h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.vehicle-detail__amenidades ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vehicle-detail__amenidades li {
  font-size: 0.82rem;
  color: var(--gray);
  border: 1px solid var(--gray-2);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.vehicle-detail__price { font-size: 1.1rem; color: var(--gray); margin-bottom: 1.5rem; }
.vehicle-detail__price strong { color: var(--gold); font-size: 1.4rem; }
.vehicle-detail__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.vehicle-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card__icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.8; }
.service-card__list { margin-bottom: 2rem; }
.service-card__list li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card__list li::before { content: '—'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ============================================
   ABOUT PAGE (quienes-somos)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}
.about-grid__text h2 { margin: 0.5rem 0; }
.about-grid__text p { color: var(--gray); line-height: 1.9; margin-bottom: 1.2rem; }
.about-grid__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  overflow: hidden;
}
.about-stat {
  background: var(--black-2);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-2);
}
.about-stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-stat__plus, .about-stat__pct { font-size: 1.5rem; }
.about-stat__label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.4rem; display: block; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  border-top: 2px solid var(--gold);
  background: var(--black-3);
}
.value-card__num { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); opacity: 0.2; display: block; line-height: 1; margin-bottom: 0.5rem; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.8; }
.driver-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.driver-pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  min-width: 200px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-2);
}
.contact-item:first-child { padding-top: 0; }
.contact-item__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.contact-item__value { color: var(--white); font-size: 0.95rem; line-height: 1.5; transition: color var(--transition); }
a.contact-item__value:hover { color: var(--gold); }
.contact-quick-btns { margin-top: 2rem; }
.contact-quick-btns__title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 0.75rem; }
.contact-quick-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; flex-direction: column; }
.contact-quick-btns .btn { width: fit-content; }
.contact-map { border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.faq-item {
  padding: 2rem;
  background: var(--black-3);
  border-left: 2px solid var(--gold);
}
.faq-item h4 { font-family: var(--font-body); font-weight: 500; font-size: 1rem; margin-bottom: 0.75rem; }
.faq-item p { color: var(--gray); font-size: 0.88rem; line-height: 1.8; }

/* ============================================
   CATÁLOGO VERTICAL (page-vehiculos)
   ============================================ */
.catalog-section { padding-top: 4rem; padding-bottom: 6rem; }

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.catalog-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-block { border-bottom: 1px solid var(--gray-2); padding-bottom: 2rem; }
.sidebar-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sidebar-filters { display: flex; flex-direction: column; gap: 0.3rem; }
.sf-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  color: var(--gray);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.sf-btn:hover { color: var(--white); border-color: var(--gray-2); }
.sf-btn.active { color: var(--gold); border-color: rgba(201,168,76,0.3); background: var(--gold-dim); }
.sf-count { font-size: 0.72rem; color: var(--gray-2); }
.sf-btn.active .sf-count { color: rgba(201,168,76,0.6); }

.sidebar-services { display: flex; flex-direction: column; gap: 0.5rem; }
.ss-link {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 0.3rem 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.ss-link:hover { color: var(--gold); }

/* Botón toggle filtros — solo visible en móvil */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  width: 100%;
  margin-bottom: 1rem;
}
.filter-toggle-btn svg { transition: transform 0.3s ease; }
.filter-toggle-btn.open svg { transform: rotate(180deg); }

/* Catálogo header */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-2);
}
.catalog-count { font-size: 0.82rem; color: var(--gray); }
.catalog-count span { color: var(--gold); font-weight: 500; }

/* Tarjeta vertical rectangular */
.catalog-card {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 0;
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  margin-bottom: 1rem;
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.catalog-card:hover { border-color: rgba(201,168,76,0.4); transform: translateX(4px); cursor: pointer; }
.catalog-card__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.catalog-card__img {
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 160px;
}
.catalog-card__img img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.catalog-card:hover .catalog-card__img img { transform: scale(1.04); }

.catalog-card__info {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  border-left: 1px solid var(--gray-2);
  border-right: 1px solid var(--gray-2);
}
.catalog-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.catalog-card__info h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin: 0;
  line-height: 1.1;
}
.catalog-card__specs { font-size: 0.8rem; color: var(--gray); }
.catalog-card__meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.meta-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  background: var(--black-3);
  border: 1px solid var(--gray-2);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.meta-pill svg { color: var(--gold); flex-shrink: 0; }

.catalog-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-width: 140px;
}

/* Empty state */
#catalog-empty { text-align: center; padding: 4rem; gap: 1rem; }

/* Responsive catálogo */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .sidebar-block { border-bottom: none; padding-bottom: 0; border-right: 1px solid var(--gray-2); padding-right: 1.5rem; }
  .sidebar-block:last-of-type { border-right: none; }
}
@media (max-width: 768px) {
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card__img { min-height: 180px; border-bottom: 1px solid var(--gray-2); }
  .catalog-card__info { border-left: none; border-right: none; border-bottom: 1px solid var(--gray-2); }
  .catalog-card__cta { justify-content: flex-start; padding: 1rem 1.5rem; }
  .catalog-sidebar { flex-direction: column; }
  .sidebar-block { border-right: none; border-bottom: 1px solid var(--gray-2); padding-bottom: 1.5rem; }
}

/* Generic page content */
.page-content { max-width: 780px; margin: 0 auto; }
.page-content p { color: var(--gray); line-height: 1.9; margin-bottom: 1.2rem; }
.page-content h2, .page-content h3 { margin: 2rem 0 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ── TABLET (≤1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 { font-size: clamp(4rem, 10vw, 7rem); }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-visual { order: -1; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quick-services__grid { grid-template-columns: repeat(3, 1fr); }
  .qs-item:nth-child(3) { border-right: none; }
  .qs-item:nth-child(4) { border-top: 1px solid var(--gray-2); }
  .qs-item:nth-child(5) { border-top: 1px solid var(--gray-2); border-right: none; }

  /* Inner pages tablet */
  .vehicle-detail__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .vehicle-grid--3 { grid-template-columns: repeat(2, 1fr); }

  /* Single vehículo tablet */
  .vd-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .vd-gallery { grid-template-columns: repeat(2, 1fr); }
  .vd-gallery__item:first-child { grid-column: span 2; }

  /* Page hero tablet */
  .page-hero--sm { padding: 6rem 0 3rem; }
}

/* ── MÓVIL (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0a0a0a;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    z-index: 1;
    overflow-y: auto;
    padding: 6rem 2rem 3rem;
  }
  .main-nav.open a { font-size: 1.5rem; }
  .menu-toggle { display: flex; position: relative; z-index: 2; }
  /* Cuando el menú está abierto: el header sube a la cima del stacking context */
  .site-header.menu-open {
    z-index: 9000 !important;
    background: #0a0a0a !important;
    /* backdrop-filter crea un containing block para position:fixed — DEBE quitarse */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Hero móvil */
  .hero { min-height: 78svh; width: 100%; max-width: 100%; align-items: center; }
  .hero-content--centered {
    padding: 4rem 0 1rem !important;
    text-align: center;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;   /* espaciado uniforme entre todos los hijos */
    width: 100%;
  }
  /* Cero márgenes en todos los hijos — solo el gap del container controla el espacio */
  .hero-eyebrow { justify-content: center; margin: 0 !important; }
  .hero-eyebrow-line { display: none; }
  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    letter-spacing: -0.02em;
    line-height: 1.0;
    text-align: center;
    max-width: 100%;
    margin: 0 !important;
  }
  .hero-h1-sub {
    font-size: 0.82em;
    margin-top: 0.04em;
    letter-spacing: 0.03em;
    display: block;
  }
  .hero-content--centered p {
    font-size: 0.62rem;
    line-height: 1.5;
    margin: 0 !important;
    text-align: center;
    max-width: 100%;
    opacity: 0.75;
    letter-spacing: 0.01em;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin: 0 !important;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-trust { display: none; }
  .trust-divider { display: none; }

  /* Flota — grid 1 columna en móvil */
  .fleet-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fleet-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .fleet-filters { flex-wrap: wrap; gap: 0.5rem; }

  /* Por qué elegirnos */
  .why-pillars { grid-template-columns: 1fr; }
  .why-grid { gap: 3rem; }

  /* Reseñas */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Quick services — compacto en móvil, sin padding lateral */
  .quick-services .container { padding: 0; }
  .quick-services__grid { grid-template-columns: 1fr 1fr; }
  .qs-item {
    padding: 0 0.85rem;
    height: 50px;
    gap: 0.4rem;
    align-items: center;
    border-top: 1px solid var(--gray-2);
    border-right: 1px solid var(--gray-2);
    overflow: hidden;
  }
  .qs-item:nth-child(even) { border-right: none; }
  /* Último item impar → ancho completo */
  .qs-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
  .qs-icon svg { width: 15px; height: 15px; }
  .qs-label { font-size: 0.62rem; letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .qs-arrow { font-size: 0.7rem; flex-shrink: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Pages internas */
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .vehicle-detail__cta { flex-direction: column; }
  .vehicle-grid--3 { grid-template-columns: 1fr; }
  .about-grid__stats { grid-template-columns: 1fr 1fr; }
  .driver-pillars { flex-direction: column; align-items: center; }

  /* Page hero móvil */
  .page-hero--sm { padding: 7rem 0 3rem; }
  .page-hero__content h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  /* Breadcrumb móvil */
  .breadcrumb-bar { margin-top: 70px; }
  .breadcrumb { flex-wrap: wrap; font-size: 0.75rem; }

  /* Single vehículo móvil */
  .vd-hero { padding: 2rem 0 3rem; }
  .vd-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vd-hero__img-wrap { min-height: 220px; padding: 1.5rem; }
  .vd-specs { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .vd-cta { flex-direction: column; }
  .vd-cta .btn { width: 100%; justify-content: center; }
  .vd-gallery { grid-template-columns: 1fr; }
  .vd-gallery__item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .vd-lightbox__prev { left: 0.75rem; }
  .vd-lightbox__next { right: 0.75rem; }

  /* Catálogo vehículos */
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card__img { min-height: 180px; border-bottom: 1px solid var(--gray-2); }
  .catalog-card__info { border-left: none; border-right: none; border-bottom: 1px solid var(--gray-2); }
  .catalog-card__cta { justify-content: flex-start; padding: 1rem 1.5rem; }
  .catalog-sidebar { flex-direction: column; }
  .sidebar-block { border-right: none; border-bottom: 1px solid var(--gray-2); padding-bottom: 1.5rem; }
  .filter-toggle-btn { display: flex; }
  .catalog-sidebar { display: none; }
  .catalog-sidebar.open { display: flex; }

  /* CTA section */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ═══════════════════════════════════════════════════════
   LANDING PAGE — COTIZAR
   Template: page-cotizar.php
   ═══════════════════════════════════════════════════════ */

/* ── Variables / reset ── */
.lp-body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  margin: 0;
  overflow-x: hidden;
}

/* ── Header mínimo ── */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  height: 64px;
  color: var(--white);
}
.lp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-logo { display: flex; align-items: center; text-decoration: none; }
.lp-logo img { height: 44px; width: auto; }
.lp-logo__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.lp-header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.lp-header__phone:hover { opacity: 0.8; }

/* ── Hero ── */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 64px;
}
.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.72) 60%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}
.lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 2rem 2rem 4rem;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.lp-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 1.4rem;
}
.lp-h1 em {
  font-style: normal;
  color: var(--gold);
}
.lp-hero__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 2rem;
}
.lp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
}
.lp-hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.lp-hero__badges span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── Form section ── */
.lp-form-section {
  background: var(--black-2);
  padding: 5rem 0 6rem;
}

/* ── Progress bar ── */
.lp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
}
.lp-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.lp-progress__bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  background: var(--black);
  transition: all 0.3s;
}
.lp-progress__label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
  white-space: nowrap;
}
.lp-progress__line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--gray-2);
  margin: 0 0.5rem;
  margin-bottom: 1.4rem;
  transition: background 0.3s;
}
.lp-progress__step.active .lp-progress__bubble {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.lp-progress__step.active .lp-progress__label { color: var(--gold); }
.lp-progress__step.done .lp-progress__bubble {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.lp-progress__step.done .lp-progress__label { color: var(--white); }
.lp-progress__line.done { background: var(--gold); }

/* ── Steps ── */
.lp-step {
  display: none;
  animation: lpFadeIn 0.35s ease;
}
.lp-step.active { display: block; }

@keyframes lpFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lp-step__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lp-step__num {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.lp-step__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.lp-step__head p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
}

/* ── Filtros de categoría — cotizar ── */
.lp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lp-filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lp-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
}

/* ── Vehicle cards — mismo estilo que homepage ── */
.lp-vehicles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.lp-vcard { cursor: pointer; display: block; position: relative; }
.lp-vcard input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }

.lp-vcard__inner {
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 100%;
}
.lp-vcard__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.lp-vcard:hover .lp-vcard__inner { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.lp-vcard:hover .lp-vcard__inner::before { opacity: 1; }
.lp-vcard.selected .lp-vcard__inner {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(201,168,76,0.15);
}
.lp-vcard.selected .lp-vcard__inner::before { opacity: 1; }

/* Burbuja de selección — esquina superior izquierda */
.lp-vcard__sel {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--black-3);
  border: 2px solid var(--gray-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: transparent;
  transition: all 0.2s;
  z-index: 3;
}
.lp-vcard.selected .lp-vcard__sel {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Imagen — igual que .vehicle-card-img */
.lp-vcard .vehicle-card-img {
  background: var(--black-3);
  padding: 2.5rem 2rem 1.5rem;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-vcard .vehicle-card-img img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}
.lp-vcard:hover .vehicle-card-img img { transform: scale(1.04); }

/* Label seleccionar → en lugar de Ver detalles */
.lp-vcard-cta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}
.lp-vcard-cta::after { content: '→'; }
.lp-vcard.selected .lp-vcard-cta { color: var(--gold-2); }
.lp-vcard.selected .lp-vcard-cta::before { content: '✓ '; }
.lp-vcard.selected .lp-vcard-cta::after { content: ''; }

.lp-vcard__link {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-vcard__link:hover { color: var(--gold); }

/* ── Selector tipo de servicio ── */
.lp-stype-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.lp-stype-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 0.75rem;
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  color: rgba(255,255,255,0.55);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s;
  line-height: 1.3;
}
.lp-stype-btn svg { transition: stroke 0.2s; }
.lp-stype-btn:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}
.lp-stype-btn.active {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 768px) {
  .lp-stype-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .lp-stype-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stype-btn  { padding: 0.9rem 0.5rem; font-size: 0.65rem; }
}

/* ── Form fields ── */
.lp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}
.lp-field { display: flex; flex-direction: column; gap: 0.4rem; }
.lp-field--full { grid-column: 1 / -1; }
.lp-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.lp-field input,
.lp-field textarea,
.lp-field select {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--gray-2);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.lp-field input::placeholder,
.lp-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.lp-field input:focus,
.lp-field textarea:focus,
.lp-field select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.lp-field textarea { resize: vertical; min-height: 110px; }
.lp-field select { appearance: none; cursor: pointer; }
.lp-field select option { background: #111; color: var(--light); }

/* ── Summary box ── */
.lp-summary {
  max-width: 680px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  background: rgba(201,168,76,0.04);
  overflow: hidden;
}
.lp-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-summary__row:last-child { border-bottom: none; }
.lp-summary__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 80px;
}
.lp-summary__val {
  font-size: 0.85rem;
  color: var(--white);
  text-align: right;
}

/* ── Step nav ── */
.lp-step__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.lp-step__nav--two { justify-content: center; }

/* ── Trust text under submit ── */
.lp-form__trust {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ── Trust section ── */
.lp-trust {
  background: var(--black);
  padding: 6rem 0;
}
.lp-trust__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lp-trust__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.lp-trust__head h2 em { font-style: normal; color: var(--gold); }
.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.lp-trust__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, transform 0.2s;
}
.lp-trust__item:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.lp-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  margin: 0 auto 1.2rem;
}
.lp-trust__item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.6rem;
  line-height: 1.35;
}
.lp-trust__item p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* ── Footer mínimo ── */
.lp-footer {
  background: var(--black);
  border-top: 1px solid var(--gray-2);
  padding: 1.5rem 0;
  text-align: center;
}
.lp-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0.2rem 0;
}
.lp-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer a:hover { color: var(--gold); }
.lp-footer__credit { margin-top: 0.3rem; }
.lp-footer__credit a { color: var(--gold) !important; }

/* ── Error toast ── */
.lp-error-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #c0392b;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lp-error-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Landing — responsive ── */
@media (max-width: 1024px) {
  .lp-vehicles { grid-template-columns: repeat(2, 1fr); }
  .lp-trust__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-header__phone span { display: none; }

  .lp-hero__sub { font-size: 0.9rem; }
  .lp-hero__badges { gap: 1rem; }
  .lp-hero__badges span { font-size: 0.65rem; }

  .lp-progress__line { max-width: 40px; }
  .lp-progress__label { font-size: 0.6rem; }

  /* Filtros — 2 columnas en mobile */
  .lp-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .lp-filter-btn { padding: 0.55rem 0.5rem; font-size: 0.72rem; text-align: center; }

  /* Body y footer del card — más compactos en mobile */
  .lp-vcard .vehicle-card-body { padding: 0.9rem; }
  .lp-vcard .vehicle-card-name { font-size: 1rem; margin-bottom: 0.3rem; }
  .lp-vcard .vehicle-card-specs { font-size: 0.68rem; margin-bottom: 0.75rem; }
  .lp-vcard .vehicle-card-footer { flex-wrap: wrap; gap: 0.4rem; padding-top: 0.6rem; }
  .lp-vcard .vehicle-badge { flex: 0 0 100%; padding-bottom: 0; }
  .lp-vcard__link { font-size: 0.65rem; }
  .lp-vcard-cta { font-size: 0.65rem; }

  .lp-vehicles { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .lp-vcard .vehicle-card-img { min-height: 140px; padding: 1.5rem 1rem 1rem; }

  .lp-fields { grid-template-columns: 1fr; }
  .lp-field--full { grid-column: 1; }

  .lp-trust__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .lp-trust__item { padding: 1.5rem 1rem; }

  .lp-step__nav--two { flex-direction: column-reverse; align-items: center; }
  .lp-step__nav--two .btn { width: 100%; max-width: 340px; justify-content: center; }
  .lp-step__nav .btn { width: 100%; max-width: 340px; justify-content: center; }

  .lp-error-toast { white-space: normal; text-align: center; width: 85%; }
}

@media (max-width: 480px) {
  .lp-vehicles { grid-template-columns: 1fr; }
  .lp-trust__grid { grid-template-columns: 1fr; }
  .lp-summary__row { flex-direction: column; gap: 0.2rem; }
  .lp-summary__val { text-align: left; }
}
