/* ============================================================
   CruiseInRide — Home nueva (neumorfismo oscuro)
   Requiere las tokens de site.css
   ============================================================ */

/* ---------- animación de aparición ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1),
              transform .8s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- botón dorado neumórfico ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 42px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(145deg, #f2d577, #d4af37 55%, #b8922c);
  color: #241c05;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 8px 8px 18px var(--nm-dark), -6px -6px 14px var(--nm-light),
              inset 0 1px 0 rgba(255, 255, 255, .45);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, filter .3s ease;
}
.btn-gold svg { width: 17px; height: 17px; }
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 10px 12px 24px var(--nm-dark), -6px -6px 14px var(--nm-light),
              inset 0 1px 0 rgba(255, 255, 255, .5), 0 0 26px rgba(212, 175, 55, .35);
}
.btn-gold:active {
  transform: translateY(0) scale(.97);
  box-shadow: var(--nm-pressed-sm), inset 0 1px 0 rgba(255, 255, 255, .2);
}

/* ---------- kicker / títulos de sección ---------- */
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.sec-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 14px;
}
.sec-title em {
  font-style: normal;
  background: linear-gradient(120deg, #f5d77a, #d4af37 60%, #e9c860);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.sec-head { text-align: center; margin-bottom: 56px; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* fondo negro suave elegante ya viene del body; se quita el negro puro anterior */

/* ============================================================
   HERO — fondo Suburban + contenido en dos columnas
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* en pantallas muy bajas, `safe` evita que el centrado recorte el titulo por arriba */
  align-items: safe center;
  overflow: hidden;
  padding: 150px clamp(24px, 6vw, 90px) 90px;
  background: var(--bg);
}

/* overlay oscuro profesional sobre el vídeo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .32);
  z-index: 1;
  pointer-events: none;
}

/* difuminado que conecta hero con la siguiente sección */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

/* vídeo de fondo a pantalla completa */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner { position: relative; z-index: 2; }

/* ---------- coreografía del hero: fase 2 (tras el segundo 35) ---------- */
.hero-inner .h-col > * {
  transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1),
              transform 1.1s cubic-bezier(.22, 1, .36, 1),
              filter 1.1s ease;
}
.hero--phase2 .hero-inner .h-col > * {
  opacity: 0 !important;
  transform: translateY(-26px);
  filter: blur(6px);
  pointer-events: none;
}
/* en la fase 2 todo el contenido de la fase 1 se desvanece (incluidas las
   tiendas): su lugar lo toma el panel "Solicita tu viaje". El video sigue
   corriendo de fondo, atenuado para que el panel sea legible. */
.hero-video { transition: filter 1.4s ease; }
.hero--phase2 .hero-video { filter: brightness(.42) saturate(.85); }

.h-phase2 {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  /* el panel va pegado arriba (justo bajo el header), no centrado: así queda
     lo más alto posible en cualquier pantalla */
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 80px);
  padding: 74px clamp(20px, 3.5vw, 60px) 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero--phase2 .h-phase2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.4s ease .5s, visibility 0s .5s;
}

.h-phase2-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.h-phase2-col--left { align-items: flex-start; }
.h-phase2-col--right {
  align-items: center;
  flex: 0 0 auto;
  min-width: 320px;
}

.h-phase2-col--right .h-stores { text-align: center; }
.h-phase2-col--right .h-store-row { justify-content: center; }

/* ---------- fase 2: panel "Solicita tu viaje" ---------- */
.h-ride {
  display: grid;
  grid-template-columns: minmax(420px, 540px) 1fr;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  align-items: stretch;
}
.h-ride__form {
  position: relative;
  background: rgba(12, 13, 17, .58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212, 175, 55, .32);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 46px);
  /* sombra 3D: luz interior arriba + capas de elevación + halo dorado */
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, .09),
    inset -1px -1px 3px rgba(0, 0, 0, .45),
    0 4px 8px rgba(0, 0, 0, .45),
    0 18px 36px rgba(0, 0, 0, .55),
    0 40px 80px -10px rgba(0, 0, 0, .6),
    0 0 50px rgba(212, 175, 55, .07);
  display: flex;
  flex-direction: column;
}
/* sombra de piso: simula que el cuadro flota en 3D */
.h-ride__form::after {
  content: '';
  position: absolute; left: 12%; right: 12%; bottom: 0;
  height: 26px; transform: translateY(24px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .75) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
/* sombra de piso del mapa (el mapa tiene overflow oculto, va como celda grid) */
.h-ride::after {
  content: '';
  grid-column: 2; grid-row: 1;
  align-self: end; justify-self: stretch;
  height: 26px; margin: 0 5%;
  transform: translateY(26px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .75) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.h-ride__city {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; color: var(--ink-soft); margin: 0 0 18px;
}
.h-ride__city svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 18px; }
.h-ride__city a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; margin-left: 4px; }
.h-ride__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
  margin: 0 0 26px;
}
.h-ride__inputs { display: flex; flex-direction: column; gap: 12px; }
.h-ride__field {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  background: rgba(24, 28, 35, .85);
  border: 1px solid rgba(236, 238, 242, .10);
  border-radius: 16px;
  padding: 19px 20px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
/* desplegable de direcciones (geocoding Mapbox) */
.h-ride__sugg {
  position: absolute;
  left: -1px; right: -1px;
  top: calc(100% + 8px);
  z-index: 40;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: linear-gradient(160deg, #11151f 0%, #0c0f16 100%);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .6), 0 0 30px rgba(212, 175, 55, .06);
  max-height: 264px;
  overflow-y: auto;
}
.h-ride__sugg::-webkit-scrollbar { width: 8px; }
.h-ride__sugg::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, .3); border-radius: 8px; }
.h-ride__sugg li + li { margin-top: 2px; }
.h-ride__sugg li button {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 12px 14px;
  background: transparent;
  border: 0; border-radius: 10px;
  color: var(--ink);
  font-size: 14.5px; font-family: inherit;
  cursor: pointer;
  transition: background .2s ease;
}
.h-ride__sugg li button:hover, .h-ride__sugg li button.is-active { background: rgba(212, 175, 55, .1); }
.h-ride__sugg li button svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 16px; }
.h-ride__suggMain { font-weight: 600; }
.h-ride__suggSub { color: var(--ink-soft); font-size: 13px; }
.h-ride__suggPin { flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.28); color: #d4af37; }
.h-ride__suggPin svg { width: 15px; height: 15px; display: block; }
.h-ride__suggTxt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.h-ride__suggTxt span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.h-ride__suggEmpty { padding: 14px 16px; color: var(--ink-soft); font-size: 14px; text-align: center; }

/* ---- pines del mapa del hero: idénticos a los del mapa de reservar ---- */
.vipRide__marker { cursor: pointer; width: 0; height: 0; overflow: visible; position: relative; }
.vipRide__marker::before { content: ''; position: absolute; left: -14px; top: -4px; width: 28px; height: 9px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,0) 75%); pointer-events: none; animation: vipPinShadowPulse 2.8s cubic-bezier(.4,0,.6,1) infinite; z-index: 0; will-change: transform, opacity; }
.vipRide__marker--pulse { position: relative; }
.vipRide__marker--pulse::before { content: ''; position: absolute; left: 50%; top: 100%; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle, rgba(232,197,71,.6) 0%, rgba(232,197,71,0) 70%); animation: vrPinPulse 1.6s cubic-bezier(.33,1,.68,1) 2; pointer-events: none; }
.vipRide__markerInner { position: absolute; left: -20px; top: -38px; display: block; width: 40px; height: 38px; transform-origin: center bottom; animation: vipMarkerPop 700ms cubic-bezier(.175,.885,.32,1.275) forwards, vipMarkerFloat 3.6s cubic-bezier(.4,0,.6,1) 700ms infinite; backface-visibility: hidden; -webkit-backface-visibility: hidden; z-index: 1; will-change: transform; transform: translateZ(0); }
.vipRide__markerInner svg { display: block; width: 40px; height: 38px; filter: drop-shadow(0 2px 2px rgba(0,0,0,.5)) drop-shadow(0 6px 10px rgba(0,0,0,.4)) drop-shadow(0 12px 20px rgba(0,0,0,.25)) drop-shadow(0 0 4px rgba(232,197,71,.3)); transform: translateZ(0); }
.vipRide__markerInner::after { content: ''; position: absolute; top: 2px; left: 50%; transform: translateX(-50%) translateZ(0); width: 18px; height: 8px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,255,255,.35) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%); pointer-events: none; z-index: 2; mix-blend-mode: screen; }
.vipRide__youLabel { position: absolute; left: 50%; top: -64px; transform: translateX(-50%); background: linear-gradient(135deg,#F5DC7A,#E8C547); color: #0a0e1a; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 10px; white-space: nowrap; box-shadow: 0 4px 14px rgba(232,197,71,.45); pointer-events: none; animation: youLabelIn 480ms cubic-bezier(.34,1.56,.64,1) 600ms both, youLabelPulse 2.8s ease-in-out 1400ms infinite; }
@keyframes vipMarkerPop { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.1); opacity: 1; } 70% { transform: scale(.95); } 100% { transform: scale(1); } }
@keyframes vipMarkerFloat { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-3px,0); } }
@keyframes vrPinPulse { 0% { transform: translate(-50%,-50%) scale(.6); opacity: .9; } 100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; } }
@keyframes vipPinShadowPulse { 0%, 100% { transform: scaleX(1) translateZ(0); opacity: .55; } 50% { transform: scaleX(.78) translateZ(0); opacity: .8; } }
@keyframes youLabelIn { 0% { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(.6); } 60% { transform: translateX(-50%) translateY(2px) scale(1.08); } 100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); } }
@keyframes youLabelPulse { 0%, 100% { box-shadow: 0 4px 14px rgba(232,197,71,.45); } 50% { box-shadow: 0 4px 22px rgba(232,197,71,.7); } }
.h-ride__field:focus-within {
  border-color: rgba(212, 175, 55, .65);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}
.h-ride__field input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--ink); font-size: 17px; font-family: inherit;
}
.h-ride__field input::placeholder { color: var(--ink-faint); }
.h-ride__dot { position: relative; width: 15px; height: 15px; box-sizing: border-box; border-radius: 50%; border: 3px solid var(--gold); background: transparent; flex: 0 0 15px; }
.h-ride__dot--sq::after { content: ''; position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translate(-50%, -50%); }
.h-ride__field + .h-ride__field::before { content: ''; position: absolute; left: 26.5px; top: calc(-50% - 4.5px); width: 2px; height: calc(50% + 23.5px); background: linear-gradient(to bottom, rgba(212,175,55,.55), var(--gold)); pointer-events: none; }
.h-ride__dot { z-index: 1; }
.h-ride__plane { width: 20px; height: 20px; color: var(--ink-soft); transform: rotate(45deg); flex: 0 0 20px; }
.h-ride__when { display: flex; gap: 12px; margin-top: 18px; }
.h-ride__pill {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: rgba(24, 28, 35, .85);
  border: 1px solid rgba(236, 238, 242, .10);
  border-radius: 14px; padding: 15px 17px;
  font-size: 15.5px; color: var(--ink);
}
.h-ride__pill svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 18px; }
.h-ride__chev { margin-left: auto; width: 15px !important; height: 15px !important; color: var(--ink-soft) !important; }
.h-ride__sugs-title {
  font-size: 12px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-faint); margin: 24px 0 8px;
}
.h-ride__sugs { display: flex; flex-direction: column; }
.h-ride__sug {
  display: flex; align-items: center; gap: 15px;
  padding: 14px 8px; border-radius: 14px; text-decoration: none;
  border-bottom: 1px solid rgba(236, 238, 242, .08);
  transition: background .2s ease;
}
.h-ride__sug:last-child { border-bottom: 0; }
.h-ride__sug:hover { background: rgba(212, 175, 55, .07); }
.h-ride__sug-ic {
  width: 34px; height: 34px; flex: 0 0 34px;
  display: grid; place-items: center;
  background: transparent; border: 0; color: var(--gold);
}
.h-ride__sug-ic svg { width: 26px; height: 26px; }
.h-ride__sug-tx { display: flex; flex-direction: column; line-height: 1.4; }
.h-ride__sug-tx b { color: var(--ink); font-size: 16.5px; font-weight: 600; }
.h-ride__sug-tx small { color: var(--ink-soft); font-size: 13.5px; }
.h-ride__cta { margin-top: 26px; justify-content: center; text-align: center; padding-top: 19px !important; padding-bottom: 19px !important; font-size: 17px; letter-spacing: .1em; border-radius: 16px; }
.h-ride__map {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .32);
  /* misma sombra 3D que el cuadro del formulario */
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, .06),
    0 4px 8px rgba(0, 0, 0, .45),
    0 18px 36px rgba(0, 0, 0, .55),
    0 40px 80px -10px rgba(0, 0, 0, .6),
    0 0 50px rgba(212, 175, 55, .07);
  background: #0b0d10;
}
/* esqueleto dorado mientras cargan las teselas del mapa */
.h-ride__mapSk {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg, #0A1128 0%, #0F1A36 40%, #0A1128 80%);
  transition: opacity .6s ease;
}
.h-ride__mapSk::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232, 197, 71, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 197, 71, .05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.h-ride__mapSk::after {
  content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 197, 71, .10) 50%, transparent);
  animation: vrMapShim 2.2s linear infinite;
}
.h-ride__mapSk.is-hidden { opacity: 0; }
@keyframes vrMapShim { 0% { left: -100%; } 100% { left: 100%; } }
.h-ride__map .mapboxgl-ctrl-attrib,
.h-ride__map .mapboxgl-ctrl-logo { display: none !important; }

/* pines dorados del mapa (idénticos a los de reservas) */
.h-ride__pin { cursor: pointer; width: 0; height: 0; overflow: visible; position: relative; }
.h-ride__pinInner {
  position: absolute; left: -20px; top: -38px;
  display: block; width: 40px; height: 38px;
  transform-origin: center bottom;
  animation: vipMarkerPop 700ms cubic-bezier(.175, .885, .32, 1.275) forwards,
             vipMarkerFloat 3.6s cubic-bezier(.4, 0, .6, 1) 700ms infinite;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  z-index: 1; will-change: transform;
}
.h-ride__pin--pulse { position: relative; }
.h-ride__pin--pulse::before {
  content: ''; position: absolute; left: 50%; top: 100%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 71, .6) 0%, rgba(232, 197, 71, 0) 70%);
  animation: vrPinPulse 1.6s cubic-bezier(.33, 1, .68, 1) infinite;
  pointer-events: none;
}
.h-ride__you {
  position: absolute; left: 50%; top: -64px; transform: translateX(-50%);
  background: linear-gradient(135deg, #F5DC7A, #E8C547);
  color: #0a0e1a; font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232, 197, 71, .45);
  pointer-events: none;
  animation: youLabelIn 480ms cubic-bezier(.34, 1.56, .64, 1) 600ms both,
             youLabelPulse 2.8s ease-in-out 1400ms infinite;
}
@keyframes vipMarkerPop { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.1); opacity: 1; } 70% { transform: scale(.95); } 100% { transform: scale(1); } }
@keyframes vipMarkerFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -3px, 0); } }
@keyframes vrPinPulse { 0% { transform: translate(-50%, -50%) scale(.6); opacity: .9; } 100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; } }
@keyframes youLabelIn { 0% { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(.6); } 60% { transform: translateX(-50%) translateY(2px) scale(1.08); } 100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); } }
@keyframes youLabelPulse { 0%, 100% { box-shadow: 0 4px 14px rgba(232, 197, 71, .45); } 50% { box-shadow: 0 4px 22px rgba(232, 197, 71, .7); } }
@media (max-width: 980px) {
  .h-ride { grid-template-columns: 1fr; }
  .h-ride::after { content: none; }
  .h-ride__map { min-height: 340px; grid-column: auto; grid-row: auto; }
  /* fase 2 sin scroll interno: el panel entra al flujo del documento, centrado,
     y es la página la que crece (el hero deja de recortarlo). La fase 1 no se
     corta de golpe: sus textos se desvanecen (transiciones de base) y luego el
     bloque se pliega suave mientras el panel aparece fundiéndose */
  .hero { flex-direction: column; }
  .h-phase2 { flex-direction: column; align-items: stretch; padding: 0; }
  .h-phase2-col--right { min-width: 0; align-self: center; }
  .hero--phase2 .h-phase2 { position: static; width: 100%; margin-top: -54px; }
  .hero-inner {
    overflow: hidden;
    max-height: 1600px;
    /* el hueco de la fase 1 se libera de un solo golpe cuando sus textos ya
       se desvanecieron: así el panel NO sube deslizándose — solo hace fade
       en su posición final */
    transition: max-height .01s linear .75s;
  }
  .hero--phase2 .hero-inner { max-height: 0; }
  .hero--phase2 .h-phase2 { transition: opacity 1.6s ease .85s, visibility 0s .85s; }
}
@media (max-width: 640px) {
  .h-ride { grid-template-columns: 1fr; }
  /* en teléfonos el panel va solo, sin el mapa decorativo */
  .h-ride__map { display: none; }
  .h-ride__title { font-size: 28px; }
}

.h-badges2 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* animación escalonada por columna */
.h-phase2-col > * {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
}
.hero--phase2 .h-phase2-col > * {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 1.3s cubic-bezier(.22, 1, .36, 1),
              transform 1.3s cubic-bezier(.22, 1, .36, 1),
              filter 1.3s ease;
}
.hero--phase2 .h-phase2-col--left > *:nth-child(1) { transition-delay: .7s; }
.hero--phase2 .h-phase2-col--left > *:nth-child(2) { transition-delay: 1.05s; }
.hero--phase2 .h-phase2-col--left > *:nth-child(3) { transition-delay: 1.4s; }
.hero--phase2 .h-phase2-col--right > *:nth-child(1) { transition-delay: 1.1s; }

.h-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
/* CTAs del hero cuadrados con esquinas redondas (pc y móvil) */
.h-buttons .btn-gold,
.h-buttons .btn-ghost { border-radius: 16px; }
.h-col--right .h-buttons { justify-content: flex-end; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 42px;
  border-radius: 999px;
  background: rgba(10, 11, 14, .45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1.5px rgba(212, 175, 55, .55);
  color: var(--gold-light);
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}
.btn-ghost:hover {
  background: rgba(212, 175, 55, .14);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px rgba(212, 175, 55, .8), 0 0 22px rgba(212, 175, 55, .25);
}
.btn-ghost:active { transform: scale(.97); }

.h-sub2 {
  color: rgba(236, 238, 242, .88);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 80px);
}

.h-col--left { flex: 1 1 auto; min-width: 0; }

.h-col--right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 34px;
}

/* badges glass en horizontal */
.h-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(10, 11, 14, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .30);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.h-badge svg { width: 16px; height: 16px; color: var(--gold-light); }

.h-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .58em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .85);
}

.h-title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(64px, 10.5vw, 150px);
  line-height: 1;
  letter-spacing: .04em;
  margin: 0;
  background: linear-gradient(160deg, #f9e7a8 8%, #eccb67 32%, #c9a130 58%, #f0d789 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .65));
}

.h-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 20px;
}
.h-divider span {
  width: min(150px, 22vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, .8), transparent);
}
.h-divider i {
  width: 9px; height: 9px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #f5d77a, #b8922c);
  box-shadow: 0 0 12px rgba(212, 175, 55, .7);
}

.h-tagline {
  font-family: "Cinzel", serif;
  font-size: clamp(14px, 1.9vw, 19px);
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}

.h-sub {
  color: rgba(236, 238, 242, .85);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 520px;
  margin: 26px 0 32px;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .7);
}

.h-cta { margin: 0; }

/* botones tipo tienda en el hero */
.h-stores { text-align: left; }
/* las tiendas van ancladas arriba del hero, justo bajo el header y por encima
   de "Bienvenido a", alineadas con el resto del contenido */
.h-stores--top {
  position: absolute;
  z-index: 2;
  top: 96px;
  left: clamp(24px, 6vw, 90px);
  right: clamp(24px, 6vw, 90px);
  max-width: 1340px;
  margin: 0 auto;
  transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1),
              transform 1.1s cubic-bezier(.22, 1, .36, 1),
              filter 1.1s ease;
}
/* en la fase 2 se desvanecen igual que el resto del contenido de la fase 1 */
.hero--phase2 .h-stores--top {
  opacity: 0;
  transform: translateY(-26px);
  filter: blur(6px);
  pointer-events: none;
}
.h-phase2 .h-stores {
  align-self: center;
  text-align: center;
}
.h-phase2 .h-store-row { justify-content: center; }
.h-stores > p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, .75);
  margin: 0 0 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
}
.h-store-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.h-store {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 17px 26px;
  border-radius: 20px;
  background: rgba(10, 11, 14, .48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .32),
              inset 1px 1px 3px rgba(255, 255, 255, .07),
              6px 8px 18px rgba(0, 0, 0, .4);
  color: var(--ink);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, background .3s ease;
  cursor: pointer;
}
.h-store:hover {
  transform: translateY(-3px);
  background: rgba(212, 175, 55, .10);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .6),
              0 0 24px rgba(212, 175, 55, .22),
              8px 12px 22px rgba(0, 0, 0, .45);
}
.h-store > svg { width: 28px; height: 28px; }
/* el icono se ancla al borde izquierdo del botón; sale del flujo para que el
   texto se quede exactamente donde estaba (el hueco lo reserva el padding-left
   del bloque de texto, más abajo) */
.h-store .hs-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: block;
  margin: 0;
}
.h-store .hs-icon[src*="google-play"] {
  width: 39px;
  height: 39px;
  border-radius: 0;
  left: 11px;
}
a.h-store { text-decoration: none; }
.h-store > span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; padding-left: 43px; }
/* Google Play: el icono es más ancho, así que el texto necesita algo más de
   hueco para no moverse de donde estaba */
.h-store--play > span { padding-left: 48px; }
.h-store small { font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; }
.h-store b { font-size: 18px; font-weight: 700; }

@media (max-width: 900px) {
  .hero { padding-top: 120px; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 44px; }
  .h-col--right { align-items: flex-start; }
  .h-badges { align-items: flex-start; }
  .h-stores--top { top: 82px; }
}

/* teléfonos: el video sigue de fondo tras el contenido, pero con menos zoom:
   en vez de estirarse a toda la pantalla (recorte enorme en vertical) ocupa
   ~3/4 de alto, así el encuadre muestra bastante más y se funde en negro por
   abajo con una máscara — el contenido del hero no se mueve */
@media (max-width: 640px) {
  /* el video arranca un poco más abajo, con degradado negro arriba y abajo */
  .hero-video {
    inset: 56px 0 auto 0;
    height: min(74svh, 124vw);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 58%, transparent);
            mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 58%, transparent);
  }
  /* teléfono: fuera la columna derecha entera (badges + Ride Now / Reserve
     Today): su sitio lo ocupan los botones de descarga de la app */
  .h-badges { display: none; }
  .h-col--right { display: none; }
  /* las tiendas bajan del ancla superior al hueco que dejaron los CTA */
  .h-stores--top {
    position: static;
    order: 2;
    width: 100%;
    /* el texto sube, pero los botones se quedan donde estaban: lo que sube el
       hero se compensa aquí */
    margin: 94px 0 0;
    overflow: hidden;
    max-height: 220px;
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1),
                filter 1.1s ease,
                max-height .01s linear .75s;
  }
  /* en la fase 2 se pliegan a la vez que el resto del contenido de la fase 1 */
  .hero--phase2 .h-stores--top { max-height: 0; margin-top: 0; transform: none; }
  /* los dos botones se reparten el ancho, como hacían los CTA */
  .h-store-row { justify-content: center; gap: 10px; flex-wrap: nowrap; }
  .h-store {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 14px 10px;
    gap: 8px;
    border-radius: 16px;
  }
  .h-store .hs-icon { width: 29px; height: 29px; left: 10px; }
  .h-store .hs-icon[src*="google-play"] { width: 36px; height: 36px; left: 8px; }
  .h-store small { font-size: 9.5px; letter-spacing: .03em; }
  .h-store b { font-size: 14.5px; }
  /* mismo truco que en el ordenador: el icono va pegado a la izquierda y el
     hueco que deja mantiene el texto en su sitio de siempre */
  .h-store > span { min-width: 0; padding-left: 37px; }
  .h-store--play > span { padding-left: 40px; }
  .h-store b, .h-store small { white-space: nowrap; }
  /* el contenido de la fase 1 arranca justo debajo de los botones de las
     tiendas, con aire suficiente para no pegarse al menú; el hero deja de
     forzar la altura de pantalla para no dejar un hueco negro debajo */
  .hero { padding-top: 218px; }
  /* en la fase 2 el panel sube: el hueco se libera justo cuando la fase 1
     se pliega (mismo retardo), así no hay doble salto */
  .hero { transition: padding-top .01s linear .75s; }
  .hero--phase2 { padding-top: 142px; }
  /* todo el contenido del hero centrado */
  .hero-inner { align-items: center; }
  .h-col--left { text-align: center; }
  .h-divider { justify-content: center; }
  /* al centrarse, el diamante lleva línea a ambos lados */
  .h-divider::after {
    content: '';
    width: min(150px, 22vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .8));
  }
  .h-sub { margin-left: auto; margin-right: auto; }
  /* más aire entre secciones */
  .section { padding: 124px 24px; }
}

/* ============================================================
   SERVICIOS — "Luxury Experience"
   Tarjeta = foto arriba, titulo, texto y boton (rejilla editorial).
   ============================================================ */
.services {
  position: relative;
  isolation: isolate;
  /* el negro lo pone ya el body (--bg: #000): sin fondo propio no hay bandas */
}

/* cabecera alineada a la izquierda, sin adornos centrados */
.services .sec-head {
  text-align: left;
  margin-bottom: 44px;
}
.services .sec-title { margin: 0; }

.sv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: stretch;
}
@media (max-width: 1024px) { .sv-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 560px) { .sv-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- columna: foto + texto sueltos sobre el fondo, sin caja ---------- */
.sv-card {
  display: flex;
  flex-direction: column;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.sv-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
}

.sv-media { position: relative; will-change: clip-path; }

/* línea que rodea la foto siguiendo sus esquinas redondas; la placa dorada
   queda por encima, así que la línea muere en la muesca (el botón no forma
   parte del marco de la foto) */
.sv-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 40px;
  pointer-events: none;
}

/* muesca dorada estilo pestaña en la esquina inferior derecha (referencia
   "Workspace" de zoox): la pestaña ES el botón — sin caja interior — y las
   dos curvas cóncavas que la funden con la foto se hacen con degradado
   radial del mismo dorado */
.sv-plate {
  position: absolute;
  right: 0; bottom: 0;
  z-index: 3;
  width: 52%;
  height: 19%;
  background: #d4af37;
  border-radius: 28px 0 40px 0;
}
.sv-plate::before,
.sv-plate::after {
  content: '';
  position: absolute;
  width: 26px; height: 26px;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0) 26px, #d4af37 26.5px);
}
.sv-plate::before { right: 0; top: -26px; }
.sv-plate::after { left: -26px; bottom: 0; }
/* el enlace llena la pestaña: texto directo sobre el dorado */
.sv-plate .sv-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  box-shadow: none;
  text-shadow: none;
  border-radius: inherit;
  color: #241c05;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .05em;
}
.sv-plate .sv-btn::before,
.sv-plate .sv-btn::after { display: none; }
.sv-plate:hover { filter: brightness(1.07); }

/* vídeo en bucle: dos capas identicas que se funden en el punto de corte,
   de modo que el reinicio no se nota (home.js hace el relevo) */
.sv-loop {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  overflow: hidden;
  background: #0a0a0a;
}
.sv-loop .sv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  transition: opacity 1.1s linear;
}
.sv-loop .sv-video.is-front { opacity: 1; }

.sv-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 2px 0;
}

.sv-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 10px;
}

.sv-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
}

/* boton dorado con texto blanco */
.sv-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 10px;
  /* el dorado de marca (el mismo de .btn-gold), no un tono apagado */
  background: linear-gradient(145deg, #f2d577 0%, #d4af37 55%, #b8922c 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(90, 62, 0, .55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45),
              0 6px 16px rgba(212, 175, 55, .22);
  /* las ondas salen por fuera, asi que nada de recorte */
  position: relative;
  overflow: visible;
}

/* ondas que se expanden hacia fuera del botón, con su misma forma */
.sv-btn::before,
.sv-btn::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1.5px solid rgba(245, 215, 122, .8);
  box-shadow: 0 0 18px rgba(212, 175, 55, .35);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}
/* el texto queda por encima de cualquier onda */
.sv-btn > span { position: relative; z-index: 1; }

.sv-btn:hover::before,
.sv-btn:focus-visible::before,
.sv-btn:hover::after,
.sv-btn:focus-visible::after {
  /* lenta y con salida suave: la onda se abre y se va apagando */
  animation: sv-ripple 3.2s cubic-bezier(.16, .72, .32, 1) infinite;
}
/* la segunda onda sale a mitad de ciclo: siempre hay una en camino */
.sv-btn:hover::after,
.sv-btn:focus-visible::after { animation-delay: 1.6s; }

@keyframes sv-ripple {
  0%   { transform: scale(1);     opacity: 0; }
  12%  { opacity: .7; }
  60%  { opacity: .28; }
  100% { transform: scale(1.42);  opacity: 0; }
}

.sv-btn:active { transform: scale(.98); }

@media (prefers-reduced-motion: reduce) {
  .sv-btn:hover::before, .sv-btn:hover::after,
  .sv-btn:focus-visible::before, .sv-btn:focus-visible::after { animation: none; }
}

/* ---------- entrada escalonada al hacer scroll ---------- */
.sv-card.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.97);
  filter: blur(6px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1),
    filter .9s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.sv-card.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 900px) {
  .sv-body { padding: 18px 0 0; }
  .sv-card h3 { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-card.reveal,
  .sv-card.reveal.visible { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ============================================================
   SHOWREEL — banda de vídeo entre servicios y reseñas
   Recortado en formato panorámico y fundido a negro por los
   cuatro lados para que no se vea como una caja pegada.
   ============================================================ */
.showreel {
  position: relative;
  width: 100%;
  aspect-ratio: 32 / 9;   /* franja panorámica baja, de lado a lado */
  max-height: 420px;
  overflow: hidden;
  background: #000;
}
.showreel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* recorta el vídeo al marco panorámico */
  object-position: center;
}
/* solo fundido arriba y abajo: a los lados la imagen llega hasta el borde */
.showreel-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
    #000 0%, rgba(0, 0, 0, 0) 16%,
    rgba(0, 0, 0, 0) 84%, #000 100%);
}

@media (max-width: 900px) {
  .showreel { aspect-ratio: 2 / 1; max-height: 260px; }
}

/* ============================================================
   RESEÑAS — Editorial Spotlight Stage
   ============================================================ */
.reviews {
  max-width: 1200px;
  overflow: visible;
  position: relative;
  /* fondo negro a todo el ancho: la seccion esta centrada a 1200px, asi que el
     negro se extiende con la sombra y se recorta en vertical para no invadir
     las secciones vecinas */
  background: #000;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}
.reviews .sec-head { margin-bottom: 64px; }

/* el halo dorado del fondo sobra en un planteamiento minimalista */
.reviews::before { display: none; }

/* distintivo sin pastilla: solo texto */
.rv-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rv-badge svg { width: 13px; height: 13px; }

/* escenario principal: destacada a todo el ancho y las otras tres en una fila
   alineada. Sin giros 3D: las tarjetas quedan rectas y a la misma altura. */
.rv-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.rv-stage__featured { grid-column: 1 / -1; }
/* los hijos del mazo pasan a ser celdas de la rejilla, sin tocar el HTML */
.rv-stage__deck { display: contents; }

/* tarjeta base */
/* minimalista: superficie plana gris oscuro, filete de 1px y nada mas.
   Sin degradados, sin textura, sin bisel ni sombras. */
.rv-card {
  position: relative;
  background: #1a1a1c;
  border-radius: 16px;
  padding: 34px;
  height: 100%;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* destacada: identidad a la izquierda y la cita a la derecha, en dos columnas,
   para que la tarjeta ancha no quede vacia por el centro */
.rv-card--featured {
  display: grid;
  grid-template-columns: minmax(210px, 260px) 1fr;
  gap: 12px 40px;
  align-items: start;
  padding: 34px 38px;
}
.rv-card--featured .rv-top { grid-column: 1; margin-bottom: 14px; }
.rv-card--featured .rv-stars { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.rv-card--featured .rv-text { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
.rv-card--featured .rv-tag { grid-column: 2; grid-row: 3; margin-top: 16px; }

/* halo dorado y comilla decorativa: fuera en el planteamiento minimalista */
.rv-glow { display: none; }
.rv-quote-mark { display: none; }

.rv-top {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.rv-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: none;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.rv-card--featured .rv-avatar { width: 60px; height: 60px; font-size: 17px; }
.rv-meta { display: flex; flex-direction: column; gap: 3px; }
.rv-name { font-size: 15px; font-weight: 700; color: #fff; }
.rv-card--featured .rv-name { font-size: 18px; }
.rv-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, .58);
}
/* iconos en dorado de marca; las letras van en blanco */
.rv-verified svg { width: 11px; height: 11px; color: var(--gold); }

.rv-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 16px; position: relative; z-index: 1; }
.rv-stars .st { width: 15px; height: 15px; fill: var(--gold); }
.rv-stars .st-off { fill: rgba(255, 255, 255, .12); }
.rv-stars b { margin-left: 8px; font-size: 13px; color: #fff; font-weight: 700; }
.st-part { position: relative; display: inline-flex; width: 15px; height: 15px; }
.st-part .st-bg { fill: rgba(255, 255, 255, .12); }
.st-fill { position: absolute; inset: 0; overflow: hidden; display: inline-flex; }
.st-fill svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }

.rv-text {
  color: rgba(255, 255, 255, .86);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.rv-card--featured .rv-text {
  font-size: 18px;
  line-height: 1.7;
  -webkit-line-clamp: 4;
}
/* mismo recorte en las tres tarjetas: alturas y ritmo iguales en la fila */
.rv-card--normal .rv-text { -webkit-line-clamp: 4; margin-bottom: 18px; }

.rv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  /* etiqueta sin pastilla: solo texto, como el distintivo de la cabecera */
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .62);
  letter-spacing: .14em;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.rv-tag svg { width: 11px; height: 11px; color: var(--gold); }
/* la etiqueta se ancla abajo para que quede a la misma altura en las tres */
.rv-card--normal .rv-tag { margin-top: auto; }

/* estadisticas: una fila de celdas iguales separadas por filetes, en vez de
   monedas circulares con anillos girando */
.rv-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  padding-top: 46px;
  border-radius: 0;
  /* sin tarjeta: solo un filete superior que separa del bloque de resenas */
  background: none;
  box-shadow: none;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.rs-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  text-align: center;
}
.rs-item + .rs-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}
/* el anillo giratorio ya no pinta nada en este diseno */
.rs-ring { display: none; }

.rs-num-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}
.rs-num {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(120deg, #f5d77a, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rs-suffix {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-left: 2px;
}
.rs-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 10px;
}

/* revelado: subida limpia y escalonada, sin giros */
.rv-stage.reveal .rv-card,
.rv-stats.reveal .rs-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
              transform .7s cubic-bezier(.22, 1, .36, 1);
}
.rv-stage.reveal.visible .rv-card,
.rv-stats.reveal.visible .rs-item {
  opacity: 1;
  transform: translateY(0);
}
.rv-stage.reveal.visible .rv-stage__featured .rv-card { transition-delay: 0ms; }
.rv-stage.reveal.visible .rv-stage__deck .rv-card:nth-child(1) { transition-delay: 120ms; }
.rv-stage.reveal.visible .rv-stage__deck .rv-card:nth-child(2) { transition-delay: 220ms; }
.rv-stage.reveal.visible .rv-stage__deck .rv-card:nth-child(3) { transition-delay: 320ms; }
.rv-stats.reveal.visible .rs-item:nth-child(1) { transition-delay: 0ms; }
.rv-stats.reveal.visible .rs-item:nth-child(2) { transition-delay: 110ms; }
.rv-stats.reveal.visible .rs-item:nth-child(3) { transition-delay: 220ms; }

@media (max-width: 960px) {
  .rv-stage { grid-template-columns: repeat(2, 1fr); }
  .rv-stage__featured { grid-column: 1 / -1; }
  /* la destacada vuelve a una sola columna: en dos quedaria demasiado estrecha */
  .rv-card--featured { grid-template-columns: 1fr; gap: 0; padding: 28px; }
  .rv-card--featured .rv-top,
  .rv-card--featured .rv-stars,
  .rv-card--featured .rv-text,
  .rv-card--featured .rv-tag { grid-column: 1; grid-row: auto; }
  .rv-card--featured .rv-stars { margin-bottom: 16px; }
  .rv-card--featured .rv-tag { margin-top: 18px; }
}
@media (max-width: 640px) {
  .rv-stage { grid-template-columns: 1fr; }
  .rv-card { padding: 22px; }
  .rv-card--featured .rv-text { -webkit-line-clamp: 4; font-size: 15.5px; }
  .rv-quote-mark { font-size: 80px; }
  /* las 3 cifras se quedan en horizontal, como en escritorio */
  .rv-stats { margin-top: 56px; }
  .rs-item { padding: 8px 10px; }
  .rs-num { font-size: 30px; }
}

/* ============================================================
   CONTACTO (solo en contact.html)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 26px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.c-info { padding: 36px 30px; display: flex; flex-direction: column; justify-content: space-around; gap: 26px; }

.c-row { display: flex; gap: 17px; align-items: flex-start; }
.c-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 15px;
  background: var(--bg);
  box-shadow: var(--nm-pressed-sm), inset 0 0 0 1px rgba(212, 175, 55, .16);
  color: var(--gold-light);
}
.c-icon svg { width: 20px; height: 20px; }

.c-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.c-value {
  display: block;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
}
a.c-value:hover { color: var(--gold-light); }
.c-note { display: block; font-size: 12px; color: var(--ink-faint); margin-top: 3px; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding: 8px 17px;
  border-radius: 999px;
  background: var(--surface-hi);
  box-shadow: var(--nm-raised-sm);
  color: #5fce7a;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease;
}
.wa-btn svg { width: 15px; height: 15px; }
.wa-btn:hover { box-shadow: var(--nm-pressed-sm); transform: translateY(-1px); }

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  padding: 8px 15px;
  border: none;
  border-radius: 999px;
  background: var(--surface-hi);
  box-shadow: var(--nm-raised-sm);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: box-shadow .25s ease;
}
.copy-btn svg { width: 13px; height: 13px; }
.copy-btn:hover { box-shadow: var(--nm-pressed-sm); }

.c-form { padding: 36px 32px; display: flex; flex-direction: column; gap: 19px; }
.f-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
@media (max-width: 560px) { .f-duo { grid-template-columns: 1fr; } }

.c-form label { display: flex; flex-direction: column; gap: 8px; }
.c-form label > span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.c-form input, .c-form textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: var(--radius-sm);
  background: var(--bg);
  box-shadow: var(--nm-pressed);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 15px 18px;
  transition: box-shadow .3s ease;
  resize: vertical;
}
.c-form input::placeholder, .c-form textarea::placeholder { color: var(--ink-faint); }
.c-form input:focus, .c-form textarea:focus {
  box-shadow: var(--nm-pressed), inset 0 0 0 1.5px rgba(212, 175, 55, .45);
}

.c-form .btn-gold { width: 100%; margin-top: 6px; }

/* ============================================================
   404
   ============================================================ */
.nf-main {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
}
.nf-card {
  max-width: 520px;
  text-align: center;
  padding: 60px 44px;
}
.nf-code {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(160deg, #f9e7a8, #c9a130);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.nf-card .sec-sub { margin-bottom: 30px; }

/* ============================================================
   Comparador de viaje (seccion "Compara tus opciones de viaje")
   Tarjeta de datos del viaje + mapa con la ruta y las opciones.
   ============================================================ */
.cmp-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.cmp-col { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

/* tarjeta minimalista: sin relieve, solo un filo de 1px */
.cmp-card {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #1a1a1c;                      /* el mismo gris de .rv-card */
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  box-shadow: none;
}
.cmp-card__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cmp-card__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
}

/* segmentado ida / ida y vuelta: la pastilla se desliza entre las dos opciones */
.cmp-seg {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .10);
  align-self: flex-start;
}
.cmp-seg__pill {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}
.cmp-seg.is-round .cmp-seg__pill { transform: translateX(100%); }
.cmp-seg__btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink-faint);
  transition: color .28s ease;
}
.cmp-seg__btn.is-on { color: #fff; }

/* rail con el punto de origen, la linea y el cuadrado de destino */
.cmp-route { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; }
.cmp-rail {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 20px 0;
}
.cmp-rail__from, .cmp-rail__to {
  position: relative;
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
}
/* solo el destino lleva punto interior; la recogida es un aro hueco */
.cmp-rail__to::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
}
.cmp-rail__from { color: var(--gold); }
.cmp-rail__to { color: var(--gold); }

.cmp-rail__line {
  width: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.cmp-fields { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.cmp-field { position: relative; }
.cmp-field input {
  width: 100%;
  border: 0;
  border-radius: 13px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .10);
  color: var(--ink);
  font: inherit;
  font-size: 14.5px;
  padding: 14px 46px 14px 15px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.cmp-field input::placeholder { color: var(--ink-faint); }
.cmp-field input:focus {
  border-color: rgba(212, 175, 55, .6);
  background: rgba(212, 175, 55, .04);
}
.cmp-geo {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: none;
  color: var(--gold-light);
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.cmp-geo svg { width: 16px; height: 16px; }
.cmp-geo:hover { background: rgba(212, 175, 55, .14); }
.cmp-geo:active { transform: translateY(-50%) scale(.92); }

/* sugerencias del geocoder */
.cmp-sugg {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 6px);
  z-index: 30;
  margin: 0; padding: 6px;
  list-style: none;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .6);
  max-height: 236px;
  overflow-y: auto;
}
.cmp-sugg li + li { margin-top: 2px; }
.cmp-sugg button {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 13.5px;
  line-height: 1.35;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.cmp-sugg button:hover, .cmp-sugg button:focus-visible {
  background: var(--surface-hi);
  color: var(--gold-light);
  outline: none;
}

.cmp-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.cmp-meta__f { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.cmp-meta__f > span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-faint);
}
.cmp-meta__f input, .cmp-meta__f select {
  width: 100%;
  border: 0;
  border-radius: 13px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .10);
  color: var(--ink);
  font: inherit;
  font-size: 13.5px;
  padding: 12px 11px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.cmp-meta__f input:focus, .cmp-meta__f select:focus {
  border-color: rgba(212, 175, 55, .6);
  background: rgba(212, 175, 55, .04);
}
.cmp-meta__f select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
                    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
/* el campo de fecha nativo necesita sitio para dd/mm/aaaa + el icono */
.cmp-meta__f input[type="date"] { font-size: 12.5px; padding-left: 10px; padding-right: 6px; }
/* la duracion solo aplica a ida y vuelta */
.cmp-meta__f.is-off { opacity: .4; pointer-events: none; }
.cmp-meta__f input::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

.cmp-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  font-size: 12.5px;
  letter-spacing: .1em;
  box-shadow: none;
  border-radius: 16px;
}
.cmp-submit:hover { box-shadow: none; filter: brightness(1.05); }
.cmp-submit:active { box-shadow: none; }
.cmp-submit[disabled] { opacity: .55; pointer-events: none; }
.cmp-msg { margin: 0; font-size: 13px; color: var(--ink-soft); min-height: 1em; }
.cmp-msg.is-err { color: #ff9d8a; }

/* resultados */
.cmp-results { display: flex; flex-direction: column; gap: 12px; }
.cmp-results__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cmp-results__head h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cmp-results__trip { font-size: 13px; color: var(--gold-light); font-weight: 600; }
.cmp-opt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 16px;
  align-items: center;
  padding: 15px 18px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .09);
  transition: border-color .25s ease, background .25s ease;
}
.cmp-opt:hover { border-color: rgba(212, 175, 55, .38); background: rgba(212, 175, 55, .03); }
.cmp-opt__name { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.cmp-opt__meta { grid-column: 1; font-size: 12.5px; color: var(--ink-soft); }
.cmp-opt__price {
  grid-row: 1 / 3;
  grid-column: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.cmp-opt__price b {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cmp-opt__price a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, .45);
  padding-bottom: 1px;
}
.cmp-opt__price a:hover { color: #fff; border-bottom-color: #fff; }
.cmp-note { margin: 2px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--ink-faint); }

/* mapa */
.cmp-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  min-width: 0;
  box-shadow: none;
}
/* el mapa es decorativo: no recibe puntero, asi no sale ni el cursor de arrastre */
.cmp-map-frame { width: 100%; height: 560px; background: #0A1128; pointer-events: none; }
.cmp-map-frame .mapboxgl-canvas { cursor: default; }
.cmp-map-frame .mapboxgl-ctrl-attrib,
.cmp-map-frame .mapboxgl-ctrl-logo { display: none !important; }
.cmp-map-badge {
  position: absolute;
  left: 16px; top: 16px;
  display: flex;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(8, 10, 13, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .45);
}
.cmp-map-badge div { display: flex; flex-direction: column; gap: 2px; }
.cmp-map-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cmp-map-badge strong { font-size: 15px; color: var(--ink); }

/* ---------- pines del mapa: los mismos de book.html, con sus animaciones ----
   .vipRide__* se conserva tal cual para que los dos mapas sean identicos.  */
.vipRide__marker { cursor: pointer; width: 0; height: 0; overflow: visible; position: relative; }
.vipRide__marker::before {
  content: '';
  position: absolute;
  left: -14px; top: -4px;
  width: 28px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .35) 40%, rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
  animation: vipPinShadowPulse 2.8s cubic-bezier(.4, 0, .6, 1) infinite;
  z-index: 0;
  will-change: transform, opacity;
}
.vipRide__markerInner {
  position: absolute;
  left: -20px; top: -38px;
  display: block;
  width: 40px; height: 38px;
  transform-origin: center bottom;
  animation: vipMarkerPop 700ms cubic-bezier(.175, .885, .32, 1.275) forwards,
             vipMarkerFloat 3.6s cubic-bezier(.4, 0, .6, 1) 700ms infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
}
.vipRide__markerInner svg {
  display: block;
  width: 40px; height: 38px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .5)) drop-shadow(0 6px 10px rgba(0, 0, 0, .4))
          drop-shadow(0 12px 20px rgba(0, 0, 0, .25)) drop-shadow(0 0 4px rgba(232, 197, 71, .3));
  transform: translateZ(0);
}
.vipRide__markerInner::after {
  content: '';
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 18px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.vipRide__marker--pulse { position: relative; }
.vipRide__marker--pulse::before {
  content: '';
  position: absolute;
  left: 50%; top: 100%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 71, .6) 0%, rgba(232, 197, 71, 0) 70%);
  animation: vrPinPulse 1.6s cubic-bezier(.33, 1, .68, 1) 2;
  pointer-events: none;
}
.vipRide__youLabel {
  position: absolute;
  left: 50%; top: -64px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F5DC7A, #E8C547);
  color: #0a0e1a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232, 197, 71, .45);
  pointer-events: none;
  animation: youLabelIn 480ms cubic-bezier(.34, 1.56, .64, 1) 600ms both,
             youLabelPulse 2.8s ease-in-out 1400ms infinite;
}
.vipRide__youLabel::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -5px;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #E8C547;
}
@keyframes vipMarkerPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  70% { transform: scale(.95); }
  100% { transform: scale(1); }
}
@keyframes vipMarkerFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}
@keyframes vipPinShadowPulse {
  0%, 100% { transform: scaleX(1) translateZ(0); opacity: .55; }
  50% { transform: scaleX(.78) translateZ(0); opacity: .8; }
}
@keyframes vrPinPulse {
  0% { transform: translate(-50%, -50%) scale(.6); opacity: .9; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}
@keyframes youLabelIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(.6); }
  60% { transform: translateX(-50%) translateY(2px) scale(1.08); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
@keyframes youLabelPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(232, 197, 71, .45); }
  50% { box-shadow: 0 4px 22px rgba(232, 197, 71, .7); }
}
@media (prefers-reduced-motion: reduce) {
  .vipRide__markerInner, .vipRide__marker::before,
  .vipRide__marker--pulse::before, .vipRide__youLabel { animation: none !important; }
}

@media (max-width: 960px) {
  .cmp-grid { grid-template-columns: 1fr; }
  .cmp-map-frame { height: 380px; }
}
@media (max-width: 520px) {
  .cmp-meta { grid-template-columns: 1fr 1fr; }
  .cmp-meta__f:last-child { grid-column: 1 / -1; }
}

/* ============================================================
   Descarga de la app: dos QR con el logo al centro
   ============================================================ */
.aq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 90px);
  max-width: 860px;
  margin: 0 auto;
}
.aq-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
/* el QR necesita fondo claro para que lo lea cualquier camara */
.aq-qr {
  position: relative;
  display: block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  padding: 18px;
  border-radius: var(--radius-sm);
  /* minimalista: dorado plano y parejo, sin relieve ni luz lateral */
  background: #d4af37;
  border: none;
  box-shadow: none;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}
.aq-qr svg { position: relative; z-index: 1; display: block; width: 100%; height: 100%; }
.aq-qr:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}
.aq-qr:active { transform: translateY(0); box-shadow: none; }
/* logo al centro: se apoya en la correccion de errores alta del codigo */
.aq-qr__badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 23%; height: 23%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  /* el aro blanco separa el logo de los modulos del codigo */
  box-shadow: 0 0 0 5px #fff;
}
.aq-qr__badge img { width: 100%; height: 100%; object-fit: contain; display: block; }

.aq-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.aq-card p {
  margin: -8px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .aq-grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .aq-card { align-items: center; text-align: center; }
}


/* ============================================================
   Modal "Cambiar ciudad" (fase 2 del hero)
   Mismo lenguaje del panel: cristal oscuro, dorado, sombra 3D
   ============================================================ */
body.h-city-lock { overflow: hidden; }
.h-city {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s .35s;
}
.h-city.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease;
}
.h-city__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.h-city__card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: min(780px, 92vh);
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #11151f 0%, #0b0e14 100%);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  /* misma sombra 3D que el panel: luz interior + elevación + halo dorado */
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, .09),
    inset -1px -1px 3px rgba(0, 0, 0, .45),
    0 4px 8px rgba(0, 0, 0, .45),
    0 18px 36px rgba(0, 0, 0, .55),
    0 40px 80px -10px rgba(0, 0, 0, .65),
    0 0 50px rgba(212, 175, 55, .08);
  transform: translateY(26px) scale(.96);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}
.h-city.is-open .h-city__card { transform: none; opacity: 1; }
.h-city__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .3);
  background: rgba(255, 255, 255, .05);
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .3s ease;
}
.h-city__close:hover { background: rgba(212, 175, 55, .18); transform: rotate(90deg); }
.h-city__title {
  margin: 0 44px 18px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}
.h-city__current {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  margin-top: 4px;
}
.h-city__explore {
  align-self: flex-start;
  margin: 0 0 20px;
  padding: 12px 28px;
  font-size: 14px;
  cursor: pointer;
}
.h-city__search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.h-city__search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}
.h-city__search svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 20px; }
.h-city__search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
}
.h-city__search input::placeholder { color: var(--ink-faint); }
.h-city__list {
  overflow-y: auto;
  margin: 0 -8px;
  padding: 0 8px;
  flex: 1;
  min-height: 120px;
}
.h-city__list::-webkit-scrollbar { width: 8px; }
.h-city__list::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, .3); border-radius: 8px; }
.h-city__sec {
  margin: 14px 0 8px;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.h-city__sec:first-child { margin-top: 2px; }
.h-city__item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .2s ease;
}
.h-city__item:hover { background: rgba(212, 175, 55, .09); }
.h-city__ic {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, .12);
  border: 1px solid rgba(212, 175, 55, .35);
  color: var(--gold);
}
.h-city__ic svg { width: 19px; height: 19px; }
.h-city__tx { display: flex; flex-direction: column; line-height: 1.35; }
.h-city__tx b { color: var(--ink); font-size: 16px; font-weight: 600; }
.h-city__tx small { color: var(--ink-soft); font-size: 13px; }
.h-city__empty { text-align: center; color: var(--ink-soft); padding: 30px 0; font-size: 15px; }
.h-city__note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: .06em;
}
@media (max-width: 640px) {
  .h-city { padding: 14px; align-items: flex-end; }
  .h-city__card { max-height: 88vh; border-radius: 24px; }
  .h-city__title { font-size: 15px; }
}

/* etiqueta flotante del mapa (aeropuerto) — replicada de book.html */
.vipRide__mapLabel{position:relative;display:flex;align-items:center;gap:8px;background:linear-gradient(135deg,rgba(15,17,32,.96),rgba(20,22,38,.94));border:1px solid rgba(232,197,71,.35);border-radius:12px;padding:7px 12px 7px 9px;opacity:0;pointer-events:none;font-family:-apple-system,BlinkMacSystemFont,sans-serif;color:#fff;line-height:1.2;box-shadow:0 4px 16px rgba(0,0,0,.55),0 0 22px rgba(232,197,71,.12);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);transition:opacity 520ms cubic-bezier(.22,1.2,.36,1),transform 620ms cubic-bezier(.34,1.56,.64,1);white-space:nowrap}
.vipRide__mapLabel--pickup{transform-origin:left center}
.vipRide__mapLabel--dropoff{transform-origin:right center}
.vipRide__mapLabel.is-visible{opacity:1;transform:perspective(400px) rotateY(0) scale(1)!important;animation:mapLabelBreathe 3.2s ease-in-out 900ms infinite}
@keyframes mapLabelBreathe{0%,100%{box-shadow:0 4px 16px rgba(0,0,0,.55),0 0 22px rgba(232,197,71,.12)}50%{box-shadow:0 6px 22px rgba(0,0,0,.6),0 0 36px rgba(232,197,71,.22)}}
.vipRide__mapLabel__tail{position:absolute;bottom:10px;width:9px;height:9px;background:rgba(15,17,32,.96);border:1px solid rgba(232,197,71,.35);transform:rotate(45deg)}
.vipRide__mapLabel--pickup .vipRide__mapLabel__tail{left:-5px;border-right:0;border-top:0}
.vipRide__mapLabel--dropoff .vipRide__mapLabel__tail{right:-5px;border-left:0;border-bottom:0}
.vipRide__mapLabel__ico{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:7px;flex-shrink:0;background:linear-gradient(135deg,#F5DC7A,#D4A800);color:#0a0e1a;box-shadow:0 2px 6px rgba(232,197,71,.4)}
.vipRide__mapLabel__txt{display:flex;flex-direction:column;gap:1px;min-width:0}
.vipRide__mapLabel__kind{font-size:8.5px;font-weight:800;letter-spacing:.14em;color:#E8C547;text-transform:uppercase}
.vipRide__labelText{font-size:clamp(11px,2.3vw,12.5px);font-weight:600;color:rgba(255,255,255,.96);max-width:clamp(150px,36vw,260px);white-space:normal;line-height:1.3}


/* ---- desplegables de fecha y hora (estilo Uber, tema oscuro) ---- */
.h-ride__when { position: relative; }
.h-ride__pill { cursor: pointer; user-select: none; -webkit-user-select: none; transition: border-color .2s ease, box-shadow .2s ease; }
.h-ride__pill:hover { border-color: rgba(212, 175, 55, .45); }
.h-ride__pill.is-open { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, .15); }
.h-ride__pill.is-open .h-ride__chev { transform: rotate(180deg); }
.h-when {
  position: absolute; top: calc(100% + 10px); z-index: 70;
  background: rgba(17, 20, 28, .98);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 18px; padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .6), 0 0 30px rgba(212, 175, 55, .08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: hWhenIn .22s cubic-bezier(.22, 1, .36, 1);
}
@keyframes hWhenIn { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
.h-when--cal { left: 0; right: auto; width: min(328px, 100%); padding: 13px 14px; }
.h-when--time { left: calc(50% + 6px); right: 0; padding: 8px; max-height: 240px; overflow-y: auto; }
.h-when--time::-webkit-scrollbar { width: 8px; }
.h-when--time::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, .35); border-radius: 8px; }
.h-when--time::-webkit-scrollbar-track { background: rgba(255, 255, 255, .04); border-radius: 8px; }
.h-when__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.h-when__selWrap { flex: 1; display: flex; justify-content: center; gap: 8px; }
.h-when__sel {
  appearance: none; -webkit-appearance: none;
  background: rgba(24, 28, 35, .9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center / 13px;
  border: 1px solid rgba(236, 238, 242, .14); border-radius: 9px;
  color: var(--ink); font: 600 13.5px/1 inherit; font-family: inherit;
  padding: 8px 26px 8px 10px; cursor: pointer;
}
.h-when__sel:focus { outline: 0; border-color: var(--gold); }
.h-when__nav {
  width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center;
  background: rgba(24, 28, 35, .9); border: 1px solid rgba(236, 238, 242, .14);
  border-radius: 9px; color: var(--ink); cursor: pointer; transition: border-color .2s, color .2s;
}
.h-when__nav svg { width: 14px; height: 14px; }
.h-when__nav:hover:not([disabled]) { border-color: var(--gold); color: var(--gold); }
.h-when__nav[disabled] { opacity: .3; cursor: default; }
.h-when__dow { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 2px; }
.h-when__dow span { text-align: center; font-size: 10.5px; font-weight: 600; color: var(--ink-faint); padding: 3px 0; }
.h-when__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.h-when__day {
  aspect-ratio: 1; display: grid; place-items: center;
  background: transparent; border: 0; border-radius: 50%;
  color: var(--ink); font-size: 12.5px; font-family: inherit; cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.h-when__day:hover:not([disabled]):not(.h-when__day--blank) { background: rgba(212, 175, 55, .18); }
.h-when__day--blank { cursor: default; }
.h-when__day--past { color: var(--ink-faint); opacity: .45; cursor: default; }
.h-when__day--today { box-shadow: inset 0 0 0 1.6px var(--ink); }
.h-when__day--sel { background: var(--gold) !important; color: #10131c; font-weight: 700; box-shadow: none; }
.h-when__t {
  display: block; width: 100%; text-align: left;
  background: transparent; border: 0; border-radius: 10px;
  color: var(--ink); font-size: 15.5px; font-family: inherit;
  padding: 11px 14px; cursor: pointer; transition: background .15s;
}
.h-when__t:hover:not([disabled]) { background: rgba(212, 175, 55, .12); }
.h-when__t--sel { background: rgba(212, 175, 55, .2); color: var(--gold); font-weight: 700; }
.h-when__t[disabled] { color: var(--ink-faint); opacity: .4; cursor: default; }
@media (max-width: 560px) { .h-when--time { left: 0; } }

/* ---- barra promocional (entre el hero y Experiencia de Lujo): píldora glass negra ---- */
.promo-bar {
  display: flex; align-items: center; gap: 18px;
  width: fit-content; max-width: calc(100% - 32px);
  margin: 26px auto; padding: 16px 22px 16px 18px;
  background: rgba(0, 0, 0, .48);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
  opacity: 0; transform: translateY(-14px) scale(.97);
  animation: promoBarIn .9s cubic-bezier(.22, 1.15, .36, 1) 1.25s forwards;
}
@keyframes promoBarIn { to { opacity: 1; transform: none; } }
.promo-bar.is-gone { display: none; }
.promo-bar.is-hiding { animation: none; transition: opacity .35s ease, transform .35s ease; opacity: 0 !important; transform: translateY(-10px) scale(.97) !important; pointer-events: none; }
.promo-bar__logo { width: 46px; height: 46px; flex: 0 0 46px; object-fit: contain; display: block; filter: drop-shadow(0 0 10px rgba(212, 175, 55, .35)); animation: promoBadgeGlow 3.2s ease-in-out 2.4s infinite; }
@keyframes promoBadgeGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, .28)); }
  50% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, .55)); }
}
.promo-bar__txt {
  flex: 0 1 auto; text-align: center;
  color: var(--ink); font-size: 16.5px; line-height: 1.4;
  text-decoration: none; transition: color .2s ease;
}
.promo-bar__txt b { color: var(--gold); font-weight: 700; }
.promo-bar__txt:hover { color: #fff; }
.promo-bar__txt:hover b { text-decoration: underline; text-underline-offset: 3px; }
.promo-bar__close {
  width: 32px; height: 32px; flex: 0 0 32px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .05); border: 0; border-radius: 50%;
  color: var(--ink-soft); cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.promo-bar__close svg { width: 14px; height: 14px; }
.promo-bar__close:hover { color: var(--gold); background: rgba(212, 175, 55, .14); transform: rotate(90deg); }
@media (max-width: 640px) {
  .promo-bar { gap: 12px; margin: 18px auto; padding: 12px 14px 12px 13px; border-radius: 12px; }
  .promo-bar__logo { width: 36px; height: 36px; flex-basis: 36px; }
  .promo-bar__txt { font-size: 13.5px; text-align: left; }
}
}
