/* ============================================================
   Cenote Xcajum — Hoja de estilos principal
   Design tokens PROVISIONALES (paleta cenote) — la fase de
   diseño UI los refinará. Prefijo: cx- (BEM, patrón ProArt).
   ============================================================ */

:root {
  /* Paleta — inspirada en el cenote: agua, selva, piedra caliza, sol */
  --cx-agua:        #0E7C86;   /* turquesa profundo (acento principal) */
  --cx-agua-claro:  #17A2B0;   /* turquesa claro (hovers) */
  --cx-agua-oscuro: #0B4F5C;   /* agua profunda (fondos dark) */
  --cx-selva:       #2E5D3F;   /* verde selva */
  --cx-caliza:      #F4EFE6;   /* piedra caliza / crema (fondo) */
  --cx-sol:         #D9A441;   /* dorado sol (acento secundario) */
  --cx-tinta:       #14232A;   /* texto principal */
  --cx-blanco:      #FFFFFF;
  --cx-whatsapp:    #25D366;

  /* Marca "Emociones Xcajum" (extraídos del logo) — señalización de actividades */
  --cx-rojo:        #D02030;   /* badges "popular", promos */
  --cx-naranja:     #E8813F;   /* Aventura / ATV */
  --cx-amarillo:    #EED410;   /* Comida / Buffet */
  --cx-lima:        #A8C838;   /* Naturaleza */
  --cx-azul:        #42A0D8;   /* Nado / Cenote */
  --cx-rosa:        #F2A9AC;   /* Eventos románticos */

  /* Tipografía (mismo par que ProArt; se revisará en diseño) */
  --cx-font-display: 'Cormorant Garamond', Georgia, serif;
  --cx-font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaciado y radios */
  --cx-radius:     14px;
  --cx-radius-lg:  24px;
  --cx-section-py: clamp(3rem, 8vw, 5.5rem);

  /* Movimiento y profundidad (rediseño "cenote vivo") */
  --cx-ease:     cubic-bezier(.22, .8, .3, 1);
  --cx-sombra-1: 0 2px 12px rgba(20,35,42,.07);
  --cx-sombra-2: 0 18px 44px rgba(11,79,92,.16);
}

/* ── Base ──────────────────────────────────────────────────── */
body {
  font-family: var(--cx-font-body);
  color: var(--cx-tinta);
  background: var(--cx-caliza);
  margin: 0;
}
h1, h2, h3, .cx-hero__title, .cx-section__title { font-family: var(--cx-font-display); }

.cx-skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--cx-agua); color: var(--cx-blanco);
  padding: .5rem 1rem; z-index: 1000;
}
.cx-skip-link:focus { left: 0; }

.cx-kicker {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; font-weight: 700; color: var(--cx-agua);
  margin-bottom: .5rem;
}

/* ── Botones ───────────────────────────────────────────────── */
.cx-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.4rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 2px solid transparent;
  transition: transform .18s var(--cx-ease), box-shadow .18s var(--cx-ease), background .18s ease;
}
.cx-btn:hover { transform: translateY(-2px); }
/* Destello que barre el botón al pasar el cursor (solo botones sólidos) */
.cx-btn--primary::after, .cx-btn--whatsapp::after, .cx-btn--reserva::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.38) 50%, transparent 68%);
  transform: translateX(-130%); transition: transform .05s;
}
.cx-btn--primary:hover::after, .cx-btn--whatsapp:hover::after, .cx-btn--reserva:hover::after {
  transform: translateX(130%); transition: transform .65s ease;
}
.cx-btn--lg { padding: .95rem 1.8rem; font-size: 1.04rem; }
.cx-btn--primary  { background: var(--cx-agua); color: var(--cx-blanco); box-shadow: 0 6px 18px rgba(14,124,134,.3); }
.cx-btn--primary:hover { background: var(--cx-agua-claro); color: var(--cx-blanco); box-shadow: 0 10px 24px rgba(14,124,134,.38); }
.cx-btn--whatsapp { background: var(--cx-whatsapp); color: #073B27; box-shadow: 0 6px 18px rgba(37,211,102,.32); }
.cx-btn--whatsapp:hover { filter: brightness(1.05); color: #073B27; box-shadow: 0 10px 24px rgba(37,211,102,.4); }
.cx-btn--whatsapp small { display: block; font-weight: 500; font-size: .72rem; }
/* CTA del flujo de reserva (carrito → checkout): turquesa de marca, NO verde WhatsApp */
.cx-btn--reserva {
  background: linear-gradient(135deg, var(--cx-agua), var(--cx-agua-oscuro));
  color: var(--cx-blanco); box-shadow: 0 4px 14px rgba(14,124,134,.28);
}
.cx-btn--reserva:hover { filter: brightness(1.08); color: var(--cx-blanco); }
.cx-btn--ghost { background: transparent; color: var(--cx-blanco); border-color: rgba(255,255,255,.75); }
.cx-btn--ghost:hover { background: rgba(255,255,255,.16); color: var(--cx-blanco); border-color: var(--cx-blanco); }
/* Ghost para fondos CLAROS (el blanco desaparece sobre caliza) */
.cx-btn--ghost-dark { background: transparent; color: var(--cx-agua-oscuro); border-color: rgba(11,79,92,.45); }
.cx-btn--ghost-dark:hover { background: rgba(14,124,134,.1); color: var(--cx-agua-oscuro); border-color: var(--cx-agua-oscuro); }

/* ── Nav ───────────────────────────────────────────────────── */
.cx-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cx-blanco);
  box-shadow: 0 1px 0 rgba(20,35,42,.08);
}
.cx-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.cx-nav__logo { display: inline-flex; align-items: center; text-decoration: none; }
.cx-nav__logo img { height: 44px; width: auto; display: block; }
.cx-nav__links { display: flex; gap: 1.25rem; }
.cx-nav__link { color: var(--cx-tinta); text-decoration: none; font-weight: 500; }
.cx-nav__link:hover, .cx-nav__link.is-active { color: var(--cx-agua); }
.cx-nav__right { display: flex; align-items: center; gap: .75rem; }
.cx-nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.cx-nav__burger span { display: block; width: 22px; height: 2px; background: var(--cx-tinta); margin: 5px 0; transition: .2s; }

/* ── Dropdowns del nav (desktop) ───────────────────────────── */
.cx-nav__item { position: relative; display: inline-flex; }
.cx-nav__item .cx-nav__link { display: inline-flex; align-items: center; gap: .3rem; }
.cx-drop, .cx-mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--cx-blanco); border-radius: 14px;
  box-shadow: 0 14px 40px rgba(20,35,42,.18);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
  z-index: 120;
}
.cx-nav__item:hover > .cx-drop, .cx-nav__item:focus-within > .cx-drop,
.cx-nav__item:hover > .cx-mega, .cx-nav__item:focus-within > .cx-mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
/* Puente invisible para no perder el hover entre link y panel */
.cx-drop::before, .cx-mega::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }

.cx-drop { min-width: 230px; padding: .5rem; }
.cx-drop a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  color: var(--cx-tinta); text-decoration: none; font-size: .92rem; white-space: nowrap;
}
.cx-drop a:hover { background: var(--cx-caliza); color: var(--cx-agua); }
.cx-drop__todo {
  margin-top: .3rem; border-top: 1px solid rgba(20,35,42,.08);
  color: var(--cx-agua) !important; font-weight: 700; font-size: .86rem;
}

.cx-mega { padding: 1.2rem 1.3rem 1rem; width: min(640px, calc(100vw - 2rem)); }
/* Columnas de altura pareja: nº de columnas dinámico (--mega-cols); las
   categorías chicas se apilan en la misma columna (empaquetado en PHP). */
.cx-mega__cols { display: grid; grid-template-columns: repeat(var(--mega-cols, 3), 1fr); gap: 1rem 1.3rem; align-items: start; }
@media (max-width: 620px) { .cx-mega__cols { grid-template-columns: repeat(2, 1fr); } }
.cx-mega__grp + .cx-mega__grp { margin-top: 1.1rem; }
/* La 2ª+ categoría apilada no necesita reservar 2 líneas de título */
.cx-mega__grp:not(:first-child) .cx-mega__cat { height: auto; }
.cx-mega__cat {
  /* Altura FIJA para el título (reserva 2 líneas) + texto pegado abajo →
     todos los subrayados de color quedan alineados a la misma altura */
  box-sizing: border-box;
  display: flex; align-items: flex-end;
  height: 3.5em; line-height: 1.25;
  font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; padding: .2rem 0 .45rem; margin-bottom: .3rem;
  border-bottom: 2.5px solid; color: var(--cx-tinta);
}
.cx-mega__cat--azul     { border-color: var(--cx-azul); }
.cx-mega__cat--naranja  { border-color: var(--cx-naranja); }
.cx-mega__cat--amarillo { border-color: var(--cx-amarillo); }
.cx-mega__cat--rosa     { border-color: var(--cx-rosa); }
.cx-mega__cat--lima     { border-color: var(--cx-lima); }
.cx-mega__cat:hover { color: var(--cx-agua); }
.cx-mega__prod {
  display: flex; align-items: center; gap: .6rem; padding: .4rem; margin: .1rem -.4rem 0;
  color: var(--cx-tinta); text-decoration: none; border-radius: 10px; transition: background .15s ease;
}
.cx-mega__prod:hover { background: var(--cx-caliza); }
.cx-mega__thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex: none; background: var(--cx-caliza); }
.cx-mega__prod-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.cx-mega__prod-title { font-size: .88rem; font-weight: 600; }
.cx-mega__prod:hover .cx-mega__prod-title { color: var(--cx-agua); }
.cx-mega__prod-price { font-size: .76rem; color: var(--cx-agua); font-weight: 700; }
.cx-mega__prod-price small { font-weight: 400; color: rgba(20,35,42,.5); }
/* Mega de Experiencias: más ancho para las filas con miniatura */
.cx-mega--exp { width: min(760px, calc(100vw - 2rem)); }
.cx-mega__todo {
  display: block; text-align: right; margin-top: .7rem; padding-top: .7rem;
  border-top: 1px solid rgba(20,35,42,.08);
  color: var(--cx-agua); font-weight: 700; font-size: .88rem; text-decoration: none;
}

/* Anclaje a la izquierda: para megas de items cercanos al borde izquierdo del nav */
.cx-mega--left { left: 0; transform: translateX(0) translateY(6px); }
.cx-nav__item:hover > .cx-mega--left, .cx-nav__item:focus-within > .cx-mega--left { transform: translateX(0) translateY(0); }

/* ── Mega de Entradas: tarjetas ricas (chip + descripción + precio) ── */
.cx-mega--entradas { width: min(700px, calc(100vw - 2rem)); padding: 1.1rem 1.1rem .85rem; }
.cx-emega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
@media (max-width: 640px) { .cx-emega__grid { grid-template-columns: 1fr; } }
.cx-emega__card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid rgba(20,35,42,.1); border-radius: 12px; overflow: hidden;
  text-decoration: none; color: var(--cx-tinta);
  transition: box-shadow .16s ease, transform .16s ease, border-color .16s ease;
}
.cx-emega__card:hover { box-shadow: 0 10px 24px rgba(20,35,42,.15); transform: translateY(-3px); border-color: transparent; }
.cx-emega__media { position: relative; aspect-ratio: 16 / 10; background: var(--cx-caliza); }
.cx-emega__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cx-emega__chip { position: absolute; top: .55rem; left: .55rem; }
.cx-emega__body { padding: .6rem .7rem .75rem; display: flex; flex-direction: column; flex: 1; }
.cx-emega__title { font-weight: 700; font-size: .92rem; line-height: 1.2; color: var(--cx-tinta); }
.cx-emega__text {
  margin-top: .25rem; font-size: .76rem; line-height: 1.35; color: rgba(20,35,42,.66);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cx-emega__price { margin-top: auto; padding-top: .4rem; font-size: .85rem; font-weight: 700; color: var(--cx-agua); }
.cx-emega__price small { font-weight: 500; color: rgba(20,35,42,.5); }
.cx-emega__cta {
  margin-top: .4rem; font-size: .78rem; font-weight: 700; color: var(--cx-agua);
}
.cx-emega__card:hover .cx-emega__cta { text-decoration: underline; }

/* ── Menú móvil: acordeones ────────────────────────────────── */
.cx-mmenu { background: var(--cx-blanco); padding: .75rem 1.25rem 1.5rem; border-top: 1px solid rgba(20,35,42,.08); max-height: calc(100vh - 64px); overflow-y: auto; }
.cx-mmenu__link, .cx-mmenu__grupo > summary {
  display: flex; align-items: center; gap: .5rem;
  color: var(--cx-tinta); text-decoration: none;
  font-weight: 700; font-size: 1.05rem;
  padding: .8rem 0; border-bottom: 1px solid rgba(20,35,42,.07);
  cursor: pointer; list-style: none;
}
.cx-mmenu__grupo > summary::-webkit-details-marker, .cx-mmenu__sub > summary::-webkit-details-marker { display: none; }
.cx-mmenu__grupo > summary::after, .cx-mmenu__sub > summary::after {
  content: ''; margin-left: auto; width: 9px; height: 9px;
  border-right: 2.5px solid var(--cx-agua); border-bottom: 2.5px solid var(--cx-agua);
  transform: rotate(45deg); transition: transform .2s ease;
}
.cx-mmenu__grupo[open] > summary::after, .cx-mmenu__sub[open] > summary::after { transform: rotate(-135deg); }
.cx-mmenu__panel { padding: .3rem 0 .5rem .6rem; }
.cx-mmenu__sub > summary {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .96rem; color: var(--cx-tinta);
  padding: .6rem 0; border-bottom: 1px solid rgba(20,35,42,.05);
  cursor: pointer; list-style: none;
}
.cx-mmenu__sub > summary small { color: rgba(20,35,42,.45); font-weight: 700; }
.cx-mmenu__dot { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.cx-mmenu__dot--azul     { background: var(--cx-azul); }
.cx-mmenu__dot--naranja  { background: var(--cx-naranja); }
.cx-mmenu__dot--amarillo { background: var(--cx-amarillo); }
.cx-mmenu__dot--rosa     { background: var(--cx-rosa); }
.cx-mmenu__dot--lima     { background: var(--cx-lima); }
.cx-mmenu__panel a {
  display: block; padding: .5rem 0 .5rem 1.2rem;
  color: rgba(20,35,42,.78); text-decoration: none; font-size: .93rem;
}
.cx-mmenu__panel a:active, .cx-mmenu__panel a:hover { color: var(--cx-agua); }
.cx-mmenu__todo { font-weight: 700; color: var(--cx-agua) !important; }

@media (max-width: 991px) {
  .cx-nav__links, .cx-nav__cta { display: none; }
  .cx-nav__burger { display: block; }
}
/* Móvil chico: switchers compactos (solo símbolo) para que el burger SIEMPRE quepa */
@media (max-width: 575px) {
  .cx-nav__inner { gap: .5rem; }
  .cx-nav__right { gap: .4rem; }
  .cx-nav__logo img { height: 38px; }
  .cx-lang-btn { padding: .32rem .5rem; gap: .3rem; }
  .cx-lang-btn .cx-lang-code { display: none; }
}

/* ── Switcher de idioma ───────────────────────────────────── */
/* Switch de moneda — MISMO patrón que idioma (reusa .cx-lang-*) + símbolo $ */
.cx-cur-sym {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.2rem; height: 1.2rem; border-radius: 50%; flex: none;
  background: var(--cx-caliza); color: var(--cx-agua); font-weight: 800; font-size: .72rem;
}
.cx-lang-btn .cx-lang-code { font-weight: 700; font-size: .82rem; }
.cx-lang-opt.is-active { background: var(--cx-caliza); }
.cx-cur-dd .cx-lang-list { min-width: 220px; }

.cx-lang-dd { position: relative; }
.cx-lang-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  background: none; border: 1px solid rgba(20,35,42,.15);
  border-radius: 999px; padding: .35rem .7rem; cursor: pointer; font-weight: 600;
}
.cx-lang-list {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--cx-blanco); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20,35,42,.15);
  min-width: 170px; padding: .35rem; display: none; z-index: 110;
}
.cx-lang-dd.is-open .cx-lang-list { display: block; }
.cx-lang-opt {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .6rem; border-radius: 8px;
  color: var(--cx-tinta); text-decoration: none; font-size: .92rem;
}
.cx-lang-opt:hover { background: var(--cx-caliza); }
.cx-lang-opt.is-disabled { opacity: .5; cursor: not-allowed; }
.cx-lang-soon { margin-left: auto; font-size: .7rem; color: var(--cx-agua); }
.cx-lang-check { margin-left: auto; color: var(--cx-agua); }

/* ── Hero ──────────────────────────────────────────────────── */
.cx-hero {
  position: relative; display: flex; align-items: center;
  min-height: min(78vh, 860px); background: var(--cx-agua-oscuro);
  background-size: cover; background-position: center;
  color: var(--cx-blanco); text-align: center;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}
/* Rayos de luz cayendo por la boca del cenote */
.cx-hero__luz {
  position: absolute; inset: -20% -10% 0; z-index: 1; pointer-events: none;
  background: conic-gradient(from 178deg at 62% -8%,
    transparent 38%, rgba(255,255,255,.14) 41%, transparent 44%,
    transparent 47%, rgba(23,162,176,.18) 50%, transparent 54%,
    transparent 57%, rgba(255,255,255,.1) 60%, transparent 63%);
  mix-blend-mode: screen;
  animation: cx-luz 16s ease-in-out infinite alternate;
}
@keyframes cx-luz {
  from { transform: rotate(-2.5deg) scale(1.04); opacity: .75; }
  to   { transform: rotate(2.5deg)  scale(1.1);  opacity: 1; }
}

/* Hero dinámico "cenote": slider crossfade + Ken Burns + ondas + burbujas.
   Las fotos anclan ABAJO (center bottom) para que siempre se vea el agua. */
.cx-hero__slides { position: absolute; inset: 0; }
.cx-hero__bg {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center bottom;
  transform-origin: center bottom;
  opacity: 0; transition: opacity 1.6s ease;
}
.cx-hero__bg.is-active {
  opacity: 1;
  animation: cx-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes cx-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
/* Olas de agua (compartidas: heros, bandas, facts) — cx2/heros/olas.php */
.cx-olas {
  position: absolute; left: 0; right: 0; bottom: -2px; z-index: 2;
  pointer-events: none; line-height: 0;
}
.cx-olas svg { width: 100%; height: 70px; display: block; }
.cx-olas--top { top: -2px; bottom: auto; transform: scaleY(-1); }
.cx-olas--sm svg { height: 44px; }
.cx-olas .ola-1 { animation: cx-ola 9s ease-in-out infinite alternate; }
.cx-olas .ola-2 { animation: cx-ola 13s ease-in-out infinite alternate-reverse; }
@keyframes cx-ola {
  from { transform: translateX(0); }
  to   { transform: translateX(-46px); }
}
.cx-burbujas { position: absolute; inset: 0; pointer-events: none; }
.cx-burbujas span {
  position: absolute; bottom: -24px;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  animation: cx-burbuja 11s linear infinite;
}
.cx-burbujas span:nth-child(1)  { left: 6%;  animation-duration: 12s; }
.cx-burbujas span:nth-child(2)  { left: 15%; width: 6px;  height: 6px;  animation-duration: 9s;   animation-delay: 2.5s; }
.cx-burbujas span:nth-child(3)  { left: 24%; width: 14px; height: 14px; animation-duration: 15s;  animation-delay: 1s; }
.cx-burbujas span:nth-child(4)  { left: 33%; animation-duration: 10s;  animation-delay: 4s; }
.cx-burbujas span:nth-child(5)  { left: 41%; width: 5px;  height: 5px;  animation-duration: 8.5s; animation-delay: 6s; }
.cx-burbujas span:nth-child(6)  { left: 50%; width: 12px; height: 12px; animation-duration: 13s;  animation-delay: 3s; }
.cx-burbujas span:nth-child(7)  { left: 58%; width: 8px;  height: 8px;  animation-duration: 11s;  animation-delay: 7.5s; }
.cx-burbujas span:nth-child(8)  { left: 66%; width: 16px; height: 16px; animation-duration: 16s;  animation-delay: 2s; }
.cx-burbujas span:nth-child(9)  { left: 74%; width: 6px;  height: 6px;  animation-duration: 9.5s; animation-delay: 5s; }
.cx-burbujas span:nth-child(10) { left: 82%; animation-duration: 12.5s; animation-delay: 8s; }
.cx-burbujas span:nth-child(11) { left: 89%; width: 7px;  height: 7px;  animation-duration: 10.5s; animation-delay: 1.5s; }
.cx-burbujas span:nth-child(12) { left: 95%; width: 13px; height: 13px; animation-duration: 14s;  animation-delay: 6.5s; }
@keyframes cx-burbuja {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: .9; }
  100% { transform: translateY(-78vh) translateX(18px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cx-hero__bg, .cx-olas .ola-1, .cx-olas .ola-2, .cx-burbujas span, .cx-hero__luz,
  .cx-hero__content > *, .cx-hero__scroll { animation: none !important; }
}
.cx-hero--service, .cx-hero--utility { min-height: 46vh; padding: 4rem 0; }
.cx-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,44,52,.42) 0%, rgba(11,79,92,.3) 40%, rgba(7,42,50,.72) 100%),
    radial-gradient(ellipse at 30% 85%, rgba(7,42,50,.55), transparent 60%);
}
.cx-hero__content { position: relative; z-index: 3; }
/* Entrada escalonada del contenido del hero (una sola coreografía al cargar) */
.cx-hero__content > * { animation: cx-surgir .85s var(--cx-ease) both; }
.cx-hero__content > :nth-child(2) { animation-delay: .12s; }
.cx-hero__content > :nth-child(3) { animation-delay: .24s; }
.cx-hero__content > :nth-child(4) { animation-delay: .38s; }
.cx-hero__content > :nth-child(5) { animation-delay: .52s; }
.cx-hero__content > :nth-child(6) { animation-delay: .66s; }
@keyframes cx-surgir {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.cx-hero__title { font-size: clamp(2.5rem, 6.5vw, 4.4rem); font-weight: 700; line-height: 1.02; margin: .35rem 0 .9rem; text-wrap: balance; text-shadow: 0 2px 30px rgba(4,28,34,.45); }
.cx-hero__title em { font-style: italic; color: #9FE8EF; }
.cx-hero__title a { color: inherit; text-decoration: none; }
.cx-hero__subtitle { font-size: clamp(1.02rem, 2.4vw, 1.22rem); max-width: 640px; margin: 0 auto 1.6rem; opacity: .94; line-height: 1.6; text-shadow: 0 1px 14px rgba(4,28,34,.5); }
.cx-hero__ctas { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cx-hero .cx-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--cx-sol);
  text-shadow: 0 1px 4px rgba(4,28,34,.55), 0 2px 18px rgba(4,28,34,.4);
}
.cx-hero .cx-kicker::before, .cx-hero .cx-kicker::after {
  content: ''; width: 30px; height: 8px; opacity: .85;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 8'%3E%3Cpath d='M0 4c4-4 8-4 12 0s8 4 12 0 6-3 8-1' fill='none' stroke='%23D9A441' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Badges de confianza del hero (rating, Chichén, horario) */
.cx-hero__badges {
  display: flex; gap: .55rem 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.5rem; padding: 0; list-style: none;
}
.cx-hero__badges li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .84rem; font-weight: 600; letter-spacing: .01em;
  padding: .42rem .95rem; border-radius: 999px;
  background: rgba(7,42,50,.35); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cx-hero__badges svg { color: #9FE8EF; flex: none; }
.cx-hero__badges .cx-star { font-size: .95rem; }

/* Indicador de scroll (gota que respira) */
.cx-hero__scroll {
  position: absolute; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.85); text-decoration: none; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
  animation: cx-flotar 2.6s ease-in-out infinite;
}
.cx-hero__scroll:hover { color: #fff; }
.cx-hero__scroll svg { display: block; }
@keyframes cx-flotar {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@media (max-height: 640px) { .cx-hero__scroll { display: none; } }

/* Hero de la HOME: asimétrico en desktop (contenido a la izquierda) */
@media (min-width: 992px) {
  .cx-hero--main { text-align: left; }
  .cx-hero--main .cx-hero__subtitle { margin-left: 0; max-width: 560px; }
  .cx-hero--main .cx-hero__ctas, .cx-hero--main .cx-hero__badges,
  .cx-hero--main .cx-hero__quicklinks { justify-content: flex-start; }
  .cx-hero--main .cx-hero__content { max-width: 780px; }
  .cx-hero--main .cx-hero__overlay {
    background:
      linear-gradient(100deg, rgba(7,42,50,.68) 8%, rgba(11,79,92,.34) 52%, rgba(11,79,92,.12) 78%),
      linear-gradient(180deg, rgba(11,44,52,.3) 0%, transparent 35%, rgba(7,42,50,.62) 100%);
  }
}

/* Hero LANDING (entradas / experiencias): rico pero centrado */
.cx-hero--landing { min-height: min(64vh, 640px); padding: 4.5rem 0 6rem; }
.cx-hero--landing .cx-hero__subtitle { margin-bottom: 1.4rem; }
.cx-hero__chips { display: flex; gap: .55rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.cx-hero__chips .cx-chip {
  padding: .45rem 1rem; font-size: .84rem;
  box-shadow: 0 6px 18px rgba(4,28,34,.35);
  transition: transform .18s var(--cx-ease), box-shadow .18s var(--cx-ease);
}
.cx-hero__chips .cx-chip:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 24px rgba(4,28,34,.45); }
.cx-hero__chips .cx-chip small { font-weight: 600; opacity: .8; }

/* ── Secciones ─────────────────────────────────────────────── */
.cx-section { padding: var(--cx-section-py) 0; }
.cx-section--compact { padding: clamp(1.5rem, 4vw, 2.5rem) 0; }
.cx-section--dark { background: var(--cx-agua-oscuro); color: var(--cx-blanco); }

/* Fondos de sección (para que la home no se vea plana) */
/* Bienvenida: lavados de color + anillos de agua + huellas de jaguar de la marca */
.cx-section--huellas {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 15%, rgba(168,200,56,.12), transparent 42%),
    radial-gradient(ellipse at 88% 85%, rgba(66,160,216,.14), transparent 42%),
    linear-gradient(180deg, #FBF8F1 0%, var(--cx-caliza) 100%);
}
.cx-section--huellas::before,
.cx-section--huellas::after {
  content: ''; position: absolute; pointer-events: none;
}
/* Anillos de agua en la esquina superior izquierda */
.cx-section--huellas::before {
  top: -230px; left: -180px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle,
    transparent 54%, rgba(14,124,134,.07) 55%, transparent 60%,
    transparent 68%, rgba(14,124,134,.05) 69%, transparent 74%,
    transparent 82%, rgba(14,124,134,.04) 83%, transparent 88%);
}
/* Huellas de jaguar cruzando la esquina inferior derecha */
.cx-section--huellas::after {
  right: -60px; bottom: 8px; width: 420px; height: 115px;
  background: url('../img/deco/huellas.png') center / contain no-repeat;
  opacity: .1; transform: rotate(-8deg);
}
.cx-section--huellas > * { position: relative; }
.cx-section--agua {
  background:
    linear-gradient(180deg, rgba(66,160,216,.12) 0%, rgba(23,162,176,.07) 45%, var(--cx-caliza) 100%);
}
.cx-section--selva {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(46,93,63,.12), transparent 50%),
    linear-gradient(180deg, #EDF3EA 0%, var(--cx-caliza) 90%);
}
.cx-section__head { margin-bottom: 2.5rem; }
.cx-section__title { font-size: clamp(1.8rem, 4.2vw, 2.7rem); font-weight: 700; margin-bottom: 1rem; text-wrap: balance; }
.cx-section__title em { font-style: italic; color: var(--cx-agua); }
/* Ola decorativa bajo el título de sección (solo en cabeceras centradas) */
.cx-section__head--ola .cx-section__title { margin-bottom: .4rem; }
.cx-section__head--ola::after {
  content: ''; display: block; width: 74px; height: 12px; margin: .35rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 12'%3E%3Cpath d='M1 8c6-7 12-7 18 0s12 7 18 0 12-7 18 0 10 5 18-2' fill='none' stroke='%230E7C86' stroke-width='2.4' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cx-intro__body { font-size: 1.06rem; line-height: 1.7; margin-bottom: 1.5rem; }
/* La intro no usa .cx-section__head: la ola va pegada a su título */
.cx-intro .cx-section__title::after {
  content: ''; display: block; width: 74px; height: 12px; margin: .55rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 12'%3E%3Cpath d='M1 8c6-7 12-7 18 0s12 7 18 0 12-7 18 0 10 5 18-2' fill='none' stroke='%230E7C86' stroke-width='2.4' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Reveals al hacer scroll (main.js añade .is-inview) ────── */
.cx-js [data-cx-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--cx-ease), transform .7s var(--cx-ease);
  transition-delay: var(--d, 0s);
}
.cx-js [data-cx-reveal].is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .cx-js [data-cx-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Features */
.cx-feature {
  position: relative; overflow: hidden;
  background: var(--cx-blanco); border-radius: var(--cx-radius-lg);
  padding: 1.9rem 1.6rem; height: 100%;
  box-shadow: var(--cx-sombra-1); border: 1px solid rgba(20,35,42,.05);
  transition: transform .22s var(--cx-ease), box-shadow .22s var(--cx-ease);
}
.cx-feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--f-color, var(--cx-agua));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--cx-ease);
}
.cx-feature:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(20,35,42,.13); }
.cx-feature:hover::before { transform: scaleX(1); }
.cx-feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 18px 18px 18px 4px; font-size: 1.7rem; margin-bottom: 1.1rem;
  background: color-mix(in srgb, var(--f-color, var(--cx-agua)) 16%, #fff); color: var(--cx-agua);
  transform: rotate(-4deg);
  transition: transform .25s var(--cx-ease);
}
.cx-feature:hover .cx-feature__icon { transform: rotate(3deg) scale(1.07); }
/* Ciclo de colores de marca para el acento de cada tarjeta */
.cx-features [class*="col-"]:nth-child(6n+1) .cx-feature { --f-color: var(--cx-azul); }
.cx-features [class*="col-"]:nth-child(6n+2) .cx-feature { --f-color: var(--cx-naranja); }
.cx-features [class*="col-"]:nth-child(6n+3) .cx-feature { --f-color: var(--cx-lima); }
.cx-features [class*="col-"]:nth-child(6n+4) .cx-feature { --f-color: var(--cx-amarillo); }
.cx-features [class*="col-"]:nth-child(6n+5) .cx-feature { --f-color: var(--cx-rosa); }
.cx-features [class*="col-"]:nth-child(6n+6) .cx-feature { --f-color: var(--cx-agua-claro); }
.cx-feature__title { font-size: 1.18rem; font-weight: 700; margin-bottom: .45rem; font-family: var(--cx-font-body); }
.cx-feature__body { margin: 0; color: rgba(20,35,42,.72); line-height: 1.55; }
/* Sección de features con fondo tenue para que las tarjetas resalten */
.cx-features {
  background:
    radial-gradient(ellipse at 8% 0%, rgba(66,160,216,.08), transparent 45%),
    radial-gradient(ellipse at 95% 100%, rgba(217,164,65,.09), transparent 45%),
    var(--cx-caliza);
}
.cx-features.cx-section--dark { background: var(--cx-agua-oscuro); }

/* Galería masonry + lightbox */
.cx-gallery__masonry { columns: 4 220px; column-gap: .75rem; }
.cx-gallery__item {
  margin: 0 0 .75rem; border-radius: var(--cx-radius); overflow: hidden;
  break-inside: avoid; position: relative; cursor: zoom-in;
  border: 0; padding: 0; background: none; display: block; width: 100%;
}
.cx-gallery__item img {
  width: 100%; height: auto; display: block;
  transition: transform .45s var(--cx-ease);
}
.cx-gallery__item:hover img { transform: scale(1.07); }
.cx-gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7,42,50,.66));
  opacity: 0; transition: opacity .25s ease;
}
.cx-gallery__item:hover::after { opacity: 1; }
/* Pie con la descripción de la foto + lupa (aparece al pasar el cursor) */
.cx-gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; align-items: center; gap: .45rem;
  padding: 1.4rem .85rem .7rem; text-align: left;
  color: #fff; font-size: .8rem; font-weight: 600; line-height: 1.3;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s var(--cx-ease);
  pointer-events: none;
}
.cx-gallery__cap svg { flex: none; opacity: .9; }
.cx-gallery__item:hover .cx-gallery__cap { opacity: 1; transform: none; }
.cx-lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px); }
.cx-lightbox::backdrop { background: rgba(11,79,92,.88); }
.cx-lightbox img { width: 100%; height: auto; max-height: 86vh; object-fit: contain; border-radius: 12px; display: block; }
.cx-lightbox__cerrar {
  position: absolute; top: -14px; right: -14px;
  width: 38px; height: 38px; border-radius: 50%; border: 0;
  background: var(--cx-blanco); color: var(--cx-tinta);
  font-size: 1.15rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.cx-gallery__social { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.cx-gallery__social a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.2rem; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .92rem;
  background: var(--cx-blanco); color: var(--cx-agua-oscuro);
  box-shadow: 0 2px 12px rgba(20,35,42,.08);
  transition: transform .15s ease;
}
.cx-gallery__social a:hover { transform: translateY(-2px); color: var(--cx-agua); }
.cx-gallery__social svg { width: 18px; height: 18px; }

/* FAQ */
.cx-faq__item {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  padding: 1rem 1.25rem; margin-bottom: .75rem;
  box-shadow: 0 2px 12px rgba(20,35,42,.05);
  border-left: 4px solid var(--cx-azul);
  transition: box-shadow .2s ease;
}
.cx-faq__item:nth-child(4n+2) { border-left-color: var(--cx-lima); }
.cx-faq__item:nth-child(4n+3) { border-left-color: var(--cx-sol); }
.cx-faq__item:nth-child(4n+4) { border-left-color: var(--cx-naranja); }
.cx-faq__item[open] { box-shadow: 0 8px 24px rgba(20,35,42,.12); }
.cx-faq__q {
  font-weight: 700; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.cx-faq__q::-webkit-details-marker { display: none; }
.cx-faq__q::after {
  content: '+'; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cx-caliza); color: var(--cx-agua-oscuro);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: transform .25s ease;
}
.cx-faq__item[open] .cx-faq__q::after { transform: rotate(45deg); }
.cx-faq__a { padding-top: .6rem; color: rgba(20,35,42,.8); }

/* ── Reseñas (slider en home + grid en página) ─────────────── */
.cx-reviews { background:
  radial-gradient(ellipse at 50% -10%, rgba(66,160,216,.10), transparent 55%),
  var(--cx-caliza);
}
.cx-reviews__agg { display: inline-flex; align-items: center; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; justify-content: center; }
.cx-reviews__agg-num { font-family: var(--cx-font-display); font-size: 1.9rem; font-weight: 700; color: var(--cx-agua-oscuro); }
.cx-star { color: var(--cx-sol); font-size: 1.05rem; }
.cx-star.is-off { color: rgba(20,35,42,.2); }
.cx-reviews__agg-count { font-size: .9rem; color: rgba(20,35,42,.6); }

.cx-reviews__track.is-slider {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem .2rem 1rem; scrollbar-width: none;
}
.cx-reviews__track.is-slider::-webkit-scrollbar { display: none; }
.cx-reviews__track.is-slider .cx-review { scroll-snap-align: center; }
@media (min-width: 768px) { .cx-reviews__track.is-slider { grid-auto-columns: minmax(340px, 33.5%); } }

.cx-reviews__track.is-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.cx-review {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  padding: 1.3rem 1.4rem; box-shadow: 0 2px 12px rgba(20,35,42,.07);
  display: flex; flex-direction: column; gap: .7rem; height: 100%;
}
.cx-review__head { display: flex; align-items: center; gap: .7rem; }
.cx-review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem; color: #fff;
  background: hsl(var(--h), 45%, 48%);
}
.cx-review__nombre { font-weight: 700; margin: 0; font-size: .96rem; }
.cx-review__meta { margin: 0; font-size: .78rem; display: flex; align-items: center; gap: .5rem; }
.cx-review__meta span { color: rgba(20,35,42,.5); }
.cx-review__g { margin-left: auto; flex: none; align-self: flex-start; }
.cx-review__texto { margin: 0; font-size: .93rem; line-height: 1.6; color: rgba(20,35,42,.82); }
.cx-reviews__track.is-slider .cx-review__texto {
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.cx-reviews__dots { display: flex; gap: .4rem; justify-content: center; margin-top: .3rem; }
.cx-reviews__dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(20,35,42,.2); transition: background .2s, width .2s;
}
.cx-reviews__dots button.is-active { background: var(--cx-agua); width: 22px; border-radius: 999px; }

/* ── Mapa / Cómo llegar ────────────────────────────────────── */
.cx-mapa { border-radius: var(--cx-radius); overflow: hidden; box-shadow: 0 6px 24px rgba(20,35,42,.12); }
.cx-mapa iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.9); }
.cx-mapa__info { display: flex; gap: .75rem 1.5rem; flex-wrap: wrap; align-items: center; margin-top: 1.1rem; justify-content: center; }
.cx-mapa__dato { display: inline-flex; align-items: center; gap: .45rem; font-size: .95rem; color: rgba(20,35,42,.8); }
.cx-mapa__dato strong { color: var(--cx-agua-oscuro); }

/* Precios */
.cx-price-card {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  padding: 2rem 1.5rem; height: 100%; position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(20,35,42,.06);
}
.cx-price-card.is-featured { border: 2px solid var(--cx-agua); box-shadow: 0 10px 28px rgba(14,124,134,.18); }
.cx-price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cx-sol); color: var(--cx-tinta);
  border-radius: 999px; font-size: .74rem; font-weight: 700;
  padding: .25rem .85rem; white-space: nowrap;
}
.cx-price-card__name { font-family: var(--cx-font-body); font-size: 1.1rem; font-weight: 700; }
.cx-price-card__price { font-size: 2rem; font-weight: 700; color: var(--cx-agua-oscuro); margin: .25rem 0 1rem; }
.cx-price-card__price small { display: block; font-size: .78rem; font-weight: 500; color: rgba(20,35,42,.6); }
.cx-price-card__includes { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.cx-price-card__includes li { padding: .3rem 0 .3rem 1.4rem; position: relative; }
.cx-price-card__includes li::before { content: '✓'; position: absolute; left: 0; color: var(--cx-agua); font-weight: 700; }

/* Sticky CTA */
.cx-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--cx-blanco);
  box-shadow: 0 -4px 18px rgba(20,35,42,.12);
  padding: .6rem 0;
}
.cx-sticky-cta__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.cx-sticky-cta__note { font-weight: 600; color: var(--cx-agua-oscuro); }

/* ── Banda CTA pre-footer ──────────────────────────────────── */
.cx-fcta {
  background: linear-gradient(135deg, var(--cx-agua) 0%, var(--cx-agua-oscuro) 100%);
  color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; margin-top: var(--cx-section-py);
  position: relative; overflow: hidden;
}
.cx-fcta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.10), transparent 45%),
              radial-gradient(circle at 12% 95%, rgba(217,164,65,.16), transparent 42%);
}
.cx-fcta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem 2.5rem; flex-wrap: wrap; }
.cx-fcta__kicker { font-family: var(--cx-font-body); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--cx-sol); font-weight: 700; margin: 0 0 .5rem; }
.cx-fcta__title { font-family: var(--cx-font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.05; margin: 0 0 .5rem; color: #fff; }
.cx-fcta__text { margin: 0; max-width: 44ch; opacity: .9; }
.cx-fcta__actions { display: flex; gap: .8rem; flex-wrap: wrap; flex: none; }
.cx-fcta__actions .cx-btn { display: inline-flex; align-items: center; gap: .5rem; }

/* ── Footer ────────────────────────────────────────────────── */
.cx-footer { background: var(--cx-agua-oscuro); color: rgba(255,255,255,.82); padding: clamp(2.8rem,6vw,4rem) 0 1.5rem; position: relative; }
.cx-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cx-azul), var(--cx-agua), var(--cx-sol), var(--cx-naranja));
}
.cx-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.6fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 860px) { .cx-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .cx-footer__inner { grid-template-columns: 1fr; } }
.cx-footer__logo { display: inline-block; }
.cx-footer__logo img { height: 58px; width: auto; display: block; background: var(--cx-blanco); border-radius: 12px; padding: 8px 12px; }
.cx-footer__tagline { margin: 1rem 0 0; font-family: var(--cx-font-display); font-size: 1.2rem; line-height: 1.35; color: rgba(255,255,255,.92); max-width: 26ch; }
.cx-footer__social-label { margin: 1.4rem 0 .55rem; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cx-sol); font-weight: 700; }
.cx-footer__social { display: flex; gap: .6rem; }
.cx-footer__social a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,.1); color: #fff;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.cx-footer__social a:hover { background: var(--cx-sol); color: var(--cx-agua-oscuro); transform: translateY(-2px); }
.cx-footer__title { font-family: var(--cx-font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cx-sol); margin: 0 0 1rem; }
.cx-footer__list { list-style: none; padding: 0; margin: 0; }
.cx-footer__list li { padding: .32rem 0; }
.cx-footer__list a { color: rgba(255,255,255,.82); text-decoration: none; transition: color .15s ease; }
.cx-footer__list a:hover { color: #fff; }
.cx-footer__list--ico li, .cx-footer__list--ico a { display: flex; gap: .6rem; align-items: flex-start; line-height: 1.4; font-size: .92rem; }
.cx-footer__ico { color: var(--cx-sol); flex: none; margin-top: .05rem; display: inline-flex; }
.cx-footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cx-footer__copy, .cx-footer__made { font-size: .82rem; margin: 0; opacity: .7; }
.cx-footer__made { letter-spacing: .02em; }

/* Chevron */
.cx-chev svg { width: 10px; height: 10px; }

/* ── Páginas legales ───────────────────────────────────────── */
.cx-legal { background: var(--cx-caliza); }
.cx-legal__updated { font-size: .85rem; color: rgba(20,35,42,.55); margin-bottom: 1.5rem; }
.cx-legal h2 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; color: var(--cx-agua-oscuro); }
.cx-legal p, .cx-legal li { line-height: 1.7; color: rgba(20,35,42,.85); }
.cx-legal ul { padding-left: 1.2rem; }
.cx-legal li { margin-bottom: .4rem; }
.cx-legal a { color: var(--cx-agua); }

/* ── Botón flotante de WhatsApp ────────────────────────────── */
.cx-wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cx-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .18s ease;
  animation: cx-fab-in .4s ease .8s both;
}
.cx-wa-fab:hover { transform: scale(1.08); color: #fff; }
@keyframes cx-fab-in { from { transform: scale(0); } to { transform: scale(1); } }
body.cx-has-booking .cx-wa-fab { bottom: 80px; } /* no tapar la barra de reserva móvil */

/* ── Aviso de cookies ──────────────────────────────────────── */
.cx-cookies {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 85;
  max-width: 560px; margin: 0 auto;
  background: var(--cx-blanco); border-radius: 14px;
  box-shadow: 0 8px 30px rgba(20,35,42,.22);
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cx-cookies p { margin: 0; font-size: .88rem; flex: 1; min-width: 200px; color: rgba(20,35,42,.8); }
.cx-cookies a { color: var(--cx-agua); }
.cx-cookies .cx-btn { flex: none; }
.cx-cookies[hidden] { display: none; }

/* ── Código de descuento / promoción ───────────────────────── */
.cx-promo { margin: .8rem 0; padding-top: .8rem; border-top: 1px dashed rgba(20,35,42,.18); }
.cx-promo__form { display: flex; gap: .5rem; }
.cx-promo__input {
  flex: 1; min-width: 0; padding: .55rem .7rem; border: 1.5px solid rgba(20,35,42,.2);
  border-radius: 9px; font: inherit; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em;
}
.cx-promo__input:focus { outline: none; border-color: var(--cx-agua); }
.cx-promo__btn { flex: none; padding-left: 1rem; padding-right: 1rem; }
.cx-promo__aplicado {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  background: #E6F5EC; border: 1px solid #B9E3C9; border-radius: 9px; padding: .55rem .8rem; font-size: .88rem;
}
.cx-promo__aplicado strong { letter-spacing: .04em; }
.cx-promo__quitar { background: none; border: 0; color: var(--cx-rojo); font-size: .82rem; cursor: pointer; text-decoration: underline; padding: 0; }
.cx-promo__msg { margin: .5rem 0 0; font-size: .85rem; border-radius: 8px; padding: .45rem .7rem; }
.cx-promo__msg.is-ok { background: #E6F5EC; color: #1B6E43; }
.cx-promo__msg.is-err { background: #FDECEC; color: #9A2A2A; }
.cx-resumen__desc span { color: #1B8A5A; font-weight: 700; }
.cx-usd-nota { margin: .8rem 0 0; font-size: .8rem; line-height: 1.4; color: #8a6d1a; background: #FDF3D7; border-radius: 8px; padding: .55rem .75rem; }
.cx-ck-consent { display: flex; gap: .55rem; align-items: flex-start; margin-top: 1rem; font-size: .84rem; line-height: 1.4; color: rgba(20,35,42,.72); cursor: pointer; }
.cx-ck-consent input { margin-top: .15rem; flex: none; accent-color: var(--cx-agua); }

/* ── Impresión: "Mi reserva" como ticket limpio ────────────── */
@media print {
  .cx-nav, .cx-footer, .cx-sticky-cta, .cx-wa-fab, .cx-cookies,
  .cx-hero, .cx-noprint, .cx-booking__alt, .cx-booking__form { display: none !important; }
  body { background: #fff; }
  .cx-section { padding: 0 !important; }
  .cx-qr, .cx-resumen { box-shadow: none !important; border: 1px solid #ccc; }
}

/* ── Chips de actividad (colores de marca) ─────────────────── */
.cx-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .8rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; text-decoration: none;
}
.cx-chip--azul     { background: var(--cx-azul);     color: #06263A; }
.cx-chip--naranja  { background: var(--cx-naranja);  color: #4A1B0C; }
.cx-chip--amarillo { background: var(--cx-amarillo); color: #412402; }
.cx-chip--lima     { background: var(--cx-lima);     color: #173404; }
.cx-chip--rosa     { background: var(--cx-rosa);     color: #4B1528; }
.cx-chip--rojo     { background: var(--cx-rojo);     color: #FFFFFF; }

/* ── Hero: quicklinks de actividades ───────────────────────── */
.cx-hero__quicklinks { display: flex; gap: .55rem; justify-content: center; flex-wrap: wrap; margin-top: 1.3rem; }
.cx-hero__quicklinks .cx-chip {
  box-shadow: 0 6px 18px rgba(4,28,34,.32);
  transition: transform .18s var(--cx-ease), box-shadow .18s var(--cx-ease);
}
.cx-hero__quicklinks .cx-chip:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 24px rgba(4,28,34,.42); }

/* ── Cards de producto con foto (home) ─────────────────────── */
.cx-pcard {
  background: var(--cx-blanco); border-radius: var(--cx-radius-lg);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  box-shadow: 0 3px 16px rgba(20,35,42,.08);
  transition: transform .22s var(--cx-ease), box-shadow .22s var(--cx-ease);
  text-decoration: none; color: var(--cx-tinta); position: relative;
}
.cx-pcard:hover { transform: translateY(-7px); box-shadow: var(--cx-sombra-2); color: var(--cx-tinta); }
.cx-pcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cx-pcard__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(185deg, transparent 55%, rgba(7,42,50,.42));
}
.cx-pcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--cx-ease); }
.cx-pcard:hover .cx-pcard__media img { transform: scale(1.07) rotate(.4deg); }
.cx-pcard__chip { position: absolute; top: .75rem; left: .75rem; z-index: 1; }
/* Precio sobre la foto, como etiqueta flotante */
.cx-pcard__price {
  position: absolute; left: .75rem; bottom: .75rem; z-index: 1;
  background: rgba(255,255,255,.94); backdrop-filter: blur(4px);
  border-radius: 999px; padding: .32rem .8rem;
  font-weight: 800; color: var(--cx-agua-oscuro); font-size: .88rem;
  box-shadow: 0 4px 14px rgba(4,28,34,.25);
}
.cx-pcard__price small { font-weight: 500; color: rgba(20,35,42,.55); }
.cx-pcard__body { padding: 1.15rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.cx-pcard__title { font-family: var(--cx-font-body); font-size: 1.14rem; font-weight: 700; margin: 0; transition: color .15s ease; }
.cx-pcard:hover .cx-pcard__title { color: var(--cx-agua); }
.cx-pcard__text { margin: 0; font-size: .92rem; color: rgba(20,35,42,.72); flex: 1; line-height: 1.5; }
/* CTA con flecha que se desliza al pasar el cursor */
.cx-pcard__cta {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .35rem;
  font-size: .88rem; font-weight: 700; color: var(--cx-agua);
}
.cx-pcard__cta svg { transition: transform .2s var(--cx-ease); }
.cx-pcard:hover .cx-pcard__cta svg { transform: translateX(5px); }
/* Acento de color de la categoría en el borde inferior */
.cx-pcard::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--p-color, var(--cx-agua));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--cx-ease);
}
.cx-pcard:hover::after { transform: scaleX(1); }
.cx-pcard--azul     { --p-color: var(--cx-azul); }
.cx-pcard--naranja  { --p-color: var(--cx-naranja); }
.cx-pcard--amarillo { --p-color: var(--cx-amarillo); }
.cx-pcard--lima     { --p-color: var(--cx-lima); }
.cx-pcard--rosa     { --p-color: var(--cx-rosa); }
.cx-pcard--rojo     { --p-color: var(--cx-rojo); }

/* ── Catálogo por categorías: cajas marcadas + grid balanceado ── */
.cx-catalogo__fila { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  /* Las celdas comparten fila proporcional a sus productos (1/3, 2/3, 3/3) */
  .cx-catalogo__fila { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cx-catalogo__celda { grid-column: span var(--celda-span, 3); }
}
.cx-catbox {
  position: relative; overflow: hidden;
  height: 100%;
  border: 1.5px solid transparent;
  border-radius: var(--cx-radius-lg);
  padding: 1.35rem 1.2rem 1.35rem;
  box-shadow: 0 4px 20px rgba(20,35,42,.06);
}
/* Cinta superior con el color de la categoría */
.cx-catbox::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--cat-color, var(--cx-agua)), transparent 85%);
  opacity: .9;
}
.cx-catbox__head { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.1rem; }
/* Marcador en forma de gota de agua */
.cx-catbox__marker {
  width: 20px; height: 20px; flex: none;
  border-radius: 50% 50% 50% 4px; transform: rotate(-45deg);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.4);
}
.cx-catbox__title { font-family: var(--cx-font-display); font-size: 1.5rem; font-weight: 700; margin: 0; }
.cx-catbox__count {
  margin-left: auto; font-size: .78rem; font-weight: 700;
  background: rgba(255,255,255,.75); border: 1px solid rgba(20,35,42,.1);
  border-radius: 999px;
  min-width: 26px; height: 26px; line-height: 24px; text-align: center; padding: 0 8px;
}
.cx-catbox__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 576px) {
  .cx-catbox__grid { grid-template-columns: repeat(min(var(--catbox-cols, 3), 2), minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .cx-catbox__grid { grid-template-columns: repeat(var(--catbox-cols, 3), minmax(0, 1fr)); }
}
/* Colores por categoría: variable --cat-color + tinte del fondo */
.cx-catbox--azul     { --cat-color: var(--cx-azul);     border-color: rgba(66,160,216,.35);  background: linear-gradient(170deg, rgba(66,160,216,.1), rgba(255,255,255,.65) 55%, rgba(66,160,216,.05)); }
.cx-catbox--naranja  { --cat-color: var(--cx-naranja);  border-color: rgba(232,129,63,.35);  background: linear-gradient(170deg, rgba(232,129,63,.11), rgba(255,255,255,.65) 55%, rgba(232,129,63,.05)); }
.cx-catbox--amarillo { --cat-color: var(--cx-amarillo); border-color: rgba(238,212,16,.4);   background: linear-gradient(170deg, rgba(238,212,16,.13), rgba(255,255,255,.65) 55%, rgba(238,212,16,.06)); }
.cx-catbox--rosa     { --cat-color: var(--cx-rosa);     border-color: rgba(242,169,172,.5);  background: linear-gradient(170deg, rgba(242,169,172,.16), rgba(255,255,255,.65) 55%, rgba(242,169,172,.08)); }
.cx-catbox--lima     { --cat-color: var(--cx-lima);     border-color: rgba(168,200,56,.4);   background: linear-gradient(170deg, rgba(168,200,56,.13), rgba(255,255,255,.65) 55%, rgba(168,200,56,.06)); }
.cx-catbox--rojo     { --cat-color: var(--cx-rojo);     border-color: rgba(208,32,48,.3);    background: linear-gradient(170deg, rgba(208,32,48,.08), rgba(255,255,255,.65) 55%, rgba(208,32,48,.04)); }
.cx-catbox .cx-catbox__marker { background: var(--cat-color, var(--cx-agua)); }

/* ── ¿Cómo funciona? (pasos numerados) ─────────────────────── */
.cx-pasos__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 980px; margin: 0 auto;
}
.cx-paso {
  position: relative; text-align: center;
  background: var(--cx-blanco); border-radius: var(--cx-radius-lg);
  padding: 2.1rem 1.4rem 1.7rem;
  box-shadow: var(--cx-sombra-1);
  transition: transform .22s var(--cx-ease), box-shadow .22s var(--cx-ease);
}
.cx-paso:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(20,35,42,.12); }
.cx-paso__num {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--cx-agua); color: var(--cx-blanco);
  font-family: var(--cx-font-display); font-size: 1.55rem; font-weight: 700;
  margin-bottom: .9rem;
  box-shadow: 0 6px 16px rgba(14,124,134,.32);
}
/* Anillo punteado que gira lentamente alrededor del número */
.cx-paso__num::after {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px dashed currentColor; opacity: .38;
  animation: cx-girar 24s linear infinite;
}
@keyframes cx-girar { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .cx-paso__num::after { animation: none; } }
.cx-paso:nth-child(2) .cx-paso__num { background: var(--cx-sol); color: var(--cx-tinta); box-shadow: 0 6px 16px rgba(217,164,65,.35); }
.cx-paso:nth-child(3) .cx-paso__num { background: var(--cx-whatsapp); color: #073B27; box-shadow: 0 6px 16px rgba(37,211,102,.32); }
.cx-paso__titulo { font-family: var(--cx-font-body); font-size: 1.08rem; font-weight: 700; margin-bottom: .4rem; }
.cx-paso__texto { margin: 0; font-size: .92rem; color: rgba(20,35,42,.72); }
/* Conector punteado entre pasos (línea de recorrido) */
.cx-paso__flecha {
  position: absolute; top: 50%; right: -1.6rem; transform: translateY(-50%);
  width: 1.7rem; z-index: 1; font-size: 0; color: var(--cx-agua);
  border-top: 2.5px dashed rgba(14,124,134,.45);
}
.cx-paso__flecha::after {
  content: ''; position: absolute; right: -2px; top: -5.5px;
  border: 5px solid transparent; border-left: 7px solid rgba(14,124,134,.6);
}
@media (max-width: 767px) { .cx-paso__flecha { display: none; } }

/* ── Cinta de datos (facts) — banda de "agua profunda" ─────── */
.cx-facts {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #083A44 0%, var(--cx-agua-oscuro) 40%, var(--cx-agua) 100%);
  color: var(--cx-blanco); padding: 4.2rem 0 4.6rem;
}
/* Burbujas tenues subiendo dentro de la banda */
.cx-facts::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(circle 5px at 12% 80%, rgba(255,255,255,.16) 48%, transparent 52%),
    radial-gradient(circle 3px at 30% 40%, rgba(255,255,255,.12) 48%, transparent 52%),
    radial-gradient(circle 7px at 52% 68%, rgba(255,255,255,.1) 48%, transparent 52%),
    radial-gradient(circle 4px at 71% 30%, rgba(255,255,255,.14) 48%, transparent 52%),
    radial-gradient(circle 6px at 88% 76%, rgba(255,255,255,.12) 48%, transparent 52%);
  background-size: 100% 200%;
  animation: cx-burbujeo 18s linear infinite;
}
@keyframes cx-burbujeo { from { background-position: 0 0; } to { background-position: 0 -200%; } }
@media (prefers-reduced-motion: reduce) { .cx-facts::before { animation: none; } }
/* Ola de caliza que remata arriba y abajo de la banda */
.cx-facts::after {
  content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 34px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 34' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v10c-120 16-260-14-420-4S740 28 580 20 200 4 0 22z' fill='%23F4EFE6'/%3E%3C/svg%3E") top / 100% 100% no-repeat;
}
.cx-facts__olas-bottom {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 34px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 34' preserveAspectRatio='none'%3E%3Cpath d='M0 34h1440V24c-120-16-260 14-420 4S740 6 580 14 200 30 0 12z' fill='%23F4EFE6'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}
.cx-facts__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem 1.25rem; text-align: center; }
.cx-facts__value {
  font-family: var(--cx-font-display); font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 700;
  color: var(--cx-sol); display: block; line-height: 1.05;
  text-shadow: 0 2px 18px rgba(4,28,34,.35);
  font-variant-numeric: tabular-nums;
}
.cx-facts__label { font-size: .88rem; opacity: .88; letter-spacing: .02em; }

/* ── Página de producto: layout con sidebar ────────────────── */
.cx-product { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; padding: 2.5rem 0 var(--cx-section-py); }
@media (min-width: 992px) {
  .cx-product { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; }
  .cx-product__aside { position: sticky; top: 84px; }
}
.cx-product__content > * + * { margin-top: 2.5rem; }
.cx-product h2 { font-size: 1.5rem; margin-bottom: .75rem; }
/* Nombre del producto bajo el hero: mismo peso visual que un título, sin ser heading */
.cx-product__name { font-family: var(--cx-font-display); font-size: 1.7rem; font-weight: 700; color: var(--cx-agua-oscuro); margin: .75rem 0 .4rem; line-height: 1.15; }

/* Galería de producto */
.cx-pgallery__main { border-radius: var(--cx-radius); overflow: hidden; aspect-ratio: 16/10; }
.cx-pgallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cx-pgallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; margin-top: .5rem; }
.cx-pgallery__thumb { border: 0; padding: 0; cursor: pointer; border-radius: 8px; overflow: hidden; aspect-ratio: 1; opacity: .75; transition: opacity .15s; background: none; }
.cx-pgallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cx-pgallery__thumb.is-active, .cx-pgallery__thumb:hover { opacity: 1; outline: 2px solid var(--cx-agua); outline-offset: 1px; }

/* Qué incluye */
.cx-includes { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .5rem 1.25rem; }
.cx-includes li { padding: .35rem 0 .35rem 1.6rem; position: relative; }
.cx-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--cx-agua); font-weight: 700; }
.cx-includes--no li::before { content: '✕'; color: var(--cx-rojo); }
.cx-includes--reco li::before { content: '★'; color: var(--cx-sol); }

/* Duración / meta del producto */
.cx-product__meta {
  display: inline-flex; align-items: center; gap: .4rem; margin: 0 0 .9rem;
  font-size: .92rem; color: var(--cx-tinta); background: var(--cx-caliza);
  padding: .32rem .8rem; border-radius: 99px;
}
.cx-product__meta-ico { font-size: 1.05rem; line-height: 1; }

/* Itinerario — línea de tiempo vertical */
.cx-itin { list-style: none; margin: 0; padding: 0; }
.cx-itin__step { position: relative; padding: 0 0 1.15rem 2.2rem; }
.cx-itin__step::before {
  content: ''; position: absolute; left: .35rem; top: .35rem; width: 11px; height: 11px;
  border-radius: 50%; background: var(--cx-agua); box-shadow: 0 0 0 3px rgba(14,124,134,.18);
}
.cx-itin__step::after {
  content: ''; position: absolute; left: .83rem; top: 1rem; bottom: -.15rem; width: 2px;
  background: rgba(20,35,42,.12);
}
.cx-itin__step:last-child { padding-bottom: 0; }
.cx-itin__step:last-child::after { display: none; }
.cx-itin__time { display: block; font-weight: 700; font-size: .82rem; color: var(--cx-agua); }
.cx-itin__act { display: block; font-size: .95rem; line-height: 1.35; margin-top: .1rem; }

/* Política de cancelación */
.cx-cancel {
  background: var(--cx-caliza); border-left: 3px solid var(--cx-agua); border-radius: 8px;
  padding: .7rem 1rem; margin: 0; font-size: .95rem; color: rgba(20,35,42,.85);
}

/* ── Booking sidebar ───────────────────────────────────────── */
.cx-booking {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  box-shadow: 0 6px 24px rgba(20,35,42,.12);
  padding: 1.4rem 1.4rem 1.5rem; border-top: 4px solid var(--cx-agua);
}
.cx-booking__price { font-size: 1.6rem; font-weight: 700; color: var(--cx-agua-oscuro); margin: 0 0 .25rem; }
.cx-booking__price small { font-size: .82rem; font-weight: 500; color: rgba(20,35,42,.6); }
.cx-booking__row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .7rem 0; border-bottom: 1px solid rgba(20,35,42,.08); }
.cx-booking__label { font-weight: 600; font-size: .92rem; }
.cx-booking__label small { display: block; font-weight: 400; font-size: .78rem; color: rgba(20,35,42,.55); }
/* Campo de fecha: fila propia a ancho completo, con selector propio */
.cx-booking__row--fecha { display: block; }
.cx-booking__row--fecha .cx-booking__label {
  display: flex; align-items: center; gap: .4rem; margin-bottom: .5rem;
}
.cx-booking__cal-ico { color: var(--cx-agua); flex: none; }
.cx-booking__fecha-error {
  color: var(--cx-rojo); font-size: .82rem; font-weight: 600;
  margin: .45rem 0 0; display: flex; align-items: center; gap: .3rem;
}
.cx-booking__fecha-error::before { content: '⚠'; }
.cx-booking__cupo {
  margin: .5rem 0 0; font-size: .85rem; font-weight: 700;
  color: var(--cx-agua-oscuro);
  background: rgba(66,160,216,.1); border-radius: 8px; padding: .45rem .7rem;
}
.cx-booking__cupo.is-low { color: #a3492d; background: rgba(232,129,63,.14); }

/* ── Selector de fecha propio (cx-datepicker) ──────────────── */
.cx-datepicker { position: relative; }
.cx-datepicker__trigger {
  width: 100%; box-sizing: border-box;
  display: flex; align-items: center; gap: .6rem;
  border: 1.5px solid rgba(14,124,134,.3); border-radius: 12px;
  padding: .8rem .95rem;
  font-family: var(--cx-font-body); font-size: 1rem; font-weight: 600;
  color: var(--cx-agua-oscuro); text-align: left;
  background: linear-gradient(0deg, rgba(66,160,216,.07), rgba(66,160,216,.07)), var(--cx-blanco);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cx-datepicker__trigger > svg:first-child { color: var(--cx-agua); flex: none; }
.cx-datepicker__value { flex: 1; color: rgba(20,35,42,.45); font-weight: 500; }
.cx-datepicker__value.is-filled { color: var(--cx-agua-oscuro); font-weight: 700; }
.cx-datepicker__chev { color: var(--cx-agua); flex: none; transition: transform .2s ease; }
.cx-datepicker.is-open .cx-datepicker__chev { transform: rotate(180deg); }
.cx-datepicker__trigger:hover { border-color: var(--cx-agua); }
.cx-datepicker.is-open .cx-datepicker__trigger,
.cx-datepicker__trigger:focus-visible {
  outline: none; border-color: var(--cx-agua);
  box-shadow: 0 0 0 3px rgba(14,124,134,.16);
}

/* Popover del calendario */
.cx-datepicker__pop {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 130;
  background: var(--cx-blanco); border-radius: 14px;
  box-shadow: 0 14px 40px rgba(20,35,42,.2);
  padding: .9rem; border: 1px solid rgba(14,124,134,.12);
}
.cx-dp__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.cx-dp__mes { font-weight: 700; font-size: .98rem; color: var(--cx-agua-oscuro); text-transform: capitalize; }
.cx-dp__nav {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  border: 0; background: var(--cx-caliza); color: var(--cx-agua-oscuro);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.cx-dp__nav:hover { background: rgba(66,160,216,.18); }
.cx-dp__nav:disabled { opacity: .3; cursor: not-allowed; }
.cx-dp__dows { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: .2rem; }
.cx-dp__dows span { text-align: center; font-size: .72rem; font-weight: 700; color: rgba(20,35,42,.4); padding: .3rem 0; }
.cx-dp__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cx-dp__empty { aspect-ratio: 1; }
.cx-dp__day {
  aspect-ratio: 1; border: 0; background: none; cursor: pointer;
  border-radius: 9px; font-size: .9rem; font-weight: 600; color: var(--cx-tinta);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .12s ease, color .12s ease;
}
.cx-dp__day:hover { background: rgba(66,160,216,.16); }
.cx-dp__day.is-off { color: rgba(20,35,42,.22); cursor: not-allowed; text-decoration: line-through; }
.cx-dp__day.is-off:hover { background: none; }
.cx-dp__day.is-today:not(.is-sel) { box-shadow: inset 0 0 0 1.5px rgba(14,124,134,.4); }
.cx-dp__day.is-sel { background: var(--cx-agua); color: #fff; }
.cx-dp__day.is-sel:hover { background: var(--cx-agua-oscuro); }
.cx-counter { display: inline-flex; align-items: center; gap: .6rem; }
.cx-counter button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--cx-agua); background: none; color: var(--cx-agua);
  font-size: 1.05rem; font-weight: 700; cursor: pointer; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.cx-counter button:disabled { opacity: .3; cursor: not-allowed; }
.cx-counter output { min-width: 1.4rem; text-align: center; font-weight: 700; }
.cx-booking__extra { accent-color: var(--cx-agua); width: 17px; height: 17px; }
.cx-booking__total { display: flex; justify-content: space-between; align-items: baseline; padding: .9rem 0 .3rem; font-weight: 700; }
.cx-booking__total-amount { font-size: 1.35rem; color: var(--cx-agua-oscuro); }
.cx-booking .cx-btn--whatsapp { width: 100%; justify-content: center; margin-top: .75rem; }
.cx-booking__alt { display: block; text-align: center; margin-top: .8rem; font-size: .88rem; color: var(--cx-agua); cursor: pointer; background: none; border: 0; width: 100%; text-decoration: underline; }
.cx-booking__form { margin-top: 1rem; display: grid; gap: .6rem; }
.cx-booking__form[hidden] { display: none; }
.cx-booking__form input, .cx-booking__form textarea {
  border: 1px solid rgba(20,35,42,.2); border-radius: 8px;
  padding: .55rem .7rem; font-family: var(--cx-font-body); font-size: .9rem; width: 100%;
}
.cx-booking__form button { width: 100%; }
.cx-booking__trust { display: flex; gap: .4rem .9rem; flex-wrap: wrap; margin-top: .9rem; padding: 0; list-style: none; }
.cx-booking__trust li { font-size: .76rem; color: rgba(20,35,42,.6); padding-left: 1.1rem; position: relative; }
.cx-booking__trust li::before { content: '✓'; position: absolute; left: 0; color: var(--cx-whatsapp); font-weight: 700; }
.cx-booking__ok { background: #E7F7EC; color: #14532D; border-radius: 8px; padding: .7rem .9rem; font-size: .88rem; margin-top: .8rem; }

/* ── Carrito en nav ─────────────────────────────────────────── */
.cx-nav__cart {
  position: relative; display: inline-flex; align-items: center;
  color: var(--cx-tinta); padding: .35rem;
}
.cx-nav__cart:hover { color: var(--cx-agua); }
.cx-nav__cart-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--cx-rojo); color: #fff;
  border-radius: 999px; font-size: .68rem; font-weight: 700;
  min-width: 18px; height: 18px; line-height: 18px; text-align: center;
  padding: 0 4px;
}

/* ── Carrito / Checkout / Confirmación ─────────────────────── */

/* Indicador de pasos */
.cx-steps { display: flex; align-items: center; justify-content: center; gap: 0; list-style: none; padding: 0; margin: 0 auto 2.5rem; }
.cx-steps__item { display: flex; align-items: center; gap: .55rem; color: rgba(20,35,42,.4); font-weight: 600; font-size: .92rem; }
.cx-steps__item:not(:last-child)::after { content: ''; width: clamp(26px, 7vw, 70px); height: 2px; background: rgba(20,35,42,.15); margin: 0 .7rem; }
.cx-steps__item.is-done::after { background: var(--cx-agua); }
.cx-steps__num {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 30px; height: 30px; border-radius: 50%; font-size: .85rem;
  border: 2px solid rgba(20,35,42,.18); background: #fff;
}
.cx-steps__item.is-on, .cx-steps__item.is-done { color: var(--cx-agua-oscuro); }
.cx-steps__item.is-on .cx-steps__num, .cx-steps__item.is-done .cx-steps__num { border-color: var(--cx-agua); background: var(--cx-agua); color: #fff; }
@media (max-width: 520px) { .cx-steps__label { display: none; } .cx-steps__item:not(:last-child)::after { width: 32px; } }

/* Carrito vacío */
.cx-cart-empty { text-align: center; padding: 2.5rem 1rem 3.5rem; }
.cx-cart-empty__ico { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 50%; background: var(--cx-caliza); color: var(--cx-agua); margin-bottom: 1.2rem; }
.cx-cart-empty__text { font-size: 1.1rem; color: rgba(20,35,42,.7); margin: 0 0 1.4rem; }

/* Item del carrito */
.cx-cart-item {
  display: grid; grid-template-columns: 108px 1fr auto; gap: 1.1rem;
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  padding: 1rem; margin-bottom: 1rem; align-items: center;
  box-shadow: 0 2px 14px rgba(20,35,42,.06); border: 1px solid rgba(20,35,42,.05);
  transition: box-shadow .18s ease;
}
.cx-cart-item:hover { box-shadow: 0 8px 26px rgba(20,35,42,.1); }
.cx-cart-item__media { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 3/2; background: var(--cx-caliza); }
.cx-cart-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cx-cart-item__title { font-weight: 700; font-size: 1.05rem; margin: 0 0 .5rem; }
.cx-cart-item__title a { color: var(--cx-tinta); text-decoration: none; }
.cx-cart-item__title a:hover { color: var(--cx-agua); }
.cx-cart-item__pills { display: flex; gap: .4rem; flex-wrap: wrap; }
.cx-pill { display: inline-flex; align-items: center; gap: .35rem; background: var(--cx-caliza); color: var(--cx-agua-oscuro); border-radius: 99px; padding: .28rem .65rem; font-size: .8rem; font-weight: 600; }
.cx-pill svg { color: var(--cx-agua); }
.cx-cart-item__extras { margin: .5rem 0 0; font-size: .82rem; color: rgba(20,35,42,.6); }
.cx-cart-item__der { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.cx-cart-item__sub { font-weight: 800; font-size: 1.1rem; color: var(--cx-agua-oscuro); white-space: nowrap; }
.cx-cart-item__quitar { display: inline-flex; align-items: center; gap: .3rem; background: none; border: 0; color: rgba(20,35,42,.5); font-size: .82rem; cursor: pointer; padding: 0; transition: color .15s ease; }
.cx-cart-item__quitar:hover { color: var(--cx-rojo); }
@media (max-width: 560px) {
  .cx-cart-item { grid-template-columns: 84px 1fr; }
  .cx-cart-item__der { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}
.cx-cart__seguir { display: inline-block; margin-top: .4rem; color: var(--cx-agua); text-decoration: none; font-weight: 600; }

/* Resumen (carrito + checkout) */
.cx-resumen {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  padding: 1.5rem; box-shadow: 0 8px 30px rgba(20,35,42,.1);
  border-top: 4px solid var(--cx-agua);
}
.cx-resumen--sticky { position: sticky; top: 90px; }
.cx-resumen__head { font-size: 1.15rem; margin: 0 0 1rem; font-family: var(--cx-font-display); }
.cx-resumen__item { display: flex; align-items: center; gap: .7rem; padding: .5rem 0; border-bottom: 1px solid rgba(20,35,42,.06); }
.cx-resumen__thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex: none; }
.cx-resumen__item-txt { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.cx-resumen__item-txt strong { font-size: .9rem; }
.cx-resumen__item-txt small { font-size: .78rem; color: rgba(20,35,42,.55); }
.cx-resumen__item-price { font-weight: 700; font-size: .9rem; white-space: nowrap; }
.cx-resumen__linea { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .92rem; }
.cx-resumen__linea small { color: rgba(20,35,42,.6); }
.cx-resumen__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(20,35,42,.12); margin-top: .6rem; padding-top: .9rem; font-weight: 800; font-size: 1.25rem; color: var(--cx-agua-oscuro); }
.cx-resumen__cta { width: 100%; justify-content: center; margin-top: 1.1rem; }
.cx-resumen__trust { display: flex; gap: .4rem .9rem; flex-wrap: wrap; margin: 1rem 0 0; padding: 0; list-style: none; }
.cx-resumen__trust li { font-size: .76rem; color: rgba(20,35,42,.6); padding-left: 1.1rem; position: relative; }
.cx-resumen__trust li::before { content: '✓'; position: absolute; left: 0; color: var(--cx-whatsapp); font-weight: 700; }

/* Formulario de checkout */
.cx-ck-card {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  padding: 1.6rem; box-shadow: 0 2px 14px rgba(20,35,42,.06); border: 1px solid rgba(20,35,42,.05);
  margin-bottom: 1.2rem;
}
.cx-ck-card__title { font-size: 1.15rem; margin: 0 0 1.1rem; display: flex; align-items: center; gap: .6rem; font-family: var(--cx-font-display); }
.cx-ck-card__step { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--cx-agua); color: #fff; font-size: .85rem; font-weight: 700; font-family: var(--cx-font-body); flex: none; }
.cx-ck-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.cx-ck-field--full { grid-column: 1 / -1; }
.cx-ck-lbl, .cx-ck-form label { display: block; font-weight: 600; font-size: .85rem; margin: .85rem 0 .35rem; color: #40525A; }
.cx-ck-form input[type="text"], .cx-ck-form input[type="email"], .cx-ck-form input[type="tel"], .cx-ck-form select, .cx-ck-form textarea {
  width: 100%; border: 1.5px solid rgba(20,35,42,.16); border-radius: 10px;
  padding: .65rem .8rem; font-family: var(--cx-font-body); font-size: .95rem; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cx-ck-form input:focus, .cx-ck-form select:focus, .cx-ck-form textarea:focus { outline: none; border-color: var(--cx-agua); box-shadow: 0 0 0 3px rgba(14,124,134,.12); }
.cx-ck-form input.is-error { border-color: var(--cx-rojo); }
@media (max-width: 480px) { .cx-ck-grid { grid-template-columns: 1fr; } }

/* Preferencia de contacto (segmentos) */
.cx-ck-segments { display: flex; gap: .6rem; margin-bottom: .3rem; }
.cx-ck-seg { flex: 1; position: relative; margin: 0 !important; cursor: pointer; }
.cx-ck-seg input { position: absolute; opacity: 0; }
.cx-ck-seg span { display: block; text-align: center; padding: .6rem; border: 1.5px solid rgba(20,35,42,.16); border-radius: 10px; font-size: .9rem; font-weight: 600; color: rgba(20,35,42,.65); transition: border-color .15s ease, background .15s ease, color .15s ease; }
.cx-ck-seg input:checked + span { border-color: var(--cx-agua); background: rgba(14,124,134,.07); color: var(--cx-agua-oscuro); }
.cx-ck-seg input:focus-visible + span { box-shadow: 0 0 0 3px rgba(14,124,134,.12); }

/* Método de pago */
.cx-pago-opcion {
  display: flex; align-items: center; gap: .7rem;
  border: 1.5px solid rgba(20,35,42,.15); border-radius: 12px;
  padding: .85rem 1rem; margin-bottom: .6rem; cursor: pointer; font-size: .92rem;
}
.cx-pago-opcion.is-selected { border-color: var(--cx-agua); background: rgba(14,124,134,.05); }
.cx-pago-opcion input { accent-color: var(--cx-agua); }
.cx-pago-opcion.is-disabled { opacity: .6; cursor: not-allowed; background: rgba(20,35,42,.03); }
.cx-pago-opcion .cx-chip { margin-left: auto; }

.cx-qr {
  background: var(--cx-blanco); border-radius: var(--cx-radius);
  box-shadow: 0 6px 24px rgba(20,35,42,.1); border-top: 4px solid var(--cx-agua);
  padding: 1.5rem; text-align: center; max-width: 340px; margin: 0 auto;
}
.cx-qr__titulo { font-weight: 700; font-size: 1.05rem; margin: 0 0 .8rem; color: var(--cx-agua-oscuro); }
.cx-qr__canvas-wrap { display: inline-block; padding: 10px; background: #fff; border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(20,35,42,.08); }
.cx-qr__canvas-wrap canvas { display: block; }
.cx-qr__ref { font-weight: 700; letter-spacing: .06em; color: var(--cx-agua-oscuro); margin: .8rem 0 .3rem; }
.cx-qr__texto { font-size: .88rem; color: rgba(20,35,42,.65); margin: .3rem 0 1rem; }

.cx-rc { text-align: center; padding: var(--cx-section-py) 0; }
.cx-rc__ref {
  display: inline-block; background: var(--cx-blanco); border: 2px dashed var(--cx-agua);
  border-radius: 12px; padding: .7rem 1.6rem; font-size: 1.5rem; font-weight: 700;
  letter-spacing: .06em; color: var(--cx-agua-oscuro); margin: .3rem 0 0;
}
.cx-rc__ref-label { margin: 0; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(20,35,42,.5); font-weight: 700; }

/* Confirmación — hero de éxito */
.cx-rc-hero { max-width: 640px; margin: 0 auto; }
.cx-rc-hero__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%; margin-bottom: 1rem;
  background: radial-gradient(circle at 50% 40%, var(--cx-whatsapp), #1aa851); color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.35); animation: cx-pop .4s ease-out both;
}
@keyframes cx-pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .cx-rc-hero__check { animation: none; } }

/* Badge de estado (Mi reserva) */
.cx-estado-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  border-radius: 99px; padding: .4rem .95rem; font-weight: 700; font-size: .9rem;
}
.cx-estado-badge__dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* Nota de personas ingresadas */
.cx-resumen__ingreso { margin: .9rem 0 0; padding: .55rem .8rem; background: #D7F5EE; color: #0F6E56; border-radius: 8px; font-weight: 600; font-size: .9rem; }

/* ¿Qué sigue? — pasos */
.cx-rc-steps { margin-top: 1.2rem; }
.cx-rc-steps__head { font-weight: 700; margin: 0 0 .6rem; color: var(--cx-agua-oscuro); }
.cx-rc-steps ol { margin: 0; padding: 0; list-style: none; counter-reset: rc; }
.cx-rc-steps li {
  counter-increment: rc; position: relative; padding: .35rem 0 .35rem 2.2rem;
  font-size: .92rem; color: rgba(20,35,42,.8); line-height: 1.4;
}
.cx-rc-steps li::before {
  content: counter(rc); position: absolute; left: 0; top: .3rem;
  width: 26px; height: 26px; border-radius: 50%; background: var(--cx-caliza); color: var(--cx-agua-oscuro);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem;
}

/* Acciones de reserva */
.cx-rc-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.3rem; }
.cx-btn--cancelar { background: none; color: var(--cx-rojo); border: 1.5px solid var(--cx-rojo); }
.cx-btn--cancelar:hover { background: var(--cx-rojo); color: #fff; }

/* Booking móvil: barra inferior + sheet */
@media (max-width: 991px) {
  .cx-product__aside {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    transform: translateY(calc(100% - 64px));
    transition: transform .28s ease;
    max-height: 88vh; overflow-y: auto;
  }
  .cx-product__aside.is-open { transform: translateY(0); }
  .cx-booking { border-radius: 18px 18px 0 0; box-shadow: 0 -8px 30px rgba(20,35,42,.25); }
  .cx-booking__bar {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 64px; cursor: pointer; gap: 1rem;
  }
  .cx-booking__bar .cx-booking__price { font-size: 1.15rem; margin: 0; white-space: nowrap; }
  .cx-booking__bar .cx-booking__price small { font-size: .72rem; }
  .cx-booking__bar-cta { padding: .55rem 1.1rem; font-size: .9rem; white-space: nowrap; }
  body.cx-has-booking .cx-sticky-cta { display: none; }
  body.cx-has-booking { padding-bottom: 72px; }
  .cx-booking { padding-top: .6rem; }
}
@media (min-width: 992px) {
  .cx-booking__bar-cta { display: none; }
}

/* ── Página de contacto ────────────────────────────────────── */
.cx-contact { background: var(--cx-caliza); }
.cx-section__lede { max-width: 58ch; margin: -.4rem auto 0; color: rgba(20,35,42,.72); line-height: 1.6; font-size: 1.05rem; }

/* Grid principal: WhatsApp (canal héroe) + formulario de respaldo */
.cx-contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.5rem; align-items: stretch; }
@media (max-width: 860px) { .cx-contact__grid { grid-template-columns: 1fr; } }

/* Panel WhatsApp — gradiente agua (misma receta que .cx-fcta) */
.cx-contact__wa {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--cx-agua) 0%, var(--cx-agua-oscuro) 100%);
  border-radius: var(--cx-radius); padding: 2.2rem 2rem;
  box-shadow: 0 16px 34px rgba(11,79,92,.22);
  display: flex; flex-direction: column;
}
.cx-contact__wa::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 12%, rgba(255,255,255,.12), transparent 45%),
              radial-gradient(circle at 8% 100%, rgba(217,164,65,.18), transparent 42%);
}
.cx-contact__wa > * { position: relative; }
.cx-contact__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 15px; margin-bottom: 1rem;
  background: rgba(255,255,255,.14); color: #fff;
}
.cx-contact__badge svg { width: 26px; height: 26px; }
.cx-contact__micro { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: #fff; margin: 0 0 .3rem; } /* blanco sobre el gradiente turquesa → contraste AA */
.cx-contact__wa-title { font-family: var(--cx-font-display); font-size: clamp(1.6rem,3.4vw,2.1rem); line-height: 1.1; margin: 0 0 .5rem; color: #fff; }
.cx-contact__wa-promise { margin: 0 0 1.1rem; opacity: .92; line-height: 1.5; }
.cx-contact__trust { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .5rem; }
.cx-contact__trust li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; opacity: .96; }
.cx-contact__trust li svg { flex: none; margin-top: .12rem; color: #fff; } /* checks en blanco → legibles sobre el gradiente */
.cx-contact__wa-btn { align-self: flex-start; }
.cx-contact__social { margin-top: auto; padding-top: 1.6rem; display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.cx-contact__social-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; font-weight: 700; margin-right: .15rem; } /* blanco pleno → contraste AA */
.cx-contact__social a {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.cx-contact__social a:hover { background: var(--cx-sol); color: var(--cx-agua-oscuro); transform: translateY(-2px); }

/* Tarjeta del formulario (inputs heredan .cx-booking__form → cero CSS de inputs) */
.cx-contact__form {
  background: var(--cx-blanco); border-radius: var(--cx-radius); padding: 2.2rem 2rem;
  box-shadow: 0 2px 12px rgba(20,35,42,.06); border: 1px solid rgba(20,35,42,.05);
  border-top: 3px solid var(--cx-agua);
  display: flex; flex-direction: column; justify-content: center;
}
.cx-contact__form-title { font-family: var(--cx-font-display); font-size: 1.45rem; margin: 0 0 .4rem; color: var(--cx-agua-oscuro); }
.cx-contact__form-intro { margin: 0; color: rgba(20,35,42,.7); font-size: .95rem; line-height: 1.5; }
.cx-contact__ok { display: flex; gap: .8rem; align-items: center; margin: 0; }
.cx-contact__badge--ok { width: 44px; height: 44px; background: var(--cx-whatsapp); color: #fff; border-radius: 50%; flex: none; margin: 0; }
.cx-contact__badge--ok svg { width: 22px; height: 22px; }
.cx-contact__ok p { margin: 0; }

/* Tarjetas de canal secundario — toda la tarjeta es enlace (1 tap en móvil) */
.cx-contact__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 720px) { .cx-contact__cards { grid-template-columns: 1fr; } }
.cx-contact__card {
  display: flex; flex-direction: column; gap: .18rem;
  background: var(--cx-blanco); border-radius: var(--cx-radius); padding: 1.4rem 1.5rem;
  box-shadow: 0 2px 12px rgba(20,35,42,.06); border: 1px solid rgba(20,35,42,.05);
  text-decoration: none; color: var(--cx-tinta);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cx-contact__card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,35,42,.12); }
.cx-contact__card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: .65rem;
  background: linear-gradient(140deg, rgba(14,124,134,.12), rgba(66,160,216,.14)); color: var(--cx-agua);
}
.cx-contact__card-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(20,35,42,.55); font-weight: 700; }
.cx-contact__card-value { font-family: var(--cx-font-body); font-weight: 700; color: var(--cx-agua-oscuro); font-size: 1.02rem; word-break: break-word; }
.cx-contact__card-action { display: inline-flex; align-items: center; gap: .3rem; margin-top: .5rem; color: var(--cx-agua); font-size: .85rem; font-weight: 600; }
.cx-contact__card-action svg { transition: transform .18s ease; }
.cx-contact__card:hover .cx-contact__card-action svg { transform: translateX(4px); }

/* íconos de la barra info del mapa (sustituyen a los emoji) */
.cx-mapa__ico { display: inline-flex; color: var(--cx-agua); }
/* fondo blanco para la sección del mapa dentro de contacto (alterna con caliza) */
.cx-section--alt { background: var(--cx-blanco); }

/* ── WhatsApp Gate — widget conversacional de captura de lead ── */
.cx-wagate { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.cx-wagate[hidden] { display: none; }
.cx-wagate__backdrop { position: absolute; inset: 0; background: rgba(11,44,52,.58); backdrop-filter: blur(4px); }
.cx-wagate__card {
  position: relative; width: min(430px, 100%); background: var(--cx-blanco);
  border-radius: var(--cx-radius-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,44,52,.4); animation: cx-wagate-in .26s var(--cx-ease);
}
@keyframes cx-wagate-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cx-wagate__card { animation: none; } }

/* Encabezado tipo chat */
.cx-wagate__head {
  display: flex; align-items: center; gap: .7rem;
  padding: .85rem 1rem; color: #fff;
  background: linear-gradient(120deg, #128C7E, var(--cx-whatsapp));
}
.cx-wagate__avatar {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.2);
}
.cx-wagate__avatar svg { width: 22px; height: 22px; }
.cx-wagate__id { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.cx-wagate__id strong { font-size: .98rem; }
.cx-wagate__online { font-size: .74rem; opacity: .92; display: inline-flex; align-items: center; gap: .35rem; }
.cx-wagate__online::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #C6F6D5; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }
.cx-wagate__x {
  margin-left: auto; border: 0; background: rgba(255,255,255,.15); color: #fff;
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  font-size: 1.35rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .15s ease;
}
.cx-wagate__x:hover { background: rgba(255,255,255,.3); }

/* Progreso */
.cx-wagate__dots { display: flex; gap: .4rem; justify-content: center; padding: .9rem 0 .2rem; }
.cx-wagate__dots span { width: 26px; height: 4px; border-radius: 99px; background: rgba(20,35,42,.14); transition: background .25s ease; }
.cx-wagate__dots span.is-on { background: var(--cx-whatsapp); }

.cx-wagate__body { padding: .6rem 1.5rem 1.5rem; text-align: center; }
.cx-wagate__step { animation: cx-wagate-step .28s var(--cx-ease); }
@keyframes cx-wagate-step { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cx-wagate__step { animation: none; } }
.cx-wagate__title { font-family: var(--cx-font-display); font-size: 1.4rem; line-height: 1.15; margin: .4rem 0 .3rem; color: var(--cx-agua-oscuro); text-wrap: balance; }
.cx-wagate__text { font-size: .9rem; color: rgba(20,35,42,.72); margin: 0 0 1rem; }

/* Chips de interés (paso 1) */
.cx-wagate__chips { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.cx-wagate__chip {
  display: flex; align-items: center; gap: .55rem; text-align: left;
  padding: .7rem .8rem; border-radius: 12px; cursor: pointer; font: inherit;
  font-size: .9rem; font-weight: 600; color: var(--cx-tinta);
  background: var(--cx-caliza); border: 1.5px solid transparent;
  transition: border-color .15s ease, transform .12s var(--cx-ease), background .15s ease;
}
.cx-wagate__chip:hover { border-color: var(--cx-whatsapp); transform: translateY(-2px); }
.cx-wagate__chip.is-sel { border-color: var(--cx-whatsapp); background: rgba(37,211,102,.12); }
.cx-wagate__chip-emoji { font-size: 1.2rem; line-height: 1; flex: none; }
@media (max-width: 380px) { .cx-wagate__chips { grid-template-columns: 1fr; } }

/* Campos (paso 2) */
.cx-wagate__field { text-align: left; margin-bottom: 1rem; }
.cx-wagate__field label { display: block; font-size: .82rem; font-weight: 700; color: #40525A; margin-bottom: .4rem; }
.cx-wagate__counter { display: inline-flex; align-items: center; gap: 1rem; background: var(--cx-caliza); border-radius: 12px; padding: .35rem .5rem; }
.cx-wagate__counter button {
  width: 38px; height: 38px; border-radius: 10px; border: 0; cursor: pointer;
  background: #fff; color: var(--cx-agua-oscuro); font-size: 1.3rem; font-weight: 700; line-height: 1;
  box-shadow: 0 1px 3px rgba(20,35,42,.12); transition: background .12s ease;
}
.cx-wagate__counter button:hover { background: var(--cx-whatsapp); color: #fff; }
.cx-wagate__counter output { min-width: 2.2rem; text-align: center; font-size: 1.2rem; font-weight: 800; color: var(--cx-agua-oscuro); }
.cx-wagate__field input[type="date"] {
  width: 100%; padding: .65rem .8rem; border: 1.5px solid rgba(20,35,42,.2);
  border-radius: 10px; font: inherit; font-size: .95rem; color: var(--cx-tinta);
}
.cx-wagate__link { background: none; border: 0; color: var(--cx-agua); font-size: .82rem; font-weight: 600; cursor: pointer; padding: .4rem 0 0; text-decoration: underline; }

/* Inputs de contacto (paso 3) */
.cx-wagate__step input[type="text"], .cx-wagate__step input[type="tel"] {
  width: 100%; padding: .7rem .85rem; margin-bottom: .55rem; border: 1.5px solid rgba(20,35,42,.2);
  border-radius: 10px; font: inherit; font-size: .95rem;
}
.cx-wagate__step input:focus { outline: none; border-color: var(--cx-whatsapp); box-shadow: 0 0 0 3px rgba(37,211,102,.18); }
.cx-wagate__err { font-size: .82rem; color: var(--cx-rojo); margin: .1rem 0 .3rem; }
.cx-wagate__err[hidden] { display: none; }
/* Resumen de lo ya elegido (atajo desde el sidebar de reserva) */
.cx-wagate__resumen {
  display: inline-block; margin: 0 0 .8rem; padding: .5rem .9rem;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3);
  border-radius: 10px; font-size: .85rem; font-weight: 600; color: var(--cx-agua-oscuro);
}
.cx-wagate__resumen[hidden] { display: none; }

/* Navegación entre pasos */
.cx-wagate__nav { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; }
.cx-wagate__back { background: none; border: 0; color: rgba(20,35,42,.55); font-size: .88rem; font-weight: 600; cursor: pointer; padding: .5rem .3rem; flex: none; }
.cx-wagate__back:hover { color: var(--cx-tinta); }
.cx-wagate__next { flex: 1; justify-content: center; }
.cx-wagate__btn { width: 100%; justify-content: center; }

.cx-wagate__legal { font-size: .76rem; color: rgba(20,35,42,.55); margin: .9rem 0 0; }
.cx-wagate__legal a { color: var(--cx-agua); }

/* Paso 4 — folio */
.cx-wagate__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; margin: .5rem 0 .3rem;
  background: var(--cx-whatsapp); color: #fff;
}
.cx-wagate__badge svg { width: 28px; height: 28px; }
.cx-wagate__badge--ok { background: var(--cx-selva); animation: cx-pop .4s ease-out both; }
.cx-wagate__folio {
  font-size: 1.5rem; font-weight: 800; letter-spacing: .08em; color: var(--cx-agua-oscuro);
  background: var(--cx-caliza); border: 1.5px dashed var(--cx-whatsapp); border-radius: 10px;
  padding: .45rem 1rem; display: inline-block; margin: .2rem 0 .3rem;
}
.cx-wagate__hint { font-size: .8rem; color: rgba(20,35,42,.55); margin: 0 0 1rem; }
.cx-wagate__promo { background: rgba(217,164,65,.14); border-radius: 10px; padding: .7rem .9rem; margin: 0 0 1rem; }
.cx-wagate__promo p { margin: 0; font-size: .84rem; color: rgba(20,35,42,.75); }
.cx-wagate__promo strong { font-size: 1.15rem; letter-spacing: .08em; color: var(--cx-agua-oscuro); }

@media (max-width: 480px) {
  .cx-wagate { align-items: flex-end; padding: 0; }
  .cx-wagate__card { border-radius: var(--cx-radius-lg) var(--cx-radius-lg) 0 0; width: 100%; }
  .cx-wagate__body { padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
}
@media print { .cx-wagate { display: none !important; } }

/* ============================================================
   Rediseño "cenote vivo" — bandas CTA con foto, FAQ y remates
   ============================================================ */

/* ── Banda CTA con foto (cx2/banda-cta.php) ────────────────── */
.cx-banda-wrap { padding: clamp(1rem, 3vw, 2rem) 0 var(--cx-section-py); }
.cx-banda {
  position: relative; overflow: hidden;
  border-radius: var(--cx-radius-lg);
  min-height: 320px; display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: #fff; box-shadow: var(--cx-sombra-2);
}
.cx-banda__velo { position: absolute; inset: 0; }
.cx-banda--agua .cx-banda__velo {
  background: linear-gradient(95deg, rgba(8,58,68,.88) 18%, rgba(11,79,92,.6) 55%, rgba(11,79,92,.18) 90%);
}
.cx-banda--atardecer .cx-banda__velo {
  background: linear-gradient(95deg, rgba(74,27,12,.86) 18%, rgba(190,90,38,.55) 60%, rgba(217,164,65,.2) 92%);
}
.cx-banda--selva .cx-banda__velo {
  background: linear-gradient(95deg, rgba(18,46,30,.88) 18%, rgba(46,93,63,.58) 60%, rgba(46,93,63,.18) 92%);
}
.cx-banda__inner {
  position: relative; padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.4rem, 5vw, 3.4rem);
  max-width: 620px;
}
.cx-banda__kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; font-weight: 700;
  color: var(--cx-sol); margin: 0 0 .55rem;
}
.cx-banda__title {
  font-family: var(--cx-font-display); font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.08; margin: 0 0 .6rem; color: #fff; text-wrap: balance;
}
.cx-banda__title em { font-style: italic; color: #FFD98A; }
.cx-banda--agua .cx-banda__title em { color: #9FE8EF; }
.cx-banda__text { margin: 0 0 1.4rem; opacity: .92; line-height: 1.6; max-width: 46ch; }
.cx-banda__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
/* Burbujas sutiles también en la banda de agua */
.cx-banda--agua::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background:
    radial-gradient(circle 4px at 78% 78%, rgba(255,255,255,.35) 48%, transparent 52%),
    radial-gradient(circle 6px at 86% 40%, rgba(255,255,255,.25) 48%, transparent 52%),
    radial-gradient(circle 3px at 70% 25%, rgba(255,255,255,.3) 48%, transparent 52%);
}
@media (max-width: 640px) {
  .cx-banda { min-height: 0; }
  .cx-banda--agua .cx-banda__velo,
  .cx-banda--atardecer .cx-banda__velo,
  .cx-banda--selva .cx-banda__velo { background: linear-gradient(180deg, rgba(8,42,50,.72), rgba(8,42,50,.85)); }
}

/* ── FAQ: apertura más viva ────────────────────────────────── */
.cx-faq__item { transition: box-shadow .2s ease, transform .2s ease; }
.cx-faq__item:hover { transform: translateX(4px); }
.cx-faq__a { animation: cx-faq-in .3s var(--cx-ease); }
@keyframes cx-faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cx-faq__a { animation: none; } .cx-faq__item:hover { transform: none; } }

/* ── FCTA: burbujas + remate de ola superior ───────────────── */
.cx-fcta::after {
  content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v8c-140 14-300-10-460-2S700 24 540 17 180 4 0 19z' fill='%23F4EFE6'/%3E%3C/svg%3E") top / 100% 100% no-repeat;
}

/* ── Reseñas: comilla decorativa y hover ───────────────────── */
.cx-review { position: relative; transition: transform .2s var(--cx-ease), box-shadow .2s var(--cx-ease); }
.cx-review:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(20,35,42,.12); }
.cx-review::before {
  content: '”'; position: absolute; bottom: -1.4rem; right: .9rem;
  font-family: var(--cx-font-display); font-size: 4.2rem; line-height: 1;
  color: rgba(14,124,134,.13); pointer-events: none;
}
