/* ============================================================
   MATHEWS RENTA CAR — Luxury Redesign
   Tipografías: Playfair Display (títulos) · Inter (cuerpo)
   Paleta: Obsidian · Champagne Gold · Pearl White
============================================================ */

/* ── Variables globales ── */
:root {
  /* Dark luxury palette */
  --obsidian:      #08090D;
  --dark:          #000000;
  --dark-mid:      #111318;
  --dark-card:     #161A22;
  --dark-surface:  #1C2030;

  /* Champagne gold */
  --champagne:     #FDD405;
  --champagne-lt:  #E8C87A;
  --champagne-dim: rgba(201,164,92,0.18);

  /* Pearl / cream for light sections */
  --pearl:         #FAFAF7;
  --pearl-dark:    #F0EDE6;

  /* Compatibility aliases (used in JS / existing classes) */
  --navy:          #08090D;
  --navy-mid:      #111318;
  --navy-light:    #1C2030;
  --white:         #ffffff;
  --off-white:     #FAFAF7;
  --grey-soft:     #F0EDE6;
  --grey-mid:      #9094A1;
  --text-dark:     #F0EDE8;
  --text-mid:      #C4C1BA;
  --text-light:    #9094A1;
  --gold:          #C9A45C;
  --gold-light:    #E8C87A;

  /* Typography */
  --font-title:    'Poppins', sans-serif;
  --font-subtitle: 'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --header-h:    86px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── Reset y base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--obsidian);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Tipografía base ── */
h1, h2, h3, h4, h5 { font-family: var(--font-title); line-height: 1.15; }
p { line-height: 1.75; }


/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.pre-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.pre-logo {
  width: 250px;
  max-width: 55vw;
  object-fit: contain;
  animation: pre-pulse 2.4s ease-in-out infinite;
}
@keyframes pre-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.72; transform: scale(0.975); }
}
.pre-road {
  position: relative;
  width: 260px;
  height: 36px;
  overflow: hidden;
}
.pre-line {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--champagne) 0px, var(--champagne) 16px,
    transparent 16px, transparent 32px
  );
  animation: pre-road-scroll 0.55s linear infinite;
}
@keyframes pre-road-scroll {
  from { background-position: 0 0; }
  to   { background-position: -32px 0; }
}
.pre-car {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  animation: pre-car-bounce 0.5s ease-in-out infinite alternate;
}
@keyframes pre-car-bounce {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-2px); }
}
.pre-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.6;
}


/* ============================================================
   ANIMACIONES DE REVEAL
============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="fade-up"]    { transform: translateY(50px); }
[data-reveal="fade-right"] { transform: translateX(-60px); }
[data-reveal="fade-left"]  { transform: translateX(60px); }
[data-reveal="zoom-in"]    { transform: scale(0.9); }
[data-reveal].is-visible   { opacity: 1; transform: none; }

[data-delay="100"]  { transition-delay: 0.10s; }
[data-delay="180"]  { transition-delay: 0.18s; }
[data-delay="200"]  { transition-delay: 0.20s; }
[data-delay="300"]  { transition-delay: 0.30s; }
[data-delay="320"]  { transition-delay: 0.32s; }
[data-delay="400"]  { transition-delay: 0.40s; }


/* ============================================================
   HEADER
============================================================ */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.45s var(--ease-smooth),
              box-shadow  0.45s var(--ease-smooth),
              backdrop-filter 0.45s var(--ease-smooth);
}

#main-header.header-transparent { background: transparent; }

#main-header.header-scrolled {
  background: rgba(8,9,13,0.94);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(201,164,92,0.15);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; }

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width 0.35s var(--ease-smooth);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

/* Botón reservar */
.btn-reservar {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--champagne);
  padding: 10px 24px;
  border-radius: 1px;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-reservar:hover {
  background: var(--champagne-lt);
  transform: translateY(-1px);
}

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-smooth), opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-img {
  width: 360px;
  max-width: 88%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.65))
    drop-shadow(0 10px 28px rgba(0,0,0,0.45));
  margin-bottom: 28px;
}

/* Videos de fondo */
.hero-videos {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.active { opacity: 1; }

/* Overlay cinemático */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,9,13,0.45) 0%, rgba(8,9,13,0.12) 60%, transparent 100%),
    linear-gradient(to top,   rgba(8,9,13,0.25) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(8,9,13,0.15) 0%, transparent 30%);
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 920px;
}

@media (min-width: 769px) {
  .hero-content {
    margin-left: clamp(60px, 7vw, 120px);
    margin-right: auto;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  margin-top: 120px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--champagne);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.55),
    0 12px 32px rgba(0,0,0,0.35);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
  display: block;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botones hero */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 1px;
  transition: all 0.35s var(--ease-smooth);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary-hero {
  background: var(--champagne);
  color: var(--obsidian);
}
@media (max-width: 768px) {
  .btn-primary-hero{
    margin-top: 275px;
  }
}

.btn-primary-hero:hover {
  background: var(--champagne-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(253,212,5,0.86);
}

.btn-whatsapp {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-whatsapp:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ── WhatsApp flotante ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.3s ease;
  pointer-events: none;
}
.wa-float.wa-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover { background: #1ebe5d; transform: translateY(-3px) scale(1.06); }

.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  background: var(--obsidian);
  border: 1px solid rgba(201,164,92,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── Líneas divisoras entre secciones ── */
.section-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 80px);
  background: var(--dark);
}
.section-divider::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: rgba(201,164,92,0.15);
}

/* Indicador de scroll */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator-dot {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}


/* ============================================================
   SECCIÓN ENCABEZADOS COMUNES
============================================================ */
.section-header {
  text-align: center;
  padding: var(--section-pad) clamp(20px, 5vw, 80px) 72px;
  max-width: 800px;
  margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--white); }
.section-header.light .section-eyebrow  { color: var(--champagne); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.dark-text { color: var(--obsidian); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
}


/* ============================================================
   DESTINOS — Editorial luxury layout
============================================================ */
.destinations {
  background: var(--pearl);
  padding-bottom: var(--section-pad);
}

.destinations .section-header { padding-top: var(--section-pad); }
.destinations .section-title  { color: var(--obsidian); }
.destinations .section-eyebrow { color: var(--champagne); }
.destinations .section-subtitle { color: #6B6F7A; }

.destination-item {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 540px;
  overflow: hidden;
}

.destination-item.reverse {
  grid-template-columns: 42% 58%;
  direction: rtl;
}

.destination-item.reverse > * { direction: ltr; }

/* Imagen */
.destination-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-smooth);
}

.destination-item:hover .destination-image { transform: scale(1.04); }

.destination-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(250,250,247,0.06) 100%);
}

.destination-item.reverse .destination-image-overlay {
  background: linear-gradient(270deg, transparent 55%, rgba(250,250,247,0.06) 100%);
}

/* Contenido */
.destination-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px) clamp(40px, 5vw, 88px);
  background: var(--pearl);
  position: relative;
}

.destination-content::before {
  content: '';
  position: absolute;
  top: clamp(48px, 6vw, 100px);
  left: clamp(40px, 5vw, 88px);
  width: 28px;
  height: 1px;
  background: var(--champagne);
}

.destination-item.reverse .destination-content::before {
  left: auto;
  right: clamp(40px, 5vw, 88px);
}

.destination-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
  margin-top: 20px;
}

.destination-name {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: var(--obsidian);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  line-height: 1.1;
}

.destination-description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: #5A5E6A;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
}

.destination-detail {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #9094A1;
  text-transform: uppercase;
}


/* ============================================================
   FLOTA
============================================================ */
.fleet {
  position: relative;
  background: var(--dark);
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
}

.fleet-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8,9,13,0.65), rgba(8,9,13,0.65)),
    url('fondo.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fleet .section-header  { position: relative; z-index: 1; }
.fleet .section-title   { color: var(--white); }
.fleet .section-eyebrow { color: var(--champagne); }
.fleet .section-subtitle { color: rgba(255,255,255,0.45); }

.fleet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Botones slider flota */
.fleet-btn { display: none; }

/* ── Tarjeta de vehículo ── */
.vehicle-card {
  cursor: pointer;
  height: 460px;
  position: relative;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,164,92,0.2);
}

.vehicle-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Ambas caras llenan la tarjeta */
.vehicle-face {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 2px;
  overflow: hidden;
}

/* Cara frontal */
.vehicle-face-front {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid var(--champagne);
  display: flex;
  flex-direction: column;
}

.vehicle-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-mid);
  flex-shrink: 0;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.vehicle-card:hover .vehicle-image { transform: scale(1.03); }

/* Cara trasera: oculta (el overlay la maneja) */
.vehicle-face-back { display: none; }

.vehicle-full-img {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 20px 20px 8px;
}

.vehicle-back-overlay {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(8,9,13,0.96);
}

.vehicle-back-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.btn-vehicle-back {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--champagne);
  padding: 10px 20px;
  border-radius: 1px;
  transition: background 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-vehicle-back:hover { background: var(--champagne-lt); }

.vehicle-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}

.vehicle-close-btn:hover { background: rgba(255,255,255,0.2); }

.vehicle-info {
  padding: 20px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.btn-vehicle-hint {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vehicle-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.vehicle-specs li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vehicle-specs li:last-child { border-bottom: none; padding-bottom: 0; }

.spec-icon { color: var(--champagne); display: flex; align-items: center; opacity: 0.8; }

.spec-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

.spec-value {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-align: right;
}

.btn-vehicle {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(201,164,92,0.35);
  padding: 13px 20px;
  border-radius: 1px;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.btn-vehicle:hover {
  background: var(--champagne-dim);
  border-color: var(--champagne);
}


/* ─── Overlay flotante — Expand + Flip ─── */
.veh-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,9,13,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 800;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.veh-backdrop.visible { opacity: 1; }

.veh-exp-wrap {
  display: none;
  position: fixed;
  z-index: 801;
  pointer-events: none;
  perspective: 1400px;
}
.veh-exp-wrap.active { pointer-events: auto; }

.veh-exp-flip {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  border-radius: 2px;
}

.veh-exp-face {
  position: absolute; inset: 0;
  border-radius: 2px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.veh-exp-front { background: var(--dark-card); }

.veh-exp-front-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.veh-exp-front-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,9,13,0.92) 0%, transparent 55%);
}

.veh-exp-front-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.veh-exp-back {
  background: var(--dark-card);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

.veh-exp-back-img {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 24px 24px 10px;
  cursor: zoom-in;
}

.veh-exp-back-bar {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 56px 14px 20px;
  background: rgba(8,9,13,0.97);
  border-top: 1px solid rgba(201,164,92,0.2);
}

.veh-exp-back-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.veh-exp-close {
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.veh-exp-close:hover { background: rgba(255,255,255,0.2); }


/* ── Lightbox imagen vehículo ── */
.img-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(4,6,10,0.98);
  align-items: center;
  justify-content: center;
}
.img-lb.lb-open { display: flex; }

.img-lb-img {
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
  animation: lb-in 0.28s var(--ease-out);
}

@keyframes lb-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.img-lb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  z-index: 1;
}
.img-lb-close:hover { background: rgba(255,255,255,0.2); }


/* ============================================================
   EXPERIENCIAS DE VIAJE — Slider horizontal
============================================================ */
.experiences {
  background: var(--obsidian);
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
}

.experiences .section-header { padding-bottom: 56px; }
.experiences .section-title  { color: var(--white); }
.experiences .section-subtitle { color: rgba(255,255,255,0.4); }

.exp-slider-outer {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.exp-slider-track {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--dark-card);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.06);
}

.exp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s var(--ease-smooth);
  pointer-events: none;
}

.exp-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.exp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 32px 28px;
  background: linear-gradient(to top, rgba(8,9,13,0.75) 0%, transparent 100%);
}

.exp-slide-caption span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.exp-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
}

.exp-btn:hover {
  background: rgba(201,164,92,0.2);
  border-color: var(--champagne);
  transform: translateY(-50%) scale(1.06);
}

.exp-btn-prev { left: -26px; }
.exp-btn-next { right: -26px; }

.exp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.exp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.35s ease, width 0.35s ease, border-radius 0.35s ease;
  padding: 0;
}

.exp-dot.active {
  background: var(--champagne);
  width: 24px;
  border-radius: 3px;
}


/* ============================================================
   BENEFICIOS — Dark luxury treatment
============================================================ */
.benefits {
  background: var(--dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.benefits-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.benefits-header .section-eyebrow,
.benefits-header .section-title,
.benefits-header .section-subtitle { text-align: left; }

.benefits-header .section-eyebrow { justify-content: flex-start; }

.benefits-header .section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--white);
}

.benefits-header .section-subtitle {
  color: rgba(255,255,255,0.38);
  font-size: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s ease;
}

.benefit-item:hover { border-top-color: var(--champagne); }

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.benefit-item:hover .benefit-icon { opacity: 1; }

.benefit-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.benefit-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  font-weight: 400;
}


/* ============================================================
   CONTACTO
============================================================ */
.contact {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,9,13,0.95) 0%,
    rgba(13,15,20,0.90) 100%
  );
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 72px;
}

.contact-header .section-eyebrow { color: var(--champagne); }
.contact-header .section-title   { color: var(--white); }
.contact-header .section-subtitle { color: rgba(255,255,255,0.42); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

/* Formulario */
.contact-form { display: flex; flex-direction: column; gap: 28px; }

.form-group { display: flex; flex-direction: column; gap: 10px; }

.form-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.2); }

.form-input:focus { border-bottom-color: var(--champagne); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}

.form-select option { background: var(--dark-card); color: var(--white); }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.35);
  cursor: pointer;
}

.btn-form-submit {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--champagne);
  border: none;
  border-radius: 1px;
  padding: 18px 44px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-form-submit:hover {
  background: var(--champagne-lt);
  transform: translateY(-2px);
}

/* Datos de contacto */
.contact-details { display: flex; flex-direction: column; gap: 8px; }

.contact-details-title {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-bottom-color 0.3s ease;
}

.contact-item:hover { border-bottom-color: rgba(201,164,92,0.35); }

.contact-item-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,164,92,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-item:hover .contact-item-icon {
  background: var(--champagne-dim);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item-label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.contact-item-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(201,164,92,0.15);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 80px) 52px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  color: rgba(255,255,255,0.28);
  line-height: 1.75;
  font-weight: 300;
}

.footer-nav-title {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
  opacity: 0.7;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-nav-links a:hover { color: rgba(255,255,255,0.82); }

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address p,
.footer-address a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s ease;
}

.footer-address a:hover { color: rgba(255,255,255,0.82); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
  line-height: 1;
}

.webdesign-link {
  color: var(--champagne);
  opacity: 0.7;
  font-weight: 500;
  transition: opacity 0.3s;
}
.webdesign-link:hover { opacity: 1; }


/* ============================================================
   RESPONSIVE — Tablet
============================================================ */
@media (max-width: 1024px) {
  .benefits-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-header .section-title,
  .benefits-header .section-eyebrow,
  .benefits-header .section-subtitle { text-align: center; }
  .benefits-header .section-eyebrow  { justify-content: center; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-details { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .contact-item { flex: 1; min-width: 220px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .destination-item,
  .destination-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .destination-image-wrap { aspect-ratio: 16 / 9; }
  .destination-item.reverse .destination-image-overlay { background: none; }
  .destination-content::before { display: none; }

  .exp-btn-prev { left: 8px; }
  .exp-btn-next { right: 8px; }
}


/* ============================================================
   RESPONSIVE — Móvil
============================================================ */
@media (max-width: 768px) {

  /* Header */
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--obsidian);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease-smooth);
    z-index: 999;
    padding-top: 20px;
    border-top: 1px solid rgba(201,164,92,0.2);
  }

  .nav-links.is-open { transform: translateY(0); }

  /* Stagger de links al abrir menú */
  .nav-links .nav-link {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s ease;
  }
  .nav-links.is-open .nav-link { opacity: 1; transform: translateY(0); }
  .nav-links.is-open .nav-link:nth-child(1) { transition-delay: 0.08s; }
  .nav-links.is-open .nav-link:nth-child(2) { transition-delay: 0.14s; }
  .nav-links.is-open .nav-link:nth-child(3) { transition-delay: 0.20s; }
  .nav-links.is-open .nav-link:nth-child(4) { transition-delay: 0.26s; }
  .nav-links.is-open .nav-link:nth-child(5) { transition-delay: 0.32s; }

  /* Reset opacity cuando se cierra */
  .nav-links:not(.is-open) .nav-link {
    transition-delay: 0s;
  }

  .nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.65);
  }

  .btn-reservar { display: none; }
  .hamburger    { display: flex; z-index: 1001; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; }
  .btn { width: 100%; justify-content: center; padding: 16px 24px; }

  /* Flota — slider horizontal móvil */
  .fleet-slider-wrap {
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
  }

  .fleet-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 0 8px;
    overflow: visible;
  }

  .vehicle-card {
    flex: 0 0 82%;
    height: 420px;
  }

  .fleet-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: rgba(8,9,13,0.8);
    border: 1px solid rgba(201,164,92,0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
  }

  #fleetPrev { left: 6px; }
  #fleetNext { right: 6px; }

  .fleet-btn:hover  { background: rgba(201,164,92,0.2); }
  .fleet-btn:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

  /* Beneficios */
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Contacto */
  .contact-details { flex-direction: column; }
  .contact-item { min-width: unset; }

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

@media (max-width: 480px) {
  :root { --section-pad: 64px; }

  .section-title { font-size: 1.85rem; }

  .exp-btn { width: 40px; height: 40px; }
  .exp-btn-prev { left: 6px; }
  .exp-btn-next { right: 6px; }

  .vehicle-card,
  .vehicle-card-inner { min-height: 380px; }
}


/* ============================================================
   VEHÍCULOS — Layout split tipo arte-section con cortinilla
============================================================ */
.vs-section {
  background: radial-gradient(circle at top left, rgba(201,164,92,.08) 0%, transparent 35%),
    radial-gradient(circle at bottom right, rgba(26,58,107,.15) 0%, transparent 40%),
    linear-gradient(180deg, #0a0f18 0%, #0f1725 100%);
  overflow: hidden; /* evita que la cortinilla translateX genere scroll horizontal */
}

/* Intro centrada */
.vs-intro {
  padding: var(--section-pad) clamp(24px, 8%, 120px) 60px;
  text-align: center;
}

.vs-intro-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(253, 212, 5, 0.86);
  margin-bottom: 18px;
}

.vs-intro-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.vs-intro-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.875);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Bloque split ── */
.vs-block {
  display: flex;
  min-height: 84vh;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Inversión: imagen izquierda · texto derecha */
.vs-block--tr {
  flex-direction: row-reverse;
}

/* ── Columna texto (42%) ── */
.vs-text {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
}

.vs-text-inner {
  padding: 80px 6% 80px 9%;
  width: 100%;
}

.vs-block--tr .vs-text-inner {
  padding: 80px 9% 80px 6%;
}

/* Número decorativo */
.vs-block-num {
  display: block;
  font-family: var(--font-title);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: -18px;
  margin-left: -4px;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

/* Nombre del vehículo */
.vs-block-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 22px;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 8px 20px rgba(0,0,0,0.40),
    0 20px 50px rgba(0,0,0,0.25);
}

/* Línea divisoria */
.vs-rule {
  width: 36px;
  height: 1px;
  background: rgba(253, 212, 5, 0.86);
  margin-bottom: 28px;
}

/* Lista de especificaciones en la columna de texto */
.vs-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.vs-spec-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vs-spec-row svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.22);
}

.vs-spec-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.763);
  min-width: 120px;
}

.vs-spec-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin-left: auto;
  text-align: right;
}

/* Botón CTA — glass premium */
.vs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(253, 212, 5, 0.86);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.vs-cta:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ── Columna visual (58%) ── */
.vs-visual {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}

.vs-frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #0B0D11;
}

.vs-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  animation: zoomSuave 8s ease-in-out infinite alternate;
}
@keyframes zoomSuave {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
/* ── Cortinilla wipe-reveal ── */
/* La cortinilla cubre la imagen por defecto (mismo color que el fondo).
   JS añade .revealed cuando el bloque entra al viewport → se desliza. */
.vs-cover {
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 2;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Imagen en la derecha → cortinilla se desliza a la derecha */
.vs-cover.revealed {
  transform: translateX(101%);
}

/* Imagen en la izquierda → cortinilla se desliza a la izquierda */
.vs-cover.vs-cover--left.revealed {
  transform: translateX(-101%);
}

/* ============================================================
   DESTINOS — reveal lateral + overlay nombre + botón reservar
============================================================ */

/* Sin clip-path por defecto — JS aplica .lr-pending a elementos bajo el fold */
.destination-image-wrap[data-reveal-lr].lr-pending {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-image-wrap[data-reveal-lr].revealed {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nombre del destino superpuesto en la foto */
.dest-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 32px 28px;
  background: linear-gradient(to top, rgba(8,9,13,0.92) 0%, transparent 100%);
  pointer-events: none;
}

.dest-img-name {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

/* Botón "Reservar carro" — glass premium */
.btn-dest-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.25s ease;
}

.btn-dest-reserve:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive — Tablet */
@media (max-width: 960px) {
  .vs-block { min-height: 70vh; }
  .vs-text { flex: 0 0 46%; }
  .vs-visual { flex: 0 0 54%; }
  .vs-text-inner { padding: 60px 5% 60px 7%; }
  .vs-block--tr .vs-text-inner { padding: 60px 7% 60px 5%; }
  .vs-block-num { font-size: 4rem; }
  .vs-block-title { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
}

/* Responsive — Móvil */
@media (max-width: 768px) {
  /* Apilar verticalmente: imagen arriba, texto abajo */
  .vs-block,
  .vs-block--tr { flex-direction: column !important; min-height: auto; }

  .vs-visual { flex: none; height: 56vw; min-height: 240px; order: 0; }
  .vs-text  { flex: none; order: 1; }

  .vs-text-inner,
  .vs-block--tr .vs-text-inner { padding: 36px 6% 48px; }

  .vs-block-num { font-size: 3.2rem; margin-bottom: -12px; }
  .vs-block-title { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }

  /* En móvil: cover para que la imagen llene el ancho sin barras negras */
  .vs-frame .vs-img { object-fit: cover; }

  .vs-spec-label { min-width: 90px; font-size: 0.58rem; }
  .vs-spec-value { font-size: 0.82rem; }

  .vs-cta { padding: 12px 22px; font-size: 0.62rem; }

  .dest-img-name { font-size: clamp(1.2rem, 5vw, 1.7rem); }
  .dest-img-label { padding: 40px 20px 20px; }
  .btn-dest-reserve { margin-top: 20px; padding: 12px 20px; }
}

@media (max-width: 480px) {
  .vs-visual { height: 68vw; }
  .vs-spec-label { min-width: 70px; }
}
@media (max-width: 768px) {

  ::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  html {
    scrollbar-width: none; /* Firefox */
  }

  body {
    -ms-overflow-style: none; /* Edge antiguo */
  }

}