/* ============================================================
   Antz Tours · Hoja de estilos principal
   Paleta y proporciones tomadas del diseño original.
   ============================================================ */

:root {
  --rojo: #e5402a;
  --rojo-osc: #c9351f;
  --tinta: #0a0f1e;
  --negro: #111827;
  --gris-900: #1f2937;
  --gris-700: #374151;
  --gris-600: #4b5563;
  --gris-500: #6b7280;
  --gris-400: #9ca3af;
  --gris-300: #d1d5db;
  --gris-200: #e5e7eb;
  --gris-100: #f3f4f6;
  --gris-50: #f9fafb;
  --blanco: #fff;
  --verde: #22c55e;
  --verde-osc: #059669;
  --ambar: #facc15;

  --grad-calido: linear-gradient(to right, #f97316, #dc2626);
  --grad-calido-hover: linear-gradient(to right, #ea580c, #b91c1c);
  --grad-verde: linear-gradient(to right, #22c55e, #059669);

  --ancho: 1280px;
  --header-h: 80px;
  --tabbar-h: 66px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --sombra-card: 0 10px 30px -10px rgb(0 0 0 / 35%);
  --sombra-card-hover: 0 26px 44px -14px rgb(0 0 0 / 45%);

  --fuente: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fuente-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  background: var(--blanco);
  color: var(--tinta);
  font-family: var(--fuente);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.2; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--rojo);
  outline-offset: 2px;
  border-radius: 4px;
}

.oculto-visual {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- Contenedores ---------------- */

.contenedor { width: 100%; max-width: var(--ancho); margin: 0 auto; padding: 0 16px; }
.contenedor-sm { max-width: 768px; }
.contenedor-md { max-width: 1152px; }

.seccion { padding: 48px 0; }
.seccion--gris { background: var(--gris-50); }

.seccion__encabezado { text-align: center; margin-bottom: 40px; }
.seccion__titulo {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  color: var(--negro);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.seccion__sub {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--gris-600);
  max-width: 672px;
  margin: 0 auto;
}

/* ---------------- Botones ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 9999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  text-align: center;
}
.btn--primario { background: var(--rojo); color: var(--blanco); }
.btn--primario:hover { background: var(--rojo-osc); color: var(--blanco); }

.btn--contorno {
  background: var(--blanco);
  color: var(--rojo);
  border: 2px solid var(--rojo);
}
.btn--contorno:hover { background: #fff5f3; }

.btn--calido { background: var(--grad-calido); color: var(--blanco); border-radius: 6px; }
.btn--calido:hover { background: var(--grad-calido-hover); color: var(--blanco); }

.btn--verde { background: var(--grad-verde); color: var(--blanco); }
.btn--verde:hover { transform: translateY(-2px); color: var(--blanco); }

.btn--claro { background: var(--blanco); color: var(--negro); font-weight: 700; }
.btn--claro:hover { background: var(--gris-100); }

.btn--fantasma {
  background: transparent;
  border: 1px solid var(--gris-300);
  color: var(--gris-700);
}
.btn--fantasma:hover { border-color: var(--rojo); color: var(--rojo); }

.btn--bloque { width: 100%; }
.btn--grande { padding: 16px 40px; font-size: 16px; font-weight: 700; }
.btn--chico { padding: 8px 18px; font-size: 14px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* ---------------- Encabezado ---------------- */

.header-envoltura { position: sticky; top: 0; z-index: 40; }

.header {
  height: var(--header-h);
  background: var(--blanco);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  display: flex;
  align-items: center;
}
.header__nav {
  width: 100%;
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo img { height: 64px; width: auto; display: block; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu__enlace {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  color: var(--tinta);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.menu__enlace:hover { color: var(--rojo); background: var(--gris-50); }
.menu__enlace.es-activo { color: var(--rojo); font-weight: 600; }

.header__acciones { display: flex; align-items: center; gap: 12px; }

/* Carrito */
.carrito-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: transparent;
  border: none;
  color: var(--tinta);
  cursor: pointer;
  transition: background .2s ease;
}
.carrito-btn:hover { background: var(--gris-100); }
.carrito-btn__contador {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 9999px;
  background: var(--rojo);
  color: var(--blanco);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner de verificación pendiente */
.banner-verificar {
  background: #dc2626;
  color: var(--blanco);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ---------------- Barra inferior móvil ---------------- */

.tabbar, .tabbar-espacio { display: none; }

.tabbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  background: #fd120c;
  box-shadow: 0 -6px 20px rgb(0 0 0 / 28%);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar__lista { display: flex; height: var(--tabbar-h); }
.tabbar__enlace {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fd120c;
  transition: background .2s ease;
}
.tabbar__enlace svg {
  width: clamp(26px, 7vw, 32px);
  height: clamp(26px, 7vw, 32px);
  display: block;
  stroke: #5c0011;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tabbar__enlace.es-activo { background: #770017; }
.tabbar__enlace.es-activo svg { stroke: #fff; }

.tabbar__logo {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 9999px;
  border: 3px solid var(--blanco);
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgb(0 0 0 / 35%);
  padding: 0;
}
.tabbar__logo img { width: 74%; height: 74%; object-fit: contain; }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0806;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__velo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(70% 50% at 50% 42%, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 45%) 100%);
  pointer-events: none;
}
.hero__interior {
  position: relative;
  z-index: 1;
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 40px 16px 48px;
}
.hero__titulo {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--blanco);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgb(0 0 0 / 45%);
  text-align: center;
  min-height: 1.2em;
}
.hero__sub {
  font-size: 16px;
  color: rgb(255 255 255 / 82%);
  margin: 0;
  font-weight: 600;
  text-align: center;
}

/* Carrusel tipo coverflow */
.coverflow {
  position: relative;
  width: 100%;
  height: clamp(230px, 33vw, 380px);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.coverflow:active { cursor: grabbing; }
.coverflow__pista { position: absolute; inset: 0; top: 60px; }
.coverflow__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .6s ease;
  will-change: transform, opacity;
}
.coverflow__slide a { display: block; position: relative; aspect-ratio: 16 / 10; }
.coverflow__figura {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverflow__figura img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgb(70 48 24 / 33%));
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid rgb(120 80 40 / 25%);
  background: rgb(255 255 255 / 55%);
  backdrop-filter: blur(6px);
  color: #7a4f22;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgb(80 50 20 / 35%);
  transition: background .2s ease;
}
.flecha:hover { background: rgb(255 255 255 / 85%); }
.flecha--izq { left: 8px; }
.flecha--der { right: 8px; }

.hero__pie {
  text-align: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.puntos { display: flex; align-items: center; gap: 10px; }
.puntos button {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgb(255 255 255 / 45%);
  transition: all .3s ease;
}
.puntos button.es-activo { width: 26px; background: var(--blanco); }

.aviso-vacio {
  text-align: center;
  color: var(--gris-500);
  font-size: 16px;
  margin: 8px 0 0;
  padding: 32px;
  border: 1px dashed var(--gris-300);
  border-radius: 12px;
}

/* ---------------- Tarjetas ---------------- */

.rejilla-tarjetas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  gap: 24px;
  justify-content: center;
}

.carril {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.carril--centrado { justify-content: center; }
.carril::-webkit-scrollbar { height: 6px; }
.carril::-webkit-scrollbar-thumb { background: var(--gris-300); border-radius: 9999px; }

.carril-envoltura { position: relative; }
.carril-envoltura .flecha {
  border: 1px solid var(--gris-200);
  background: var(--blanco);
  color: var(--gris-700);
  backdrop-filter: none;
  box-shadow: 0 6px 16px -4px rgb(0 0 0 / 20%);
  z-index: 20;
}
.carril-envoltura .flecha:hover { color: var(--rojo); border-color: var(--rojo); background: var(--blanco); }
.carril-envoltura .flecha--izq { left: -8px; }
.carril-envoltura .flecha--der { right: -8px; }

.tarjeta {
  position: relative;
  display: block;
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4.4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #1a1a1a;
  color: inherit;
  box-shadow: var(--sombra-card);
  transition: transform .35s ease, box-shadow .35s ease;
}
.tarjeta:hover { transform: translateY(-4px); box-shadow: var(--sombra-card-hover); }
.rejilla-tarjetas .tarjeta { width: auto; }

/* Envoltura: sostiene los botones de favorito/compartir fuera del enlace.
   Toma el tamaño y la elevación que antes tenía la tarjeta suelta. */
.tarjeta-envoltura {
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform .35s ease;
}
.carril > .tarjeta-envoltura { width: 280px; }
.rejilla-tarjetas > .tarjeta-envoltura { width: auto; }
.tarjeta-envoltura > .tarjeta { width: 100%; }
.tarjeta-envoltura:hover { transform: translateY(-4px); }
.tarjeta-envoltura:hover > .tarjeta { box-shadow: var(--sombra-card-hover); }
.tarjeta-envoltura > .tarjeta:hover { transform: none; }

.tarjeta-acciones {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.tarjeta-accion {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 9999px;
  background: rgb(255 255 255 / 92%);
  color: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgb(0 0 0 / 25%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tarjeta-accion:hover { transform: scale(1.1); }
.tarjeta-accion:disabled { opacity: .6; cursor: default; transform: none; }
.tarjeta-accion--fav.es-favorito { background: var(--rojo); color: var(--blanco); }
.tarjeta-accion--fav.es-favorito svg { fill: currentColor; }

/* La insignia de precio también vive arriba a la derecha: si la tarjeta
   lleva botones, se recorre a la izquierda para que no queden encimados. */
.tarjeta-envoltura:has(.tarjeta-acciones) .tarjeta__precio,
.tarjeta:has(.tarjeta-acciones) .tarjeta__precio { right: 104px; }

/* Aviso breve tras copiar un enlace */
.aviso-flotante {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--negro);
  color: var(--blanco);
  padding: 12px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
}
.aviso-flotante.visible { opacity: 1; transform: translate(-50%, 0); }

.tarjeta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tarjeta__velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgb(0 0 0 / 28%) 0%, rgb(0 0 0 / 0%) 34%, rgb(0 0 0 / 55%) 66%, rgb(0 0 0 / 92%) 100%);
}
.tarjeta__etiqueta {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rojo);
  color: var(--blanco);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
}
.tarjeta__precio {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgb(255 255 255 / 92%);
  color: var(--negro);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
}
.tarjeta__cuerpo {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}
.tarjeta__titulo {
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--blanco);
  margin: 0 0 6px;
  line-height: 1.1;
}
.tarjeta__texto {
  color: rgb(255 255 255 / 82%);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tarjeta__accion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blanco);
  color: var(--negro);
  padding: 13px 16px;
  border-radius: 9999px;
  font-size: 14.5px;
  font-weight: 700;
}

/* ---------------- Reseñas ---------------- */

.resenas { position: relative; max-width: 720px; margin: 0 auto; }
.resenas__ventana { overflow: hidden; border-radius: var(--r-md); }
.resenas__pista {
  display: flex;
  width: 100%;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.resena { flex: 0 0 100%; padding: 0 6px; }
.resena__caja {
  background: var(--gris-50);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.resena__cabeza { display: flex; align-items: center; margin-bottom: 16px; gap: 16px; }
.resena__avatar {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.resena__nombre { font-weight: 700; font-size: 18px; color: var(--gris-900); margin: 0 0 2px; }
.resena__estrellas { display: flex; color: var(--ambar); }
.resena__texto { color: var(--gris-600); margin: 0; flex-grow: 1; font-size: 17px; line-height: 1.6; }

.resenas .flecha {
  width: 40px;
  height: 40px;
  background: rgb(255 255 255 / 92%);
  border: 1px solid #fb923c;
  color: #f97316;
  backdrop-filter: none;
  box-shadow: 0 4px 10px -3px rgb(0 0 0 / 25%);
  z-index: 5;
}
.resenas .flecha:hover { background: var(--blanco); }
.resenas .flecha--izq { left: -6px; }
.resenas .flecha--der { right: -6px; }

/* ---------------- Formularios ---------------- */

.formulario {
  background: var(--gris-50);
  border: 1px solid var(--gris-100);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 5%);
}
.formulario[hidden] { display: none; }
.campos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.campos--2 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gris-700);
}
.campo input,
.campo select,
.campo textarea,
.campo .dp-trigger {
  padding: 12px;
  border: 1px solid var(--gris-300);
  border-radius: var(--r-sm);
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  color: var(--negro);
  background: var(--blanco);
  width: 100%;
}
.campo textarea { resize: vertical; min-height: 90px; }
.campo input:disabled { background: var(--gris-100); color: var(--gris-500); cursor: not-allowed; }
.campo input:focus,
.campo select:focus,
.campo textarea:focus,
.campo .dp-trigger:focus-visible { border-color: var(--rojo); outline-offset: 0; }
.campo--error input,
.campo--error select,
.campo--error textarea { border-color: #dc2626; }

/* ---- Rueda de fecha (date-picker) ---- */
.dp-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
  line-height: 1.3;
}
.dp-trigger .dp-ph { color: var(--gris-400); }
.exp-campo .dp-trigger .dp-ph { color: rgb(255 255 255 / 45%); }
date-picker.dp-invalid .dp-trigger { border-color: #dc2626 !important; }

.campo-icono { position: relative; }
.campo-icono svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gris-400); }
.campo-icono input { padding-left: 44px; }
.campo-icono .ver-pass {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  color: var(--gris-500);
}

.casilla {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gris-700);
  cursor: pointer;
}
.casilla input {
  width: 18px;
  height: 18px;
  accent-color: var(--rojo);
  cursor: pointer;
  flex-shrink: 0;
}

.campo__error { color: #dc2626; font-size: 13px; font-weight: 500; margin: 0; }

/* Avisos */
.aviso {
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aviso--ok { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.aviso--error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.aviso--info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.aviso--alerta { background: #fef3c7; border: 1px solid #fcd34d; color: #92400e; }

.panel-exito {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-md);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.panel-exito[hidden] { display: none; }
.panel-exito__icono {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------- Contacto ---------------- */

.rejilla-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.tarjeta-contacto {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border-radius: var(--r-md);
  background: var(--blanco);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%);
  border: 1px solid var(--gris-100);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tarjeta-contacto:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 25px -5px rgb(0 0 0 / 12%); }
.tarjeta-contacto__barra { position: absolute; inset: 0 0 auto 0; height: 6px; }
.tarjeta-contacto__icono {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}
.tarjeta-contacto h3 { font-size: 20px; font-weight: 700; color: var(--negro); margin: 0 0 8px; }
.tarjeta-contacto__dato { color: var(--negro); font-weight: 500; font-size: 18px; margin: 0 0 8px; }
.tarjeta-contacto__nota { font-size: 14px; color: var(--gris-500); margin: 0 0 24px; }
.tarjeta-contacto__accion {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--blanco);
  font-weight: 500;
  font-size: 14px;
}

/* ---------------- Pie de página ---------------- */

.pie { background: var(--negro); color: var(--blanco); padding: 32px 0 18px; }
.pie__rejilla {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}
.pie h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.pie h4 { font-size: 13px; font-weight: 600; margin: 0 0 8px; letter-spacing: .025em; }
.pie p { color: var(--gris-400); margin: 0 0 8px; font-size: 13px; line-height: 1.4; }
.pie ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pie a { color: var(--gris-400); font-size: 14px; transition: color .3s ease; }
.pie a:hover { color: var(--ambar); }
.pie__redes { display: flex; gap: 16px; }
.pie__redes a { display: flex; }
.pie__base {
  border-top: 1px solid var(--gris-900);
  padding-top: 12px;
  margin-top: 12px;
  text-align: center;
  color: var(--gris-500);
}
.pie__base p { font-size: 12px; margin: 0; color: var(--gris-500); }

/* ---------------- Botón flotante de WhatsApp ---------------- */

.whatsapp-flotante {
  position: fixed;
  bottom: 88px;
  right: 24px;
  background: var(--verde);
  color: var(--blanco);
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 20%);
  z-index: 40;
  transition: transform .2s ease;
}
.whatsapp-flotante:hover { transform: scale(1.1) rotate(10deg); color: var(--blanco); }

/* ---------------- Modales ---------------- */

.modal {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 65%);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}
.modal[hidden] { display: none; }
.modal__caja {
  position: relative;
  background: var(--blanco);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 40%);
  margin: auto;
}
.modal__caja--ancha { max-width: 620px; overflow: hidden; }
.modal__cerrar {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: #dc2626;
  border: none;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgb(220 38 38 / 40%);
  z-index: 2;
}
.modal__cerrar:hover { background: #b91c1c; }
.modal__cuerpo { padding: 40px; }
.modal__cabeza {
  position: relative;
  background: linear-gradient(135deg, #464442eb, #000 100%);
  padding: 28px 32px;
  border-bottom: 3px solid #d4af37;
}
.modal__cabeza h3 { font-size: 24px; font-weight: 800; color: var(--blanco); margin: 6px 0 2px; }
.modal__cabeza p { margin: 0; font-size: 14px; color: rgb(255 255 255 / 72%); }

.folio-caja {
  border-radius: 12px;
  padding: 14px 24px;
  background: #116533;
  text-align: center;
}
.folio-caja span:first-child {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d4af37;
  font-weight: 700;
}
.folio-caja span:last-child {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--blanco);
  letter-spacing: .04em;
}

/* Pantalla de éxito de la cotización: oculta hasta enviar el formulario. */
.cotizar-exito {
  padding: 44px 36px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cotizar-exito[hidden] { display: none; }

/* ---------------- Cajón del carrito ---------------- */

.cajon {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  background: rgb(0 0 0 / 55%);
}
.cajon[hidden] { display: none; }
.cajon__panel {
  width: 100%;
  max-width: 420px;
  background: var(--blanco);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgb(0 0 0 / 25%);
}
.cajon__cabeza {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gris-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cajon__cabeza h2 { font-size: 20px; font-weight: 800; }
.cajon__lista { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cajon__pie { border-top: 1px solid var(--gris-200); padding: 20px 24px; }

.renglon {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gris-100);
}
.renglon__img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gris-100);
}
.renglon__cuerpo { flex: 1; min-width: 0; }
.renglon__titulo { font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.renglon__precio { color: var(--gris-500); font-size: 13px; margin: 0 0 8px; }
.contador { display: inline-flex; align-items: center; border: 1px solid var(--gris-300); border-radius: 9999px; overflow: hidden; }
.contador button {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--blanco);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  color: var(--gris-700);
}
.contador button:hover { background: var(--gris-100); }
.contador span { min-width: 32px; text-align: center; font-weight: 700; font-size: 14px; }

.totales { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.totales__fila { display: flex; justify-content: space-between; font-size: 15px; color: var(--gris-600); }
.totales__fila--total { font-size: 19px; font-weight: 800; color: var(--negro); padding-top: 8px; border-top: 1px solid var(--gris-200); }

/* ---------------- Mapa de asientos ---------------- */

.asientos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 340px;
  margin: 0 auto;
}
.asiento {
  aspect-ratio: 1;
  border-radius: 10px 10px 6px 6px;
  border: 2px solid var(--gris-300);
  background: var(--blanco);
  font-size: 14px;
  font-weight: 700;
  color: var(--gris-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s ease;
}
.asiento:hover:not(:disabled) { border-color: var(--rojo); color: var(--rojo); transform: translateY(-2px); }
.asiento.es-elegido { background: var(--rojo); border-color: var(--rojo); color: var(--blanco); }
.asiento:disabled { background: var(--gris-200); border-color: var(--gris-300); color: var(--gris-400); cursor: not-allowed; }
.asiento--pasillo { visibility: hidden; pointer-events: none; }

.leyenda { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 20px 0; font-size: 13px; color: var(--gris-600); }
.leyenda span { display: inline-flex; align-items: center; gap: 8px; }
.leyenda i { width: 16px; height: 16px; border-radius: 5px; border: 2px solid var(--gris-300); display: block; }
.leyenda i.ocupado { background: var(--gris-200); }
.leyenda i.elegido { background: var(--rojo); border-color: var(--rojo); }

.volante {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 18px;
  padding: 10px;
  border-radius: 12px 12px 0 0;
  background: var(--gris-100);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-500);
}

/* ---------------- Galería y visor 360 ---------------- */

.galeria { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.galeria img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform .3s ease;
}
.galeria img:hover { transform: scale(1.02); }

.visor360 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #111;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}
.visor360 img { width: 100%; height: 100%; object-fit: cover; display: none; }
.visor360 img.es-activo { display: block; }
.visor360__ayuda {
  position: absolute;
  inset: auto 0 12px 0;
  text-align: center;
  color: rgb(255 255 255 / 85%);
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  text-shadow: 0 1px 4px rgb(0 0 0 / 60%);
}

/* ---------------- Detalle ---------------- */

.detalle-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border-radius: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.detalle-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detalle-hero__velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 25%) 0%, rgb(0 0 0 / 10%) 40%, rgb(0 0 0 / 85%) 100%);
}
.detalle-hero__texto { position: relative; padding: 40px 0; width: 100%; }
.detalle-hero h1 {
  font-family: var(--fuente-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  color: var(--blanco);
  margin: 0 0 8px;
}
.detalle-hero p { color: rgb(255 255 255 / 85%); font-size: clamp(15px, 2.5vw, 19px); margin: 0; max-width: 720px; }

.doble-columna { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }

.ficha {
  background: var(--gris-50);
  border: 1px solid var(--gris-200);
  border-radius: var(--r-md);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.ficha__precio { font-size: 32px; font-weight: 800; color: var(--negro); }
.ficha__precio small { font-size: 15px; font-weight: 500; color: var(--gris-500); }
.ficha__antes { text-decoration: line-through; color: var(--gris-400); font-size: 17px; font-weight: 500; margin-right: 8px; }

.datos { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.datos li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--gris-700); }
.datos svg { flex-shrink: 0; color: var(--rojo); margin-top: 2px; }

.itinerario { list-style: none; margin: 0; padding: 0; position: relative; }
.itinerario::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gris-200);
}
.itinerario li { position: relative; padding: 0 0 28px 40px; }
.itinerario li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: var(--rojo);
  border: 3px solid var(--blanco);
  box-shadow: 0 0 0 2px var(--gris-200);
}
.itinerario__momento { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--rojo); }
.itinerario h4 { font-size: 17px; font-weight: 700; margin: 2px 0 4px; color: var(--negro); }
.itinerario p { margin: 0; color: var(--gris-600); font-size: 15px; }

.pastillas { display: flex; flex-wrap: wrap; gap: 10px; }
.pastilla {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gris-100);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gris-700);
}
.pastilla svg { color: var(--rojo); }

.miga { font-size: 14px; color: var(--gris-500); margin-bottom: 20px; }
.miga a:hover { color: var(--rojo); }

/* Tabla */
.tabla { width: 100%; border-collapse: collapse; font-size: 14px; }
.tabla th, .tabla td { padding: 12px; text-align: left; border-bottom: 1px solid var(--gris-200); }
.tabla th { background: var(--gris-50); font-weight: 700; color: var(--gris-700); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.tabla tbody tr:hover { background: var(--gris-50); }
.tabla-envoltura { overflow-x: auto; border: 1px solid var(--gris-200); border-radius: var(--r-md); }

.insignia {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}
.insignia--ok { background: #dcfce7; color: #166534; }
.insignia--espera { background: #fef3c7; color: #92400e; }
.insignia--no { background: #fee2e2; color: #991b1b; }
.insignia--info { background: #e0f2fe; color: #075985; }

/* Aviso de cookies */
.cookies {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 90;
  background: var(--negro);
  color: var(--blanco);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 20px 40px rgb(0 0 0 / 35%);
  max-width: 720px;
  margin: 0 auto;
}
.cookies[hidden] { display: none; }
.cookies p { margin: 0; font-size: 14px; color: var(--gris-300); flex: 1 1 320px; }

/* Contenido legal */
.prosa { max-width: 760px; margin: 0 auto; color: var(--gris-700); }
.prosa h2 { font-size: 22px; margin: 32px 0 12px; color: var(--negro); }
.prosa p, .prosa li { font-size: 15.5px; line-height: 1.7; }
.prosa ul { padding-left: 20px; }

/* ---------------- Utilidades ---------------- */

.centrado { text-align: center; }
.pila { display: flex; flex-direction: column; }
.pila[hidden] { display: none; }
.fila { display: flex; align-items: center; }
.entre { justify-content: space-between; }
.g8 { gap: 8px; }
.g12 { gap: 12px; }
.g16 { gap: 16px; }
.g24 { gap: 24px; }
.mt8 { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt40 { margin-top: 40px; }
.mb8 { margin-bottom: 8px; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }
.mb40 { margin-bottom: 40px; }
.envolver { flex-wrap: wrap; }
.silenciado { color: var(--gris-500); font-size: 14px; }

/* ---------------- Adaptable ---------------- */

@media (max-width: 1024px) {
  .header-envoltura { display: none; }
  .tabbar, .tabbar-espacio { display: block; }
  .tabbar-espacio { height: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
  .whatsapp-flotante { bottom: calc(var(--tabbar-h) + 22px); }
  .cookies { bottom: calc(var(--tabbar-h) + 16px); }
  .aviso-flotante { bottom: calc(var(--tabbar-h) + 28px); }
  :root { --header-h: 0px; }
  .doble-columna { grid-template-columns: 1fr; }
  .ficha { position: static; }
}

/* ------------- Modal Bottom Sheet (teléfono y tableta) ------------- */

@keyframes sheet-subir {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@media (max-width: 1024px) {
  /* Solo los modales de diálogo (con caja). El visor de galería no se toca. */
  .modal:has(.modal__caja) {
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
  }
  .modal:has(.modal__caja) .modal__caja {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom);
    animation: sheet-subir .3s cubic-bezier(.32, .72, 0, 1);
  }
  /* Cabecera fija con asa de arrastre (grabber) */
  .modal:has(.modal__caja) .modal__cabeza {
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .modal:has(.modal__caja) .modal__cabeza::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 4px;
    border-radius: 9999px;
    background: rgb(255 255 255 / 45%);
  }
}

@media (max-width: 640px) {
  .seccion { padding: 32px 0; }
  .modal__cuerpo { padding: 28px 20px; }
  .formulario { padding: 22px; }
  .resena__caja { padding: 22px; }
  .carril-envoltura .flecha { display: none; }
  .coverflow .flecha { display: none; }
  .detalle-hero { min-height: 320px; }
  .asientos { max-width: 280px; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .header-envoltura, .tabbar, .tabbar-espacio, .whatsapp-flotante, .cookies, .pie { display: none !important; }
}


/* ============================================================
   Sección Experiencias · clon de los prototipos
   Dos pieles distintas, tomadas tal cual del diseño:
     .tema-exp-listado  -> /experiencias : oscuro, cinematográfico, Roboto
     .tema-exp-detalle  -> /experiencia/{slug} : crema, editorial, Raleway
   Ambas comparten la cabecera carbón con filo de oro. Sólo se activan
   por la clase que index.php pone en <body>, así que ninguna otra
   pantalla cambia. Va al final para ganar por orden, sin !important.
   ============================================================ */

body[class^="tema-exp"] {
  --oro: #d4af37;
  --oro-claro: #e9d9b0;
  --oro-osc: #c69a2f;
  --carbon: #0e0c0a;
  --crema: #faf8f4;
  --crema-borde: #ece5d8;
  --crema-suave: #f5f1e9;
  --cafe: #6b5636;
  --cafe-claro: #9c8c6c;
}

/* ---------- Cabecera y navegación (ambas pieles) ---------- */
body[class^="tema-exp"] .header {
  background: rgb(14 12 10 / 88%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(212 175 55 / 28%);
  box-shadow: none;
}
body[class^="tema-exp"] .menu__enlace { color: #f5efe1; }
body[class^="tema-exp"] .menu__enlace:hover,
body[class^="tema-exp"] .menu__enlace.es-activo { color: var(--oro); background: rgb(212 175 55 / 12%); }
body[class^="tema-exp"] .carrito-btn { color: #f5efe1; }
body[class^="tema-exp"] .carrito-btn:hover { background: rgb(212 175 55 / 12%); }
body[class^="tema-exp"] .tabbar,
body[class^="tema-exp"] .tabbar__enlace { background: var(--carbon); }
body[class^="tema-exp"] .tabbar__enlace svg { stroke: #f5efe1; }
body[class^="tema-exp"] .tabbar__enlace.es-activo {
  background: rgb(212 175 55 / 12%);
  border-top: 3px solid var(--oro);
}
body[class^="tema-exp"] .tabbar__enlace.es-activo svg { stroke: var(--oro); }
body[class^="tema-exp"] .tabbar__logo { background: var(--carbon); border-color: var(--oro); }

/* Rótulo dorado que encabeza cada bloque */
.exp-rotulo {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--oro);
}

/* ============================================================
   PIEL 1 · Listado oscuro
   ============================================================ */

body.tema-exp-listado {
  --fuente: "Roboto", ui-sans-serif, system-ui, sans-serif;
  background: var(--carbon);
  color: #fff;
}

/* La portada ocupa la pantalla completa */
.exp-portada {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 10%, #2c241a 0%, #14100b 55%, #0a0806 100%);
}
.exp-portada__fondo { position: absolute; inset: 0; opacity: .5; }
.exp-portada__fondo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-portada__fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(10 8 6 / 55%) 0%, rgb(10 8 6 / 35%) 40%, rgb(10 8 6 / 85%) 100%);
}
.exp-portada__cuerpo { position: relative; z-index: 3; text-align: center; padding: 0 22px; }
.exp-portada__titulo {
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: clamp(42px, 10vw, 96px);
  color: #fff;
  margin: 14px 0 10px;
  line-height: .98;
  letter-spacing: -.02em;
}
.exp-portada__cuerpo p {
  font-size: clamp(15px, 4vw, 19px);
  color: rgb(255 255 255 / 78%);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}
.exp-flecha {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  color: rgb(255 255 255 / 60%);
  animation: exp-flota 2.4s ease-in-out infinite;
}
@keyframes exp-flota {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -14px); }
}

/* Botón rojo en píldora, con su resplandor */
.btn--exp {
  background: var(--rojo);
  color: var(--blanco);
  margin-top: 30px;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px rgb(229 64 42 / 70%);
}
.btn--exp:hover { background: var(--rojo-osc); color: var(--blanco); }

/* Cada experiencia ocupa la pantalla completa, con su foto de fondo */
.exp-escena {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1410 0%, #0e0c0a 100%);
}
.exp-escena--der { background: linear-gradient(160deg, #201017 0%, #0e0c0a 100%); }
.exp-escena__fondo { position: absolute; inset: 0; opacity: .6; }
.exp-escena__fondo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-escena__velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(10 8 6 / 90%) 0%, rgb(10 8 6 / 55%) 55%, rgb(10 8 6 / 20%) 100%);
}
/* En las escenas alineadas a la derecha el velo se invierte */
.exp-escena--der .exp-escena__velo {
  background: linear-gradient(to left, rgb(10 8 6 / 90%) 0%, rgb(10 8 6 / 50%) 55%, rgb(10 8 6 / 20%) 100%);
}
.exp-escena__cuerpo {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 22px;
  width: 100%;
  display: flex;
}
.exp-escena--centro .exp-escena__cuerpo { justify-content: center; }
.exp-escena--der .exp-escena__cuerpo { justify-content: flex-end; }
.exp-escena__texto { max-width: 620px; }
.exp-escena--centro .exp-escena__texto { text-align: center; }
.exp-escena--der .exp-escena__texto { text-align: right; max-width: 540px; }

.exp-escena__titulo {
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: clamp(34px, 7vw, 60px);
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.02;
}
.exp-escena__texto p {
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.75;
  color: rgb(255 255 255 / 82%);
  font-weight: 300;
  margin: 0 0 22px;
}
.exp-escena__enlace { display: inline-block; margin-top: 4px; color: var(--oro-claro); border-bottom: 1px solid rgb(212 175 55 / 50%); padding-bottom: 2px; font-size: 14px; letter-spacing: .04em; }
.exp-escena__enlace:hover { color: var(--oro); border-bottom-color: var(--oro); }

/* "Incluye" como píldoras con filo de oro */
.exp-pastillas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.exp-escena--centro .exp-pastillas { justify-content: center; }
.exp-escena--der .exp-pastillas { justify-content: flex-end; }
.exp-pastillas span {
  border: 1px solid rgb(212 175 55 / 50%);
  color: var(--oro-claro);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: .04em;
}

/* Bloque final del formulario */
.exp-reserva {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 90% at 50% 0%, #241d13 0%, #0e0c0a 60%);
}
.exp-reserva__cuerpo { position: relative; z-index: 3; max-width: 620px; margin: 0 auto; padding: 120px 22px; width: 100%; }
.exp-reserva__titulo {
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 48px);
  color: #fff;
  margin: 12px 0 8px;
}
.exp-formulario {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 24px 60px -30px rgb(0 0 0 / 90%);
}
.exp-campo label {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 4px;
  font-weight: 500;
}
.exp-campo input,
.exp-campo select,
.exp-campo textarea,
.exp-campo .dp-trigger {
  width: 100%;
  background: rgb(255 255 255 / 6%);
  border: none;
  border-bottom: 1.5px solid rgb(255 255 255 / 35%);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 12px 10px;
  border-radius: 6px 6px 0 0;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.exp-campo input:focus,
.exp-campo select:focus,
.exp-campo textarea:focus,
.exp-campo .dp-trigger:focus-visible { border-bottom-color: var(--oro); background: rgb(255 255 255 / 10%); }
.exp-campo input::placeholder,
.exp-campo textarea::placeholder { color: rgb(255 255 255 / 45%); }
.exp-campo select option { color: #1a1a1a; }
.exp-pareja-osc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.exp-nota { font-size: 12px; color: rgb(255 255 255 / 50%); text-align: center; margin: 0; }

/* ============================================================
   PIEL 2 · Detalle claro
   ============================================================ */

body.tema-exp-detalle {
  --fuente: "Raleway", ui-sans-serif, system-ui, sans-serif;
  background: var(--crema);
  color: #1a1a1a;
}

/* Portada a pantalla completa con video o foto */
.expd-portada {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--carbon);
}
.expd-portada img,
.expd-portada video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.expd-portada__velo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(10 8 6 / 35%) 0%, rgb(10 8 6 / 25%) 45%, rgb(10 8 6 / 85%) 100%);
}
.expd-portada__texto {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 56px;
  text-align: center;
}
.expd-portada__texto h1 {
  font-family: var(--fuente-display);
  font-size: clamp(34px, 8vw, 68px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  text-shadow: 0 4px 24px rgb(0 0 0 / 50%);
}
.expd-portada__texto p { color: rgb(255 255 255 / 82%); font-size: clamp(15px, 4vw, 18px); margin: 0; }

/* Insignia dorada "Experiencia premium" */
.exp-premium {
  display: inline-block;
  background: rgb(212 175 55 / 95%);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.expd-cuerpo { max-width: 1120px; margin: 0 auto; padding: 40px 20px 64px; }
.expd-rejilla { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: start; }

.expd-foto { position: relative; border-radius: 18px; overflow: hidden; }
.expd-foto img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.expd-foto__velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 55%) 0%, transparent 45%);
}
.expd-foto .exp-premium { position: absolute; left: 16px; bottom: 16px; margin: 0; }

.expd-titulo {
  font-family: var(--fuente-display);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 6px;
  letter-spacing: -.01em;
}
.expd-sub { font-size: clamp(15px, 4vw, 17px); color: var(--cafe); margin: 0 0 20px; font-weight: 500; }

/* Fila de datos con filetes crema */
.expd-datos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  padding: 18px 0;
  border-top: 1px solid var(--crema-borde);
  border-bottom: 1px solid var(--crema-borde);
  margin: 0 0 24px;
}
.expd-datos dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cafe-claro);
  font-weight: 700;
}
.expd-datos dd {
  font-family: var(--fuente-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.expd-prosa { font-size: 16px; line-height: 1.75; color: #3f3a33; }
.expd-prosa p { margin: 0 0 16px; }
.expd-sub-titulo { font-family: var(--fuente-display); font-size: 20px; color: #1a1a1a; margin: 28px 0 14px; }
.expd-incluye {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.expd-incluye li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #3f3a33; }
.expd-incluye svg { color: var(--oro-osc); flex-shrink: 0; margin-top: 2px; }

/* Tarjeta de solicitud */
.expd-tarjeta {
  background: var(--blanco);
  border: 1px solid var(--crema-borde);
  border-radius: 18px;
  box-shadow: 0 16px 40px -24px rgb(0 0 0 / 35%);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.expd-tarjeta__cabeza {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  padding: 22px 24px;
  border-bottom: 3px solid var(--oro);
}
.expd-tarjeta__cabeza h2 {
  margin: 6px 0 2px;
  font-family: var(--fuente-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.expd-tarjeta__cabeza p { margin: 0; font-size: 13.5px; color: rgb(255 255 255 / 72%); }
.expd-tarjeta__cuerpo { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; }
.expd-campo { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 600; color: #3f3a33; }
.expd-campo input,
.expd-campo select,
.expd-campo textarea,
.expd-campo .dp-trigger {
  padding: 11px 13px;
  border: 1px solid var(--gris-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  color: #1a1a1a;
  background: var(--blanco);
}
.expd-campo input:focus,
.expd-campo select:focus,
.expd-campo textarea:focus,
.expd-campo .dp-trigger:focus-visible { outline: 2px solid rgb(212 175 55 / 45%); outline-offset: 1px; border-color: var(--oro); }
.expd-pareja { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn--expd {
  margin-top: 4px;
  background: linear-gradient(135deg, #e5402a 0%, #b3301f 100%);
  color: var(--blanco);
  border-radius: 10px;
  padding: 15px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  box-shadow: 0 10px 22px -8px rgb(229 64 42 / 60%);
}
.btn--expd:hover { opacity: .94; color: var(--blanco); }
.btn--oro {
  background: transparent;
  border: 1px solid var(--oro);
  color: var(--cafe);
  border-radius: 10px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
}
.btn--oro:hover { background: var(--crema-suave); color: var(--cafe); }

@media (max-width: 900px) {
  .expd-rejilla { grid-template-columns: 1fr; gap: 28px; }
  .expd-tarjeta { position: static; }
}
@media (max-width: 640px) {
  .exp-escena__cuerpo, .exp-reserva__cuerpo { padding: 96px 20px; }
  .exp-escena--der .exp-escena__texto { text-align: left; }
  .exp-escena--der .exp-pastillas { justify-content: flex-start; }
  .expd-pareja, .exp-pareja-osc { grid-template-columns: 1fr; }
}

/* ============================================================
   Sección Próximos viajes · clon del prototipo "Tienda"
   Fondo crema y tipografía Raleway, pero conserva la cabecera
   blanca y el tabbar rojo del sitio (así es el prototipo).
   Se activa con body.tema-viajes que index.php pone sólo en
   /viajes: ninguna otra pantalla cambia. Sin !important.
   ============================================================ */

body.tema-viajes {
  --fuente: "Raleway", ui-sans-serif, system-ui, sans-serif;
  background: #faf8f4;
  color: #1a1a1a;
}

.viajes-envoltura { max-width: 1200px; margin: 0 auto; padding: 40px 20px 80px; }

.viajes-cabecera { text-align: center; margin-bottom: 40px; }
.viajes-cabecera h1 {
  font-family: var(--fuente-display);
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 6px;
  letter-spacing: -.01em;
}
.viajes-cabecera p {
  font-size: clamp(15px, 4vw, 18px);
  color: #6b5636;
  max-width: 620px;
  margin: 0 auto;
}

.viajes-rejilla {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* La envoltura sostiene los botones de favorito fuera del enlace */
.viajes-rejilla > .tarjeta-envoltura { width: auto; }

.viaje-tarjeta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece5d8;
  border-radius: 16px;
  box-shadow: 0 8px 24px -18px rgb(0 0 0 / 40%);
  color: inherit;
  height: 100%;
  transition: box-shadow .3s ease;
}
.tarjeta-envoltura:hover .viaje-tarjeta { box-shadow: 0 22px 40px -24px rgb(0 0 0 / 45%); }

.viaje-tarjeta__foto {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #f1e9dc 0, #f1e9dc 14px, #e7dcc7 14px, #e7dcc7 28px);
}
.viaje-tarjeta__foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Insignia sobre la foto (arriba-izquierda) */
.viaje-etiqueta {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rojo);
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 1px 3px rgb(0 0 0 / 25%);
}

/* Cintas inferiores de la foto */
.viaje-cinta {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
}
.viaje-cinta--cotizable { right: 12px; background: rgb(212 175 55 / 95%); color: #1a1a1a; }
.viaje-cinta--agotado   { left: 12px; background: #111827; color: #fff; font-weight: 700; }

.viaje-tarjeta__cuerpo { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.viaje-tarjeta__titulo {
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.viaje-fecha {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--rojo);
  font-weight: 600;
  font-size: 13.5px;
  margin: 0 0 10px;
}
.viaje-fecha svg { flex-shrink: 0; }
.viaje-tarjeta__texto {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Precio */
.viaje-precio { margin-bottom: 14px; }
.viaje-precio strong { font-weight: 700; font-size: 16px; color: #1a1a1a; }
.viaje-precio--promo { display: flex; align-items: baseline; gap: 8px; }
.viaje-precio--promo .ahora { font-weight: 800; font-size: 16px; color: #dc2626; }
.viaje-precio--promo .antes { font-weight: 600; font-size: 14px; color: #9ca3af; text-decoration: line-through; }
.viaje-precio--cotiza { font-weight: 700; font-size: 16px; color: #1a1a1a; }
.viaje-quedan { margin: -6px 0 12px; color: #b45309; font-size: 13px; font-weight: 700; }

/* Fila de acción: un botón a lo ancho */
.viaje-accion { margin-top: auto; border-top: 1px solid #f3f4f6; padding-top: 14px; }
.viaje-boton {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 12px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}
.viaje-boton svg { flex-shrink: 0; }
.viaje-boton--reservar { background: var(--rojo); color: #fff; }
.tarjeta-envoltura:hover .viaje-boton--reservar { background: var(--rojo-osc); }
.viaje-boton--cotizar { background: #1a1a1a; color: #fff; }
.viaje-boton--agotado { background: #e5e7eb; color: #6b7280; }

/* ============================================================
   Flotilla · Revista (clon del prototipo "Revista Flotilla")
   Cuadernillo en escritorio, pósters verticales en móvil.
   Conserva la cabecera blanca y el tabbar rojo del sitio.
   Se activa con body.tema-flotilla (sólo /flotilla). Sin !important.
   ============================================================ */

body.tema-flotilla {
  --fuente: "Raleway", ui-sans-serif, system-ui, sans-serif;
  --oro: #d4af37;
  --oro-osc: #c69a2f;
  --crema-hoja: #fbf8f2;
  background: #14110d;
  color: #1a1a1a;
}

/* Volteo de página en 3D */
@keyframes rf-flip-next {
  0%   { opacity: 0; transform: perspective(2400px) rotateY(-42deg) translateX(-3%); box-shadow: -30px 0 50px -20px rgb(0 0 0 / 50%); }
  100% { opacity: 1; transform: perspective(2400px) rotateY(0) translateX(0); box-shadow: 0 0 0 rgb(0 0 0 / 0%); }
}
@keyframes rf-flip-prev {
  0%   { opacity: 0; transform: perspective(2400px) rotateY(42deg) translateX(3%); box-shadow: 30px 0 50px -20px rgb(0 0 0 / 50%); }
  100% { opacity: 1; transform: perspective(2400px) rotateY(0) translateX(0); box-shadow: 0 0 0 rgb(0 0 0 / 0%); }
}
@keyframes rf-flota { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* Escenario oscuro */
.rf-escena {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: radial-gradient(120% 90% at 50% 0%, #2a241c 0%, #14110d 60%, #0d0b08 100%);
  overflow: hidden;
}

/* ---------- Cuadernillo (escritorio) ---------- */
.rf-libro {
  position: relative;
  width: 100%;
  max-width: 1040px;
  aspect-ratio: 16 / 10;
  margin: auto;
}
.rf-superficie {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 40px 90px -30px rgb(0 0 0 / 85%);
  background: #f7f3ec;
  overflow: hidden;
}
.rf-hoja { position: absolute; inset: 0; display: flex; transform-style: preserve-3d; }
.rf-hoja:not(.es-activa) { display: none; }

.rf-pagina { position: relative; flex: 1 1 50%; min-width: 0; height: 100%; overflow: hidden; background: var(--crema-hoja); }

/* Página oscura (portada / contraportada) */
.rf-pagina--oscura {
  background: linear-gradient(150deg, #201a12 0%, #0e0b07 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 52px);
}
.rf-pagina--centrada { align-items: center; justify-content: center; gap: 10px; }
.rf-glow { position: absolute; inset: 0; pointer-events: none; }
.rf-glow--tl { background: radial-gradient(70% 55% at 30% 30%, rgb(212 175 55 / 16%) 0%, transparent 60%); }
.rf-glow--br { background: radial-gradient(70% 55% at 70% 60%, rgb(212 175 55 / 16%) 0%, transparent 60%); }

.rf-kicker {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--oro);
}
.rf-kicker--sm { font-size: 11px; letter-spacing: .26em; }
.rf-kicker--cafe { color: var(--oro-osc); font-size: 11px; letter-spacing: .28em; }

.rf-portada-titulo {
  position: relative;
  font-family: var(--fuente-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 54px);
  color: #fff;
  margin: 0;
  line-height: .98;
  letter-spacing: -.01em;
}
.rf-portada-desde {
  font-family: var(--fuente-display);
  font-style: italic;
  font-size: clamp(15px, 2.2vw, 20px);
  color: #e9d9b0;
  margin: 10px 0 0;
}

/* Índice de la portada */
.rf-indice { position: relative; width: 100%; }
.rf-indice__cabeza { display: flex; align-items: center; gap: 12px; margin: 0 0 10px; }
.rf-indice__linea { flex: 1; height: 1px; background: rgb(212 175 55 / 35%); }
.rf-indice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 9px 2px;
  cursor: pointer;
  font-family: inherit;
  color: rgb(255 255 255 / 82%);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: color .2s ease;
}
.rf-indice__item:hover { color: #fff; }
.rf-indice__num { color: var(--oro); font-family: var(--fuente-display); }

/* Página de foto */
.rf-pagina--foto { background: var(--crema-hoja); }
.rf-pagina--foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rf-foto-vacia {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #efe7d6 0, #efe7d6 16px, #e4d9c2 16px, #e4d9c2 32px);
  color: #9c784f; font-size: 13px;
  font-family: ui-monospace, Menlo, monospace;
}
.rf-foto-pie {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 46px 26px 20px;
  background: linear-gradient(to top, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 25%) 55%, transparent 100%);
}
.rf-foto-pie__marca {
  display: block;
  font-family: var(--fuente-display);
  font-style: italic;
  font-size: 14px;
  color: #e9d9b0;
  letter-spacing: .04em;
}
.rf-foto-pie__modelo {
  display: block;
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  line-height: 1.05;
}

/* Página de detalle */
.rf-pagina--detalle {
  padding: clamp(22px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.rf-detalle-titulo {
  font-family: var(--fuente-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: #1a1a1a;
  margin: 8px 0 4px;
  line-height: 1.08;
}
.rf-detalle-marca { margin: 0 0 16px; font-size: 15px; color: #8a7654; font-weight: 600; }
.rf-regla { height: 2px; width: 54px; background: var(--oro); margin: 0 0 16px; }
.rf-capacidad { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.rf-capacidad__num { font-family: var(--fuente-display); font-weight: 800; font-size: 30px; color: #1a1a1a; }
.rf-capacidad__et { font-size: 13px; color: #9c8a68; text-transform: uppercase; letter-spacing: .1em; }
.rf-detalle-desc { font-size: 14.5px; line-height: 1.7; color: #4a463f; margin: 0 0 18px; text-wrap: pretty; }
.rf-amen-titulo { display: block; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #9c8a68; margin: 0 0 10px; }
.rf-amen { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; margin-bottom: 22px; }
.rf-amen__item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #3f3a33; }
.rf-check { display: inline-flex; color: var(--oro-osc); flex-shrink: 0; }
.rf-check svg { stroke-width: 2.5; }

/* Llamado a la acción rojo */
.rf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--rojo);
  color: #fff;
  padding: 11px 24px;
  border: none;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.rf-cta:hover { background: var(--rojo-osc); color: #fff; }

/* Página de cierre */
.rf-pagina--cierre {
  background: var(--crema-hoja);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 52px);
}
.rf-pagina--cierre .rf-cta { align-self: center; padding: 13px 28px; font-size: 15px; }
.rf-cierre-titulo { font-family: var(--fuente-display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); color: #1a1a1a; margin: 0; }
.rf-cierre-texto { font-size: 14.5px; line-height: 1.7; color: #4a463f; margin: 0; max-width: 320px; }
.rf-cierre-marca { position: relative; font-family: var(--fuente-display); font-weight: 800; font-size: clamp(26px, 4vw, 40px); color: #fff; }

/* Flechas de navegación */
.rf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  border: 1px solid rgb(212 175 55 / 50%);
  background: rgb(20 17 13 / 90%);
  color: #e9d9b0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgb(0 0 0 / 70%);
  transition: background .2s ease, color .2s ease;
}
.rf-nav:hover { background: #241d13; color: #f6e6bf; }
.rf-nav--prev { left: -18px; }
.rf-nav--next { right: -18px; }

/* Puntos indicadores */
.rf-puntos { display: flex; align-items: center; gap: 12px; margin-top: 14px; flex-shrink: 0; }
.rf-punto {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgb(233 217 176 / 35%);
  transition: all .3s ease;
}
.rf-punto.es-activo { width: 26px; background: var(--oro); }

/* La vista móvil no se muestra en escritorio */
.rf-movil { display: none; }

/* ---------- Pósters verticales (teléfono y tableta) ---------- */
@media (max-width: 1024px) {
  .rf-escena { display: block; min-height: 0; padding: 0; background: linear-gradient(180deg, #efe9dc 0%, #e4dccb 100%); }
  .rf-libro, .rf-puntos { display: none !important; }
  .rf-movil { display: block; }

  .rf-poster {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 34px 20px 40px;
    border-bottom: 1px solid rgb(28 23 18 / 10%);
  }
  .rf-poster__idx {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--fuente-display);
    font-size: 13px;
    letter-spacing: .2em;
    color: #6b5f4c;
  }
  .rf-poster__marca {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: #6b5f4c;
    padding-left: .42em;
  }
  .rf-poster__foto {
    display: block;
    width: 100%;
    max-width: 460px;
    height: 38vh;
    animation: rf-flota 7.5s ease-in-out infinite;
    will-change: transform;
  }
  .rf-poster__foto img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 30px rgb(0 0 0 / 45%));
  }
  .rf-poster__foto .rf-foto-vacia { border-radius: 10px; }
  .rf-poster__modelo {
    font-family: var(--fuente-display);
    font-weight: 800;
    font-size: clamp(30px, 9vw, 46px);
    color: #1c1712;
    margin: 0;
    line-height: 1;
    letter-spacing: -.01em;
  }
  .rf-poster__cap {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    border: 1px solid rgb(28 23 18 / 12%);
    color: #1c1712;
    border-radius: 9999px;
    padding: 5px 14px;
    font-weight: 600;
    font-size: 13px;
  }
  .rf-poster__cap strong { font-family: var(--fuente-display); color: #b07c2e; font-size: 15px; }
  .rf-poster__desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6b5f4c;
    margin: 0;
    max-width: 380px;
    text-wrap: pretty;
  }
  .rf-poster .rf-cta { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .rf-hoja { animation: none !important; }
  .rf-poster__foto { animation: none; }
}

/* ============================================================
   Tour Detalle · clon del prototipo "Tour Detalle"
   Hero póster (Oswald), barra de boletos y checkout en modal
   bottom-sheet de 5 pasos. Conserva la cabecera blanca del sitio.
   ============================================================ */

:root { --oswald: "Oswald", var(--fuente); }

/* ---------- Hero póster ---------- */
.td-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 22px 50px -24px rgb(30 21 51 / 60%);
}
.td-hero__fondo {
  position: relative;
  padding: 58px 24px 42px;
  text-align: center;
  background: radial-gradient(130% 140% at 50% -25%, #3c2453 0%, #2a1633 55%, #1f0f28 100%);
}
.td-hero__fondo--foto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(31 15 40 / 30%) 0%, rgb(31 15 40 / 55%) 55%, rgb(31 15 40 / 86%) 100%);
}
.td-hero__fondo > * { position: relative; }
.td-hero__titulo {
  font-family: var(--oswald);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: .9;
  letter-spacing: .01em;
  font-size: clamp(38px, 9vw, 88px);
}
.td-hero__anio { color: #f2932a; }
.td-hero__sub {
  color: #e7dcf2;
  font-size: clamp(14px, 2.4vw, 21px);
  margin: 18px 0 0;
  font-weight: 500;
  text-wrap: pretty;
}

/* ---------- Barra de boletos ---------- */
.td-barra {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 14px 34px -18px rgb(0 0 0 / 30%);
  border: 1px solid #f0eef2;
}
.td-barra__cinta {
  background: #2a1633;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.td-barra__titulo { font-weight: 700; font-size: 20px; letter-spacing: .1em; color: #fff; text-transform: uppercase; }
.td-barra__titulo--agotado { font-family: var(--oswald); text-decoration: line-through; text-decoration-color: #dc2626; text-decoration-thickness: 3px; }
.td-barra__ruta { font-family: var(--oswald); font-weight: 600; font-size: clamp(14px, 2vw, 17px); letter-spacing: .06em; color: #6fd0e8; text-transform: uppercase; }
.td-barra__fecha { font-family: var(--oswald); font-weight: 600; font-size: clamp(13px, 1.8vw, 16px); letter-spacing: .06em; color: #f2c98a; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; }

.td-barra__card {
  background: #fff;
  padding: clamp(18px, 3vw, 24px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  flex-wrap: wrap;
  border-top: 1px solid #f0eef2;
}
.td-barra__horas { display: flex; gap: clamp(20px, 3vw, 36px); flex-wrap: wrap; }
.td-barra__et { font-size: 12px; font-weight: 800; letter-spacing: .12em; color: #9ca3af; text-transform: uppercase; margin: 0 0 4px; }
.td-barra__hora { font-size: 20px; font-weight: 800; color: #1e1533; margin: 0; }
.td-barra__dia { font-size: 14px; color: #9ca3af; margin: 2px 0 0; font-weight: 700; }
.td-barra__serv { display: flex; align-items: center; gap: 12px; color: #7c3f9e; flex-wrap: wrap; }
.td-barra__pago { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 28px); margin-left: auto; flex-wrap: wrap; }
.td-barra__precio { text-align: center; }
.td-barra__antes { font-size: 15px; color: #9ca3af; text-decoration: line-through; font-weight: 700; }
.td-barra__ahora-fila { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 2px 0 0; }
.td-barra__ahora { font-family: var(--oswald); font-size: clamp(30px, 4.5vw, 38px); font-weight: 800; color: #dc2626; letter-spacing: -.01em; }
.td-barra__desc-badge { background: #dc2626; color: #fff; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 9999px; }
.td-barra__usd { font-size: 14px; color: #39393b; margin: 4px 0 0; font-weight: 600; }
.td-barra__btn {
  background: var(--rojo);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.td-barra__btn:hover { opacity: .9; color: #fff; }
.td-barra__btn:disabled { opacity: .5; cursor: not-allowed; }

@media (max-width: 680px) {
  .td-barra__card { flex-direction: column; align-items: center; text-align: center; }
  .td-barra__horas, .td-barra__serv { width: 100%; justify-content: center; }
  .td-barra__pago { margin-left: 0; width: 100%; flex-direction: column; gap: 14px; }
  .td-barra__btn { width: 100%; }
}

/* ============================================================
   Checkout · modal bottom-sheet de 5 pasos
   ============================================================ */
.co-fondo {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 55%);
  z-index: 120;
  opacity: 0;
  transition: opacity .25s ease;
}
.co-hoja {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 121;
  margin: 0 auto;
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 22px 22px 0 0;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -20px 60px -20px rgb(0 0 0 / 35%);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.co[hidden] { display: none; }
.co.es-abierto .co-fondo { opacity: 1; }
.co.es-abierto .co-hoja { transform: translateY(0); }

.co-encabezado {
  padding: 18px 24px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.co-encabezado h3 { font-size: 18px; font-weight: 700; color: #111827; margin: 0; }
.co-cerrar {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-cerrar:hover { background: #e5e7eb; }

/* Temporizador de reservación (5 min, color guinda) */
.co-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgb(122 31 58 / 8%);
  border-bottom: 1px solid rgb(122 31 58 / 16%);
  color: #7a1f3a;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.co-timer svg { flex-shrink: 0; }
.co-timer strong { font-weight: 800; font-size: 14px; font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.co-timer.es-urgente { background: rgb(122 31 58 / 15%); animation: coLatir 1s ease-in-out infinite; }
.co-timer[hidden] { display: none; }
@keyframes coLatir { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

/* Alerta del checkout (p. ej. tiempo agotado) */
.co-alerta {
  padding: 12px 16px;
  background: #fef2f2;
  border-bottom: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  flex-shrink: 0;
}
.co-alerta[hidden] { display: none; }

.co-cuerpo { overflow-y: auto; flex: 1; padding: 24px; padding-bottom: 40px; }

/* Stepper */
.co-pasos { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.co-paso { display: flex; align-items: center; gap: 8px; flex-grow: 1; }
.co-paso__num {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: #f3f4f6;
  color: #9ca3af;
}
.co-paso__label { font-size: 12px; font-weight: 600; color: #9ca3af; white-space: nowrap; }
.co-paso__barra { flex-grow: 1; height: 2px; background: #e5e7eb; }
.co-paso.es-activo .co-paso__num { background: var(--rojo); color: #fff; }
.co-paso.es-activo .co-paso__label { color: #111827; }
.co-paso.es-hecho .co-paso__num { background: #16a34a; color: #fff; }
.co-paso.es-hecho .co-paso__label { color: #374151; }
.co-paso.es-hecho .co-paso__barra { background: #16a34a; }
@media (max-width: 560px) { .co-paso__label { display: none; } }

.co-panel { display: flex; flex-direction: column; gap: 16px; }
.co-panel[hidden] { display: none; }
.co-panel[data-paso] { animation: coDeslizar .34s cubic-bezier(.22,1,.36,1) both; }
@keyframes coDeslizar {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.co-panel h4 { font-size: 20px; font-weight: 800; color: #111827; margin: 4px 0 0; }
.co-info {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  align-items: center;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 13.5px;
}
.co-info svg { flex-shrink: 0; }
.co-resumen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #eef0f2;
  border-radius: 12px;
}
.co-resumen__fila { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #374151; }
.co-resumen__fila--titulo { font-weight: 700; color: #111827; }
.co-resumen__serv {
  display: flex; align-items: center; gap: 12px;
  color: #7c3f9e;
  padding-top: 8px;
  border-top: 1px solid #eef0f2;
  margin-top: 2px;
  flex-wrap: wrap;
}

/* Contador de lugares */
.co-contador { display: flex; align-items: center; gap: 16px; }
.co-contador__btn {
  width: 44px; height: 44px;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-contador__btn:hover:not(:disabled) { border-color: var(--rojo); color: var(--rojo); }
.co-contador__btn:disabled { opacity: .4; cursor: not-allowed; }
.co-contador__num { font-size: 22px; font-weight: 800; color: #111827; min-width: 40px; text-align: center; }
.co-label { font-size: 14px; font-weight: 600; color: #374151; }

.co-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 10px;
}
.co-total__monto { font-size: 22px; font-weight: 800; color: #111827; }
.co-total__usd { font-size: 12px; color: #6b7280; text-align: right; }

/* Botones del checkout */
.co-btn {
  width: 100%;
  background: var(--rojo);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.co-btn:hover { background: var(--rojo-osc); }
.co-btn:disabled { opacity: .6; cursor: not-allowed; }
.co-btn--sec {
  width: auto;
  flex-shrink: 0;
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 15px 22px;
  font-weight: 600;
}
.co-btn--sec:hover { background: #f9fafb; border-color: #9ca3af; }
.co-fila-btn { display: flex; gap: 12px; }
.co-fila-btn .co-btn { flex-grow: 1; }

/* Campos */
.co-campo { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: #374151; }
.co-campo input, .co-campo select, .co-campo textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  color: #111827;
}
.co-campo input:focus, .co-campo select:focus { outline: 2px solid rgb(229 64 42 / 35%); border-color: var(--rojo); }
.co-pareja { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Leyenda + mapa de asientos */
.co-leyenda { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.co-leyenda span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #4b5563; }
.co-leyenda i { width: 16px; height: 16px; border-radius: 4px; display: inline-block; }
.co-leyenda .i-sel { background: #16a34a; }
.co-leyenda .i-libre { background: #f3f4f6; border: 1px solid #d1d5db; }
.co-leyenda .i-vendido { background: #fee2e2; border: 1px solid #fca5a5; }

.co-mapa {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.co-mapa__frente {
  width: 100%;
  max-width: 300px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9ca3af;
  padding-bottom: 8px;
  border-bottom: 2px dashed #e5e7eb;
}
.co-mapa__rejilla {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 300px;
  width: 100%;
}
.co-asiento {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f3f4f6;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease;
}
.co-asiento:hover:not(:disabled) { transform: scale(1.06); border-color: #16a34a; }
.co-asiento.es-sel { background: #16a34a; border-color: #16a34a; color: #fff; }
.co-asiento.es-vendido { background: #fee2e2; border-color: #fca5a5; color: #b91c1c; cursor: not-allowed; }
.co-asiento--pasillo { visibility: hidden; cursor: default; }

/* Plano de asientos por unidad (SVG interactivo) */
.co-plano { display: block; width: 100%; max-width: 300px; height: auto; margin: 0 auto; }
.co-plano .carroceria { fill: none; stroke: #f97316; stroke-width: 2; }
.co-plano .frente { fill: #f97316; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.co-plano .divisor { stroke: #e5e7eb; stroke-width: 2; stroke-dasharray: 4 4; }
.co-plano .cabina rect { fill: #f1f5f9; stroke: #e2e8f0; stroke-width: 1.5; }
.co-plano .cabina text { fill: #94a3b8; font-size: 10px; font-weight: 600; }
.co-plano .asiento rect { fill: #fff; stroke: #cbd5e1; stroke-width: 1.5; cursor: pointer; transition: fill .15s, stroke .15s; }
.co-plano .asiento text { fill: #475569; font-size: 15px; font-weight: 700; pointer-events: none; }
.co-plano .asiento:hover rect { fill: #fde8e4; stroke: #16a34a; }
.co-plano .asiento.es-sel rect { fill: #16a34a; stroke: #16a34a; }
.co-plano .asiento.es-sel text { fill: #fff; }
.co-plano .asiento.es-vendido rect { fill: #fee2e2; stroke: #fca5a5; cursor: not-allowed; }
.co-plano .asiento.es-vendido text { fill: #f87171; }
.co-error { color: #dc2626; font-size: 14px; margin: 0; text-align: center; font-weight: 500; }

/* Tarjeta de pasajero */
.co-pax {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.co-pax__titulo { font-size: 14px; font-weight: 700; color: #111827; margin: 0; display: flex; align-items: center; gap: 8px; }
.co-pax__asiento { font-size: 12px; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 2px 8px; border-radius: 9999px; }
.co-pax input { padding: 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 16px; font-family: inherit; }
.co-pax input:focus { outline: 2px solid rgb(229 64 42 / 35%); border-color: var(--rojo); }

/* Desglose de pago */
.co-desglose { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.co-desglose__fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.co-desglose__fila:last-child { border-bottom: none; }
.co-desglose__fila span:first-child { color: #4b5563; }
.co-desglose__fila--desc span { color: #16a34a; font-weight: 600; }
.co-desglose__fila--total { background: #fafafa; }
.co-desglose__fila--total span { color: #111827; font-weight: 800; }
.co-desglose__fila--total span:last-child { font-size: 18px; }

.co-consent { display: flex; flex-direction: column; gap: 10px; }
.co-consent label { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #374151; cursor: pointer; }
.co-consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--rojo); cursor: pointer; flex-shrink: 0; }
.co-consent a { color: var(--rojo); font-weight: 600; }

.co-tarjeta-pago {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fafafa;
}
.co-tarjeta-pago__cabeza { display: flex; align-items: center; justify-content: space-between; }
.co-tarjeta-pago__cabeza strong:first-child { font-size: 14px; color: #111827; }
.co-tarjeta-pago__stripe { font-size: 12px; color: #6b7280; }
.co-tarjeta-pago__stripe strong { color: #635bff; }
.co-demo { display: flex; gap: 10px; padding: 12px 14px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; font-size: 13px; color: #92400e; }

/* Paso Listo · boleto */
.co-listo { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.co-listo__check {
  width: 72px; height: 72px;
  border-radius: 9999px;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-listo h4 { font-size: 22px; font-weight: 800; color: #111827; margin: 0; }
.co-listo__nota { font-size: 15px; color: #6b7280; margin: 0; }

.co-boleto {
  width: 100%;
  max-width: 420px;
  background: #f3ede0;
  border: 1px solid #e4d9c2;
  border-radius: 14px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 10px 30px -18px rgb(0 0 0 / 40%);
}
.co-boleto__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.co-boleto__top img { height: 30px; width: auto; }
.co-boleto__tag { font-family: var(--fuente-display); font-size: 12px; letter-spacing: .12em; color: #7c2d12; font-weight: 700; text-transform: uppercase; }
.co-boleto__titulo { font-family: var(--fuente-display); font-weight: 800; font-size: clamp(24px, 6vw, 32px); color: #7c2d12; margin: 0 0 12px; line-height: 1.05; text-transform: uppercase; }
.co-boleto__datos { font-size: 13.5px; color: #4a463f; line-height: 1.6; margin: 0 0 12px; }
.co-boleto__datos strong { color: #1a1a1a; }
.co-boleto__regla { height: 3px; width: 44px; background: #7c2d12; margin: 0 0 12px; }
.co-boleto__asiento { font-family: var(--fuente-display); font-weight: 800; font-size: 22px; color: #1a1a1a; margin: 0 0 12px; }
.co-boleto__linea { border: none; border-top: 1px dashed #b9ad93; margin: 12px 0; }
.co-boleto__barras { height: 62px; width: 100%; }
.co-boleto__codigo { text-align: center; font-family: ui-monospace, Menlo, monospace; letter-spacing: .25em; font-size: 13px; color: #4a463f; margin: 8px 0 0; }
.co-btn--oscuro { background: #1e1533; }
.co-btn--oscuro:hover { background: #0f0a1c; }
