/* ============ RIVANA CAR RENTAL — tropical beige Riviera Maya ============ */
:root {
  --bg: #f2ead9;          /* arena cálida */
  --bg2: #fffdf6;         /* crema para tarjetas */
  --ink: #33291c;         /* café oscuro */
  --ink-dim: #7d7059;     /* café suave */
  --gold: #b8860b;
  --gold-2: #d4af37;
  --gold-grad: linear-gradient(120deg, #b8860b, #d4af37 45%, #f0cf6d);
  --teal: #0f9b8e;        /* turquesa caribe */
  --teal-2: #2fc4b2;
  --coral: #e2725b;
  --glass: rgba(255, 251, 240, 0.86);
  --line: rgba(184, 134, 11, 0.28);
  --radius: 18px;
  --shadow: 0 12px 32px rgba(97, 74, 34, 0.14);
  --glow: 0 0 22px rgba(212, 175, 55, 0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  max-width: 100%;
}
/* ANTI-MOVIMIENTO LATERAL — leer antes de tocar:
   · `overflow-x: hidden` en html ROMPE la rueda del mouse (lo convierte en
     contenedor de scroll). Ya pasó una vez, no repetirlo.
   · `overflow-x: visible` deja panear la página de lado si algo desborda
     aunque sean 4px. También pasó.
   · `overflow-x: clip` es la solución: recorta sin crear scroll container.
     Bloquea el paneo venga de donde venga el desborde, presente o futuro. */
html { overflow-x: clip; }
body { overflow-x: clip; }
@supports not (overflow: clip) {
  body { overflow-x: hidden; }   /* navegadores viejos: al menos recorta el body */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-top: env(safe-area-inset-top);
  /* textura tropical: blobs turquesa/oro/coral + dot grid sutil */
  background-image:
    radial-gradient(640px 460px at 88% -6%, rgba(47, 196, 178, 0.16), transparent 70%),
    radial-gradient(560px 420px at -12% 34%, rgba(212, 175, 55, 0.15), transparent 70%),
    radial-gradient(600px 480px at 108% 74%, rgba(226, 114, 91, 0.12), transparent 70%),
    radial-gradient(520px 420px at -8% 96%, rgba(15, 155, 142, 0.12), transparent 70%),
    radial-gradient(rgba(51, 41, 28, 0.05) 1px, transparent 1px),
    linear-gradient(180deg,
      #f4ead3 0%, #fdf7ea 12%,
      #e9f3ec 26%, #f9eedd 40%,
      #efe4cf 52%, #e8f2ef 66%,
      #f9efdc 80%, #eee2c9 92%, #f2ead9 100%);
  background-size: auto, auto, auto, auto, 26px 26px, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, no-repeat;
}

img, video, iframe, svg, picture { max-width: 100%; height: auto; }

h1, h2, h3, .btn-gold, .tab {
  font-family: 'Marcellus', 'Baloo 2', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h2 { font-size: clamp(1.7rem, 5.5vw, 2.6rem); text-align: center; margin-bottom: 10px; }
h3 { font-size: 1.25rem; }

.section { padding: 72px 20px; max-width: 1100px; margin: 0 auto; }
.section-sub { text-align: center; color: var(--ink-dim); max-width: 560px; margin: 0 auto 36px; }

.glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.is-hidden { display: none !important; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: max(10px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
  background: rgba(248, 242, 228, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.18);
}
.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav-mark { height: 40px; width: auto; display: block; }
.nav-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Marcellus', serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-word small {
  font-family: 'Inter', sans-serif;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-mark { height: 34px; }
@media (min-width: 400px) { .nav-word { font-size: 1rem; } .nav-mark { height: 38px; } }
@media (min-width: 1120px) { .nav-word { font-size: 1.15rem; letter-spacing: 0.16em; } }
.nav-right { display: flex; align-items: center; gap: 8px; }

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.7);
}
.lang-btn {
  background: transparent;
  color: var(--ink-dim);
  border: 0;
  padding: 5px 6px;
  font: 600 0.68rem 'Inter', sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
@media (min-width: 400px) { .lang-btn { padding: 6px 8px; font-size: 0.74rem; } }
.lang-btn.is-active { background: var(--gold-grad); color: #2a2008; }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font: 600 0.82rem 'Inter', sans-serif;
  padding: 8px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  flex: 0 0 auto;
}
.nav-wa span { display: none; }
@media (min-width: 820px) { .nav-wa span { display: inline; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: calc(66px + env(safe-area-inset-top)) 16px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.hero-media video {
  position: absolute;   /* apiladas una sobre otra para el crossfade */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;           /* por defecto ocultas; sólo la .is-active se ve */
  transition: opacity 1s ease-in-out;
}
.hero-media video.is-active { opacity: 1; }
/* fundido inferior hacia el fondo arena (no es overlay sobre todo el video) */
.hero-media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-intro {
  text-align: center;
  max-width: 720px;
  margin-top: clamp(2px, 1.5vw, 40px);
  color: #ffffff;
  position: relative;
}
.hero-eyebrow {
  font-size: clamp(0.82rem, 2.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffe23a;
  text-shadow: 0 1px 2px rgba(10, 22, 26, 0.9), 0 3px 10px rgba(10, 22, 26, 0.6);
  margin-bottom: 14px;
}
/* sombra difusa detras de todo el bloque de letras (como el mockup) */
.hero-intro::before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background: radial-gradient(72% 72% at 46% 46%, rgba(8, 22, 28, 0.55), rgba(8, 22, 28, 0.28) 55%, transparent 80%);
  filter: blur(16px);
  border-radius: 56px;
  z-index: -1;
  pointer-events: none;
}
.hero-intro h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 9.4vw, 4.55rem);
  line-height: 1.02;
  overflow-wrap: break-word;
  color: #ffffff;
}
/* cada frase del titular en su propia linea con su propio font */
.hero-intro h1 .h1-script,
.hero-intro h1 .h1-gold,
.hero-intro h1 .h1-green { display: block; width: fit-content; max-width: 100%; margin-inline: auto; }

/* "Tu renta de autos" — pincel cursivo blanco */
.hero-intro h1 .h1-script {
  font-family: 'Kaushan Script', cursive;
  font-weight: 400;
  color: #ffffff;
  font-size: 1.06em;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin-top: -0.1em;
  margin-bottom: 0.16em;
  -webkit-text-stroke: 1.4px #ffffff;
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(10, 20, 25, 0.55), 0 8px 22px rgba(10, 20, 25, 0.4);
}
/* "RÁPIDA, FÁCIL Y SIN" — condensada pesada amarilla */
.hero-intro h1 .h1-gold {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffdf3d;
  font-size: 1.16em;
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-shadow: 0 2px 5px rgba(10, 20, 25, 0.5), 0 6px 18px rgba(10, 20, 25, 0.4);
}
/* "COMPLICACIONES" — brocha verde con swoosh */
.hero-intro h1 .h1-green {
  font-family: 'Bangers', 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #25d366;
  font-size: 1.3em;
  line-height: 0.96;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.12em;
  text-shadow: 0 2px 6px rgba(10, 20, 25, 0.5), 0 6px 20px rgba(6, 40, 20, 0.45);
}
.hero-intro h1 .h1-green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.02em;
  width: 100%;
  height: 0.2em;
  background: no-repeat center/100% 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 22' fill='none'%3E%3Cpath d='M5 15 C 70 5 130 5 178 9 C 228 13 268 12 296 7' stroke='%2325d366' stroke-width='9' stroke-linecap='round'/%3E%3C/svg%3E");
  filter: drop-shadow(0 2px 5px rgba(6, 40, 20, 0.5));
}

.hero-tagline {
  margin-top: 14px;
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(15, 25, 30, 0.95), 0 3px 8px rgba(15, 25, 30, 0.75), 0 10px 26px rgba(15, 25, 30, 0.5);
}
.hero-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 980px) {
  /* también 2x2 en desktop, para que las cuatro midan igual */
  .hero-chips { max-width: 560px; margin-left: 0; margin-right: 0; }
}
.hero-chip {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 10px;
  text-align: center;
  line-height: 1.35;
}
@media (min-width: 980px) { .hero-chip { font-size: 0.72rem; padding: 12px 14px; } }

/* chip de descuento: rojo para que resalte, ocupa las 2 columnas en móvil */
/* el texto es lo único que enciende y apaga; la tarjeta queda igual que las otras 3 */
.fuego-txt {
  display: block;
  animation: fuegoTexto 1.5s ease-in-out infinite;
}
@keyframes fuegoTexto {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 255, 255, 0.75), 0 1px 3px rgba(0, 0, 0, 0.85); }
  50% { opacity: 0.35; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .fuego-txt { animation: none; }
}


/* banner oscuro de promo bajo los chips */
.hero-promo-dark {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 19, 22, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold-2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  font: 600 0.88rem 'Inter', sans-serif;
  max-width: 560px;
}
.hero-promo-dark .hpd-star { color: var(--gold-2); }
.hero-promo-dark span:last-child { transition: opacity 0.4s ease; }
.hero-promo-dark span.out { opacity: 0; }
@media (max-width: 979px) { .hero-promo-dark { margin-left: auto; margin-right: auto; } }

.hero-card {
  width: 100%;
  max-width: 640px;
  margin-top: clamp(26px, 6vw, 48px);
  padding: 18px 18px 18px;
  text-align: center;
  /* cristal esmerilado: deja ver el video de fondo pero mantiene el texto legible */
  background: linear-gradient(150deg, rgba(255, 252, 244, 0.50), rgba(255, 248, 232, 0.34));
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 48px rgba(60, 45, 20, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
@media (min-width: 980px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 94vh;
    padding-left: clamp(32px, 5vw, 90px);
    padding-right: clamp(56px, 9vw, 190px);
    padding-bottom: 90px;
  }
  .hero-intro {
    text-align: left;
    margin-top: -12vh;
    flex: 1 1 58%;
    max-width: 680px;
  }
  .hero-intro h1 { font-size: clamp(3.3rem, 4.8vw, 4.8rem); }
  .hero-intro h1 .h1-script,
  .hero-intro h1 .h1-gold,
  .hero-intro h1 .h1-green { margin-inline: 0; }
  .hero-intro::before { inset: -56px -48px; }
  .hero-chips { justify-content: flex-start; }
  .hero-card { margin-top: 0; flex: 0 0 450px; width: 450px; }
}
.hero-sub { color: var(--ink-dim); font-size: 0.92rem; margin: 3px 0 13px; }

/* Hint para expandir la tarjeta (solo visible colapsada en movil) */
.card-expand-hint {
  display: none;
  width: 100%;
  margin-top: 12px;
  padding: 13px 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #d9a83a);
  color: #3a2c10;
  font: 700 0.95rem 'Inter', sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(191, 150, 60, 0.35);
  animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
/* En movil: si la tarjeta esta colapsada, ocultar todo menos sub + tabs + hint */
@media (max-width: 979px) {
  .hero-card.is-collapsed {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px 14px 16px;
  }
  .hero-card.is-collapsed .promo-rotator,
  .hero-card.is-collapsed .booking-panel,
  .hero-card.is-collapsed .booking-note,
  .hero-card.is-collapsed .booking-viewers { display: none; }
  .hero-card.is-collapsed .card-expand-hint { display: block; }
}

/* ============ BUSCADOR ============ */
.booking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.tab {
  flex: 1;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.7);
  color: var(--ink-dim);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
}
.tab.is-active {
  background: var(--gold-grad);
  color: #2a2008;
  border-color: transparent;
  box-shadow: var(--glow);
}

.booking-panel { display: flex; flex-direction: column; gap: 9px; text-align: left; }
.field { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.field label { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.field input, .field select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(51, 41, 28, 0.18);
  border-radius: 12px;
  color: var(--ink);
  padding: 10px 12px;
  font: 500 16px 'Inter', sans-serif;
  outline: none;
  transition: border 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: light;
  min-height: 42px;
}
.field input:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15, 155, 142, 0.18); }
.field-row { display: flex; gap: 10px; }

.btn-gold {
  display: inline-block;
  background: var(--gold-grad);
  color: #2a2008;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184, 134, 11, 0.45); }

.booking-note { text-align: center; font-size: 0.8rem; color: var(--ink-dim); }

/* ============ RESULTADOS / FLOTA ============ */
.results { padding-top: 40px; }
.res-sub { text-align: center; color: var(--ink-dim); margin-bottom: 26px; }

.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media (min-width: 640px) { .cars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cars-grid { grid-template-columns: repeat(3, 1fr); } }
#resultsGrid { margin-top: 10px; }
@media (min-width: 980px) { #resultsGrid { grid-template-columns: repeat(3, 1fr); } }

/* tarjetas con degradado rotativo tropical */
.car-card {
  border-radius: var(--radius);
  padding: 2px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.car-card:nth-child(4n + 1) { background: linear-gradient(150deg, #0f9b8e88, #2fc4b288); box-shadow: 0 12px 28px rgba(15, 155, 142, 0.2); }
.car-card:nth-child(4n + 2) { background: linear-gradient(150deg, #e2725b88, #f2a65e88); box-shadow: 0 12px 28px rgba(226, 114, 91, 0.2); }
.car-card:nth-child(4n + 3) { background: linear-gradient(150deg, #b8860b88, #f0cf6d88); box-shadow: 0 12px 28px rgba(184, 134, 11, 0.22); }
.car-card:nth-child(4n + 4) { background: linear-gradient(150deg, #4f9d5488, #9ac86a88); box-shadow: 0 12px 28px rgba(79, 157, 84, 0.2); }
.car-card:hover { transform: translateY(-6px); }
.car-card:nth-child(4n + 1):hover { box-shadow: 0 18px 40px rgba(15, 155, 142, 0.32); }
.car-card:nth-child(4n + 2):hover { box-shadow: 0 18px 40px rgba(226, 114, 91, 0.32); }
.car-card:nth-child(4n + 3):hover { box-shadow: 0 18px 40px rgba(184, 134, 11, 0.34); }
.car-card:nth-child(4n + 4):hover { box-shadow: 0 18px 40px rgba(79, 157, 84, 0.32); }

.car-inner {
  background: var(--bg2);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.car-photo {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.car-photo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; display: block; }
.car-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.car-body h3 { font-size: 1.15rem; }
.car-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-dim);
  background: rgba(51, 41, 28, 0.05);
  border: 1px solid rgba(51, 41, 28, 0.14);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.car-extra { font-size: 0.76rem; color: var(--ink-dim); }
.car-foot { margin-top: auto; display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.btn-reservar {
  background: var(--gold-grad);
  border: 0;
  border-radius: 999px;
  color: #2a2008;
  font: 700 0.9rem 'Inter', sans-serif;
  padding: 11px 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.32);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-reservar:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184, 134, 11, 0.45); }

.empty-state { text-align: center; padding: 32px 22px; max-width: 460px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

/* ============ PASOS ============ */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding: 26px 22px; position: relative; }
.step h3 { margin: 10px 0 8px; color: var(--teal); }
.step p { font-size: 0.9rem; color: var(--ink-dim); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #2a2008;
  font: 700 1.2rem 'Marcellus', serif;
  box-shadow: var(--glow);
}

/* ============ INCLUYE / STATS ============ */
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
@media (min-width: 760px) { .includes { grid-template-columns: repeat(3, 1fr); } }
.inc { display: flex; align-items: center; gap: 12px; padding: 16px 14px; }
.inc span { font-size: 1.5rem; }
.inc p { font-size: 0.85rem; font-weight: 600; }

.stats {
  margin-top: 26px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  padding: 26px 16px;
  flex-wrap: wrap;
}
.stat { text-align: center; min-width: 90px; }
.stat-num {
  display: block;
  font: 400 2rem 'Marcellus', serif;
  color: var(--teal);
}
.stat-label { font-size: 0.75rem; color: var(--ink-dim); }

/* ============ DESTINOS (slider) ============ */
.dest-slider { overflow: hidden; width: 100%; border-radius: var(--radius); position: relative; box-shadow: var(--shadow); }
.dest-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.dest-card { flex: 0 0 100%; position: relative; margin: 0; }
.dest-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; border-radius: var(--radius); }
.dest-card figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex;
  flex-direction: column;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 16px;
  max-width: calc(100% - 28px);
}
.dest-card figcaption strong { font-family: 'Marcellus', serif; font-size: 1.05rem; color: var(--ink); }
.dest-card figcaption span { font-size: 0.78rem; color: var(--ink-dim); }
.dest-dots { display: flex; justify-content: center; gap: 8px; padding: 14px 0 2px; }
.dest-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(51, 41, 28, 0.22);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dest-dot.is-active { background: var(--teal); transform: scale(1.25); }

/* ============ RESEÑAS ============ */
.review-slider { overflow: hidden; width: 100%; margin-top: 30px; }
.review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviews-marquee 36s linear infinite;
}
.review-slider:hover .review-track { animation-play-state: paused; }
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 min(320px, 82vw);
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; font-size: 0.9rem; }
.review-card p { font-size: 0.88rem; color: var(--ink); font-style: italic; }
.review-card strong { display: block; margin-top: 10px; font-size: 0.8rem; color: var(--ink-dim); font-style: normal; }

/* ============ CTA FINAL ============ */
.cta-final { padding-bottom: 90px; }
.cta-card { text-align: center; padding: 40px 24px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.cta-card p { color: var(--ink-dim); }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid rgba(184, 134, 11, 0.22);
  background: #ece1c8;
  text-align: center;
  padding: 40px 20px calc(90px + env(safe-area-inset-bottom));
  color: var(--ink-dim);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-logo { width: 150px; }
.foot-link { color: var(--teal); text-decoration: none; font-weight: 700; }
.foot-copy { font-size: 0.75rem; opacity: 0.75; }

/* ===== Bloque de contacto del footer ===== */
.footer-contact {
  width: 100%;
  max-width: 720px;
  margin: 8px auto 4px;
  padding: 22px 20px;
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 253, 246, 0.7), rgba(255, 253, 246, 0.35));
  box-shadow: 0 6px 22px rgba(97, 74, 34, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-contact-title {
  font-family: 'Marcellus', serif;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 10px;
}
.footer-contact-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-grad);
}
.footer-contact-rows {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fffdf6;
  border: 1px solid rgba(184, 134, 11, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 240px;
  justify-content: center;
}
.footer-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(97, 74, 34, 0.14);
  border-color: var(--gold-2);
}
.fci-ico {
  font-size: 1.35rem;
  line-height: 1;
  flex: 0 0 auto;
}
.fci-txt { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.fci-txt small {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}
.fci-txt strong { font-size: 0.98rem; color: var(--ink); font-weight: 700; }
.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(15, 155, 142, 0.1);
  border: 1px solid rgba(15, 155, 142, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  text-align: center;
}

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(51, 41, 28, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  overflow-y: auto;
}
@media (min-width: 640px) { .modal-backdrop { align-items: center; } }
.modal {
  width: 100%;
  max-width: 440px;
  padding: 26px 22px;
  position: relative;
  max-height: 88vh;
  max-height: 88dvh;   /* dvh no cambia cuando Safari oculta/muestra la barra de direcciones */
  overflow-y: auto;
  background: var(--bg2);
}
.modal h3 { margin-bottom: 12px; color: var(--teal); }
.modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: transparent;
  border: 0;
  color: var(--ink-dim);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}
.modal-summary {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.modal-summary div { display: flex; justify-content: space-between; gap: 10px; padding: 2px 0; }
.modal-summary span { color: var(--ink-dim); }
.modal-summary strong { text-align: right; }

/* aviso de descuentos por duración, arriba del resumen */
.modal-summary .modal-promo {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #f5d98a, #d4af5a);
  color: #5a4208;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  border-radius: 10px;
  padding: 7px 10px;
  margin: -2px 0 10px;
}
/* único campo editable del checkout: los días */
.modal-summary .modal-days {
  align-items: center;
  border-top: 1px dashed rgba(184, 134, 11, 0.35);
  border-bottom: 1px dashed rgba(184, 134, 11, 0.35);
  margin: 6px 0;
  padding: 8px 0;
}
.days-ctl { display: inline-flex; align-items: center; gap: 10px; }
.days-ctl strong { min-width: 26px; text-align: center; font-size: 1.05rem; color: var(--teal-deep, #0b7a70); }
.days-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 134, 11, 0.5);
  background: #fffdf7;
  color: #7a5a10;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.days-btn:active { background: #f5e6bf; }
.modal-summary .modal-desc-ok strong { color: #0b7a70; font-weight: 800; }
/* elegir modelo dentro de una categoría con precios distintos (SUV grande) */
.modal-summary .modal-modelos { padding: 8px 0 4px; }
.modal-summary .modal-modelos span { font-weight: 700; color: var(--ink); }
.modal-summary .modelo-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
  border: 1.5px solid rgba(184, 134, 11, 0.30);
  border-radius: 10px;
  background: #fffdf7;
  cursor: pointer;
}
.modal-summary .modelo-opt.is-sel {
  border-color: var(--teal);
  background: rgba(15, 155, 142, 0.08);
  box-shadow: 0 0 0 2px rgba(15, 155, 142, 0.12);
}
.modal-summary .modelo-opt input { accent-color: var(--teal); width: 17px; height: 17px; flex: 0 0 auto; }
.modal-summary .modelo-nom { flex: 1; display: flex; flex-direction: column; color: var(--ink); font-weight: 700; }
.modal-summary .modelo-nom em { font-style: normal; font-size: 0.72rem; color: var(--ink-dim); font-weight: 500; }
.modal-summary .modelo-precio { text-align: right; color: #0b7a70; font-weight: 800; white-space: nowrap; }
.modal-summary .modelo-precio em { font-style: normal; font-size: 0.7rem; color: var(--ink-dim); font-weight: 500; }

/* aviso de que el modelo se asigna según disponibilidad (categorías con rango de precio) */
.modal-summary .modal-rango {
  display: block;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--ink-dim);
  font-style: italic;
  padding: 4px 0 2px;
}
#reservaForm { display: flex; flex-direction: column; gap: 12px; }
.modal-note { font-size: 0.76rem; color: var(--ink-dim); }

/* ============ WA FLOTANTE ============ */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 45;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ NAV LINK ============ */
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font: 600 0.85rem 'Inter', sans-serif;
  padding: 6px 4px;
  white-space: nowrap;
  display: none;
}
.nav-link:hover { color: var(--gold); }
@media (min-width: 720px) { .nav-link { display: inline; } }

/* ============ BOTONES ALTERNOS DEL BUSCADOR ============ */
.booking-alt { display: flex; gap: 10px; }
.btn-ghost {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: rgba(255, 253, 246, 0.65);
  border: 1.5px solid var(--gold-2);
  border-radius: 999px;
  color: #8a6a10;
  font: 600 0.86rem 'Inter', sans-serif;
  padding: 12px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.14); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(184, 134, 11, 0.2); }
.btn-ghost-full { width: 100%; }
@media (max-width: 420px) { .booking-alt { flex-direction: column; } }

/* ============ QUIENES SOMOS ============ */
.about {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  margin-top: 30px;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-text { display: flex; flex-direction: column; gap: 12px; }
.about-text p { color: var(--ink); font-size: 0.95rem; }
.about-text strong { color: var(--teal); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-list li { font-size: 0.9rem; font-weight: 500; color: var(--ink-dim); }
@media (min-width: 860px) {
  .about { flex-direction: row; padding: 32px; gap: 32px; }
  .about-img { width: 42%; aspect-ratio: 4 / 3; }
  .about-text { flex: 1; }
}

/* ============ FORMAS DE PAGO ============ */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
@media (min-width: 760px) { .pay-grid { grid-template-columns: repeat(3, 1fr); } }
.pay-card { padding: 26px 22px; text-align: center; }
.pay-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pay-card h3 { color: var(--teal); margin-bottom: 6px; }
.pay-card p { font-size: 0.88rem; color: var(--ink-dim); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq { padding: 0; overflow: hidden; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 46px 18px 20px;
  font: 600 0.95rem 'Inter', sans-serif;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font: 400 1.4rem 'Marcellus', serif;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--ink-dim); }
.faq.priv { max-width: 760px; margin: 30px auto 0; }
.faq.priv p { padding-bottom: 10px; }
.faq.priv p:last-child { padding-bottom: 18px; }

/* ============ CONTACTO ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(97, 74, 34, 0.2); }
.contact-card h3 { color: var(--teal); font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.82rem; color: var(--ink-dim); word-break: break-word; }

/* ============ FOOTER LINKS ============ */
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }

/* boton reservar a lo ancho (tarjetas sin precio visible) */
.btn-block { width: 100%; flex: 1; padding: 13px 18px; }

/* el 7o beneficio ocupa el ancho completo */
.includes .inc:last-child:nth-child(odd) { grid-column: 1 / -1; justify-content: center; }

/* ============ O SIMILAR ============ */
.car-similar { font-size: 0.72rem; color: var(--ink-dim); font-family: 'Inter', sans-serif; font-weight: 500; white-space: nowrap; }

/* ============ EXTRAS ============ */
.extras-grid { max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 760px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extras-box {
  background: rgba(15, 155, 142, 0.07);
  border: 1px solid rgba(15, 155, 142, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.extras-title { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.extra-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; }
.extra-check input { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }

.extra-img { width: 100%; max-width: 150px; aspect-ratio: 1; object-fit: contain; margin: 0 auto 10px; display: block; border-radius: 12px; }

/* ============ PROMO ROTATIVO (arriba de la tarjeta) ============ */
.promo-rotator {
  background: var(--gold-grad);
  color: #2a2008;
  border-radius: 12px;
  padding: 11px 14px;
  font: 700 0.85rem 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}
.promo-rotator span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.promo-rotator span.out { opacity: 0; transform: translateY(-10px); }

/* ============ FOMO (pill fino, una sola linea) ============ */
.fomo {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 12px;
  width: max-content;
  max-width: calc(100vw - 24px);
  padding: 4px 11px 4px 7px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  transform: translateX(-160%);
  transition: transform 0.5s ease;
  z-index: 40;
  background: rgba(255, 253, 246, 0.96);
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(97, 74, 34, 0.16);
  white-space: nowrap;
}
.fomo.show { transform: translateX(0); }
.fomo-avatar { font-size: 0.8rem; line-height: 1; flex: 0 0 auto; }
.fomo-line { font-size: 0.62rem; color: var(--ink-dim); line-height: 1.2; }
.fomo-line strong { font-size: 0.62rem; font-weight: 700; color: var(--ink); }
.fomo-line time { color: var(--teal); font-weight: 600; }
@media (max-width: 768px) {
  .fomo {
    top: calc(60px + env(safe-area-inset-top));
    bottom: auto;
    left: 12px;
    transform: translateY(-220%);
  }
  .fomo.show { transform: translateY(0); }
}

/* ============ WA FLOTANTE ============ */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 45;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ NAV LINK ============ */
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font: 600 0.85rem 'Inter', sans-serif;
  padding: 6px 4px;
  white-space: nowrap;
  display: none;
}
.nav-link:hover { color: var(--gold); }
@media (min-width: 720px) { .nav-link { display: inline; } }

/* ============ BOTONES ALTERNOS DEL BUSCADOR ============ */
.booking-alt { display: flex; gap: 10px; }
.btn-ghost {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: rgba(255, 253, 246, 0.65);
  border: 1.5px solid var(--gold-2);
  border-radius: 999px;
  color: #8a6a10;
  font: 600 0.86rem 'Inter', sans-serif;
  padding: 12px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.14); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(184, 134, 11, 0.2); }
@media (max-width: 420px) { .booking-alt { flex-direction: column; } }

/* ============ QUIENES SOMOS ============ */
.about {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  margin-top: 30px;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-text { display: flex; flex-direction: column; gap: 12px; }
.about-text p { color: var(--ink); font-size: 0.95rem; }
.about-text strong { color: var(--teal); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-list li { font-size: 0.9rem; font-weight: 500; color: var(--ink-dim); }
@media (min-width: 860px) {
  .about { flex-direction: row; padding: 32px; gap: 32px; }
  .about-img { width: 42%; aspect-ratio: 4 / 3; }
  .about-text { flex: 1; }
}

/* ============ FORMAS DE PAGO ============ */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
@media (min-width: 760px) { .pay-grid { grid-template-columns: repeat(3, 1fr); } }
.pay-card { padding: 26px 22px; text-align: center; }
.pay-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pay-card h3 { color: var(--teal); margin-bottom: 6px; }
.pay-card p { font-size: 0.88rem; color: var(--ink-dim); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq { padding: 0; overflow: hidden; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 46px 18px 20px;
  font: 600 0.95rem 'Inter', sans-serif;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font: 400 1.4rem 'Marcellus', serif;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--ink-dim); }
.faq.priv { max-width: 760px; margin: 30px auto 0; }
.faq.priv p { padding-bottom: 10px; }
.faq.priv p:last-child { padding-bottom: 18px; }

/* ============ CONTACTO ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(97, 74, 34, 0.2); }
.contact-card h3 { color: var(--teal); font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.82rem; color: var(--ink-dim); word-break: break-word; }

/* ============ FOOTER LINKS ============ */
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }

/* boton reservar a lo ancho (tarjetas sin precio visible) */
.btn-block { width: 100%; flex: 1; padding: 13px 18px; }

/* el 7o beneficio ocupa el ancho completo */
.includes .inc:last-child:nth-child(odd) { grid-column: 1 / -1; justify-content: center; }

/* ============ O SIMILAR ============ */
.car-similar { font-size: 0.72rem; color: var(--ink-dim); font-family: 'Inter', sans-serif; font-weight: 500; white-space: nowrap; }

/* ============ EXTRAS ============ */
.extras-grid { max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 760px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extras-box {
  background: rgba(15, 155, 142, 0.07);
  border: 1px solid rgba(15, 155, 142, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.extras-title { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.extra-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; }
.extra-check input { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }

.extra-img { width: 100%; max-width: 150px; aspect-ratio: 1; object-fit: contain; margin: 0 auto 10px; display: block; border-radius: 12px; }

/* ============ PROMO ROTATIVO (arriba de la tarjeta) ============ */
.promo-rotator {
  background: var(--gold-grad);
  color: #2a2008;
  border-radius: 12px;
  padding: 11px 14px;
  font: 700 0.85rem 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}
.promo-rotator span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.promo-rotator span.out { opacity: 0; transform: translateY(-10px); }

/* ============ FOMO ESQUINA (ultra compacto) ============ */
.fomo {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 12px;
  width: auto;
  max-width: 220px;
  padding: 4px 9px 4px 6px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  transform: translateX(-150%);
  transition: transform 0.5s ease;
  z-index: 40;
  background: rgba(255, 253, 246, 0.95);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(97, 74, 34, 0.18);
}
.fomo.show { transform: translateX(0); }
.fomo-avatar { font-size: 0.9rem; line-height: 1; }
.fomo-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.fomo-text strong { font-size: 0.6rem; font-weight: 700; white-space: nowrap; }
.fomo-text span { font-size: 0.54rem; color: var(--ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fomo-text time { font-size: 0.52rem; color: var(--teal); font-weight: 600; }
@media (max-width: 768px) {
  .fomo {
    top: calc(62px + env(safe-area-inset-top));
    bottom: auto;
    left: 12px;
    transform: translateY(-200%);
  }
  .fomo.show { transform: translateY(0); }
}

/* ============ WA FLOTANTE ============ */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 45;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ NAV LINK ============ */
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font: 600 0.85rem 'Inter', sans-serif;
  padding: 6px 4px;
  white-space: nowrap;
  display: none;
}
.nav-link:hover { color: var(--gold); }
@media (min-width: 720px) { .nav-link { display: inline; } }

/* ============ BOTONES ALTERNOS DEL BUSCADOR ============ */
.booking-alt { display: flex; gap: 10px; }
.btn-ghost {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: rgba(255, 253, 246, 0.65);
  border: 1.5px solid var(--gold-2);
  border-radius: 999px;
  color: #8a6a10;
  font: 600 0.86rem 'Inter', sans-serif;
  padding: 12px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.14); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(184, 134, 11, 0.2); }
@media (max-width: 420px) { .booking-alt { flex-direction: column; } }

/* ============ QUIENES SOMOS ============ */
.about {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  margin-top: 30px;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-text { display: flex; flex-direction: column; gap: 12px; }
.about-text p { color: var(--ink); font-size: 0.95rem; }
.about-text strong { color: var(--teal); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-list li { font-size: 0.9rem; font-weight: 500; color: var(--ink-dim); }
@media (min-width: 860px) {
  .about { flex-direction: row; padding: 32px; gap: 32px; }
  .about-img { width: 42%; aspect-ratio: 4 / 3; }
  .about-text { flex: 1; }
}

/* ============ FORMAS DE PAGO ============ */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
@media (min-width: 760px) { .pay-grid { grid-template-columns: repeat(3, 1fr); } }
.pay-card { padding: 26px 22px; text-align: center; }
.pay-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pay-card h3 { color: var(--teal); margin-bottom: 6px; }
.pay-card p { font-size: 0.88rem; color: var(--ink-dim); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq { padding: 0; overflow: hidden; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 46px 18px 20px;
  font: 600 0.95rem 'Inter', sans-serif;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font: 400 1.4rem 'Marcellus', serif;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--ink-dim); }
.faq.priv { max-width: 760px; margin: 30px auto 0; }
.faq.priv p { padding-bottom: 10px; }
.faq.priv p:last-child { padding-bottom: 18px; }

/* ============ CONTACTO ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(97, 74, 34, 0.2); }
.contact-card h3 { color: var(--teal); font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.82rem; color: var(--ink-dim); word-break: break-word; }

/* ============ FOOTER LINKS ============ */
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }

/* boton reservar a lo ancho (tarjetas sin precio visible) */
.btn-block { width: 100%; flex: 1; padding: 13px 18px; }

/* el 7o beneficio ocupa el ancho completo */
.includes .inc:last-child:nth-child(odd) { grid-column: 1 / -1; justify-content: center; }

/* ============ O SIMILAR ============ */
.car-similar { font-size: 0.72rem; color: var(--ink-dim); font-family: 'Inter', sans-serif; font-weight: 500; white-space: nowrap; }

/* ============ EXTRAS ============ */
.extras-grid { max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 760px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extras-box {
  background: rgba(15, 155, 142, 0.07);
  border: 1px solid rgba(15, 155, 142, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.extras-title { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.extra-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; }
.extra-check input { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }

.extra-img { width: 100%; max-width: 150px; aspect-ratio: 1; object-fit: contain; margin: 0 auto 10px; display: block; border-radius: 12px; }

/* ============ PROMO ROTATIVO (arriba de la tarjeta) ============ */
.promo-rotator {
  background: var(--gold-grad);
  color: #2a2008;
  border-radius: 12px;
  padding: 11px 14px;
  font: 700 0.85rem 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}
.promo-rotator span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.promo-rotator span.out { opacity: 0; transform: translateY(-10px); }

/* ============ FOMO ESQUINA (popup minimalista) ============ */
.fomo {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 14px;
  max-width: 210px;
  padding: 6px 10px;
  display: flex;
  gap: 6px;
  align-items: center;
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  z-index: 40;
  background: rgba(255, 253, 246, 0.94);
  border-radius: 999px;
}
.fomo.show { transform: translateX(0); }
.fomo-avatar { font-size: 0.85rem; }
.fomo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.fomo-text strong { font-size: 0.62rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fomo-text span { font-size: 0.56rem; color: var(--ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fomo-text time { font-size: 0.54rem; color: var(--teal); font-weight: 600; }
@media (max-width: 768px) {
  .fomo {
    top: calc(66px + env(safe-area-inset-top));
    bottom: auto;
    left: 12px;
    right: auto;
    max-width: 220px;
    transform: translateY(-180%);
  }
  .fomo.show { transform: translateY(0); }
}

/* ============ WA FLOTANTE ============ */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 45;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ NAV LINK ============ */
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font: 600 0.85rem 'Inter', sans-serif;
  padding: 6px 4px;
  white-space: nowrap;
  display: none;
}
.nav-link:hover { color: var(--gold); }
@media (min-width: 720px) { .nav-link { display: inline; } }

/* ============ BOTONES ALTERNOS DEL BUSCADOR ============ */
.booking-alt { display: flex; gap: 10px; }
.btn-ghost {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: rgba(255, 253, 246, 0.65);
  border: 1.5px solid var(--gold-2);
  border-radius: 999px;
  color: #8a6a10;
  font: 600 0.86rem 'Inter', sans-serif;
  padding: 12px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.14); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(184, 134, 11, 0.2); }
@media (max-width: 420px) { .booking-alt { flex-direction: column; } }

/* ============ QUIENES SOMOS ============ */
.about {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  margin-top: 30px;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-text { display: flex; flex-direction: column; gap: 12px; }
.about-text p { color: var(--ink); font-size: 0.95rem; }
.about-text strong { color: var(--teal); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-list li { font-size: 0.9rem; font-weight: 500; color: var(--ink-dim); }
@media (min-width: 860px) {
  .about { flex-direction: row; padding: 32px; gap: 32px; }
  .about-img { width: 42%; aspect-ratio: 4 / 3; }
  .about-text { flex: 1; }
}

/* ============ FORMAS DE PAGO ============ */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
@media (min-width: 760px) { .pay-grid { grid-template-columns: repeat(3, 1fr); } }
.pay-card { padding: 26px 22px; text-align: center; }
.pay-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pay-card h3 { color: var(--teal); margin-bottom: 6px; }
.pay-card p { font-size: 0.88rem; color: var(--ink-dim); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq { padding: 0; overflow: hidden; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 46px 18px 20px;
  font: 600 0.95rem 'Inter', sans-serif;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font: 400 1.4rem 'Marcellus', serif;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--ink-dim); }
.faq.priv { max-width: 760px; margin: 30px auto 0; }
.faq.priv p { padding-bottom: 10px; }
.faq.priv p:last-child { padding-bottom: 18px; }

/* ============ CONTACTO ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(97, 74, 34, 0.2); }
.contact-card h3 { color: var(--teal); font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.82rem; color: var(--ink-dim); word-break: break-word; }

/* ============ FOOTER LINKS ============ */
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }

/* boton reservar a lo ancho (tarjetas sin precio visible) */
.btn-block { width: 100%; flex: 1; padding: 13px 18px; }

/* el 7o beneficio ocupa el ancho completo */
.includes .inc:last-child:nth-child(odd) { grid-column: 1 / -1; justify-content: center; }

/* ============ O SIMILAR ============ */
.car-similar { font-size: 0.72rem; color: var(--ink-dim); font-family: 'Inter', sans-serif; font-weight: 500; white-space: nowrap; }

/* ============ EXTRAS ============ */
.extras-grid { max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 760px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extras-box {
  background: rgba(15, 155, 142, 0.07);
  border: 1px solid rgba(15, 155, 142, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.extras-title { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.extra-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; }
.extra-check input { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }

.extra-img { width: 100%; max-width: 150px; aspect-ratio: 1; object-fit: contain; margin: 0 auto 10px; display: block; border-radius: 12px; }

/* ============ PROMO ROTATIVO (arriba de la tarjeta) ============ */
.promo-rotator {
  background: var(--gold-grad);
  color: #2a2008;
  border-radius: 12px;
  padding: 11px 14px;
  font: 700 0.85rem 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}
.promo-rotator span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.promo-rotator span.out { opacity: 0; transform: translateY(-10px); }

/* ============ FOMO ESQUINA (popup flotante) ============ */
.fomo {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 16px;
  max-width: 300px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-130%);
  transition: transform 0.5s ease;
  z-index: 40;
  background: var(--bg2);
}
.fomo.show { transform: translateX(0); }
.fomo-avatar { font-size: 1.4rem; }
.fomo-text { display: flex; flex-direction: column; line-height: 1.35; }
.fomo-text strong { font-size: 0.8rem; }
.fomo-text span { font-size: 0.75rem; color: var(--ink-dim); }
.fomo-text time { font-size: 0.68rem; color: var(--teal); font-weight: 600; }
@media (max-width: 768px) {
  .fomo {
    top: calc(72px + env(safe-area-inset-top));
    bottom: auto;
    left: 12px;
    right: 12px;
    max-width: none;
    transform: translateY(-160%);
  }
  .fomo.show { transform: translateY(0); }
}

/* ============ QUIENES SOMOS v2 (modelo de la clienta) ============ */
.gold { color: var(--gold); font-weight: 700; }
.about2 { display: grid; grid-template-columns: 1fr; gap: 34px; margin-top: 10px; }
@media (min-width: 900px) { .about2 { grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; } }
.about2-title { text-align: left; font-size: clamp(2rem, 6vw, 2.8rem); margin-bottom: 6px; }
.about2-line { display: block; width: 64px; height: 3px; background: var(--gold-grad); border-radius: 2px; margin-bottom: 18px; }
.about2-p { margin-bottom: 14px; font-size: 0.97rem; color: var(--ink); }
.about2-comp { text-align: center; margin: 26px 0; display: flex; flex-direction: column; gap: 8px; }
.about2-stars { color: var(--gold); letter-spacing: 8px; font-size: 0.8rem; }
.about2-comp-label { font: 700 0.8rem 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); }
.about2-comp-text { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: clamp(1.25rem, 3.4vw, 1.6rem); color: var(--gold); line-height: 1.3; }
.about2-list { list-style: none; margin-top: 8px; }
.about2-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(184, 134, 11, 0.25); }
.about2-list li:last-child { border-bottom: 1px solid rgba(184, 134, 11, 0.25); }
.about2-ico {
  flex: 0 0 44px; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}
.about2-list strong { display: block; font: 700 0.82rem 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 2px; }
.about2-list p { font-size: 0.88rem; color: var(--ink-dim); }
.about2-right { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.about2-logo { width: min(250px, 62%); }
.about2-photo { width: 100%; border-radius: 20px; box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 5; max-height: 460px; }
.about2-card {
  background: #17130c;
  color: #f4f1ea;
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(23, 19, 12, 0.35);
  width: 100%;
}
.about2-heart { font-size: 1.6rem; }
.about2-card-p { font-size: 0.95rem; line-height: 1.6; }
.about2-card-div { display: block; width: 56px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.about2-lema { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 1.25rem; line-height: 1.45; color: #fff; }

.foot-seo { font-size: 0.72rem; opacity: 0.75; max-width: 640px; line-height: 1.6; }

.booking-viewers { text-align: center; font-size: 0.76rem; font-weight: 600; color: var(--teal); }
.res-urgencia { text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--coral); margin: -14px 0 22px; }
.cta-big { font-size: 1.15rem; padding: 17px 34px; }


/* ============ ESTABILIDAD EN MÓVIL ============
   Evita que la página "baile" en Safari/Chrome iOS al tocar:
   - sin destello gris al tocar
   - sin doble-tap zoom en controles
   - sin rebote de scroll que arrastra el layout
   - sin scroll horizontal accidental
   - los :hover con transform NO se aplican en pantallas táctiles
     (en táctil se quedan "pegados" al tocar y mueven los elementos) */
html {
  overscroll-behavior: none;     /* sin rebote ni arrastre, en ambos ejes */
  -webkit-text-size-adjust: 100%;
}
/* OJO: el overflow-x va SÓLO en body. Ponerlo también en html convierte
   al elemento raíz en contenedor de scroll y la rueda del mouse deja de
   desplazar la página (pasó el 2026-07-20). */
body {
  overflow-x: hidden;
}
* { -webkit-tap-highlight-color: transparent; }
a, button, .tab, .chip, .lang-btn, input, select, textarea, [role="button"] {
  touch-action: manipulation;
}
@media (hover: none) {
  a:hover, button:hover, .btn-gold:hover, .btn-ghost:hover, .btn-reservar:hover,
  .car-card:hover, .tab:hover, .lang-btn:hover, .hero-chip:hover,
  .destino:hover, .inc:hover, .faq:hover, .footer-card:hover {
    transform: none !important;
    box-shadow: inherit;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
