/* =============================================================
   YUPILANDIA FAMILY FUN — styles.css
   Versión: 20260712
   =============================================================
   1. Tokens (custom properties)
   2. Reset & base
   3. Utilidades
   4. Skip link / accesibilidad
   5. Cursor personalizado
   6. Splash
   7. Navbar
   8. Hero
   9. Marquee
   10. Historia (Sección 01)
   11. Ventajas (Sección 02)
   12. Instalaciones / Galería (Sección 03)
   13. Eventos (Sección 04)
   14. Cómo funciona (Sección 05)
   15. Reserva (Sección 06)
   16. Reseñas
   17. Footer
   18. WhatsApp flotante
   19. Cookies
   20. Reveal animations
   21. Responsive
   22. Reduced-motion (solo efectos intrusivos)
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Colores de marca */
  --bg:             #FFFCF7;
  --bg-alt:         #FFF8EE;
  --white:          #FFFFFF;

  --sky:            #5BB8F5;
  --sky-light:      #D6EFFD;
  --yellow:         #FFD31D;
  --yellow-light:   #FFF8CC;
  --coral:          #FF6F61;
  --coral-light:    #FFE4E1;
  --turquoise:      #3ECFCA;
  --turquoise-light:#C8F5F3;
  --purple:         #9B5DE5;
  --purple-light:   #E8D8FF;

  --ink:            #1E1B3A;
  --ink-soft:       #3D3A5C;
  --ink-mute:       #8885AA;
  --line:           rgba(30,27,58,0.12);

  /* Accent principal */
  --accent:         var(--coral);
  --accent-dark:    #E85A4D;
  --accent-2:       var(--sky);

  /* Spacing */
  --gutter:         clamp(1.25rem, 4vw, 2.5rem);
  --max-w:          1200px;
  --section-py:     clamp(5rem, 10vw, 9rem);

  /* Radios */
  --r-card:         20px;
  --r-btn:          100px;
  --r-sm:           12px;

  /* Tipografía */
  --font-display:   "Fredoka", "Comic Sans MS", system-ui, sans-serif;
  --font-body:      "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:      "Space Mono", "Courier New", monospace;

  /* Easings */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Sombras */
  --shadow-card:    0 4px 24px rgba(30,27,58,0.08), 0 1px 4px rgba(30,27,58,0.04);
  --shadow-hover:   0 12px 48px rgba(30,27,58,0.14), 0 4px 12px rgba(30,27,58,0.08);
  --shadow-btn:     0 4px 16px rgba(255,111,97,0.35);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  cursor: none; /* cursor personalizado activo */
}

@media (hover: none) {
  body { cursor: auto; }
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; letter-spacing: -0.02em; }

::selection { background: var(--coral); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* =============================================================
   3. UTILIDADES
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 11rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--line);
  line-height: 1;
  user-select: none;
  display: block;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.link-accent {
  color: var(--coral);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.link-accent:hover { color: var(--accent-dark); }

/* =============================================================
   4. BOTONES
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 28px rgba(255,111,97,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(255,111,97,0.15);
}

.btn-nav {
  background: var(--coral);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  box-shadow: 0 3px 12px rgba(255,111,97,0.3);
}
.btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.825rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* =============================================================
   5. SKIP LINK
   ============================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  padding: 0.6rem 1rem;
  background: var(--coral);
  color: var(--white);
  z-index: 10000;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   5. CURSOR PERSONALIZADO
   ============================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }

.cursor-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
}

.cursor-ring {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s, border-color 0.2s;
}

.cursor.is-hovering .cursor-dot {
  width: 14px; height: 14px;
  background: var(--yellow);
}
.cursor.is-hovering .cursor-ring {
  width: 50px; height: 50px;
  border-color: var(--yellow);
  opacity: 0.7;
}

@media (hover: none) {
  .cursor { display: none; }
}

/* =============================================================
   6. SPLASH
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  /* Safety: hide at 5s even if JS fails */
  animation: splashSafety 0.01s 5s forwards;
}

@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.splash-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.splash-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.splash-logo { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

.splash-letters {
  display: flex;
  gap: 2px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
}

.splash-letters span {
  display: inline-block;
  animation: splashLetterPop 0.5s var(--ease-bounce) both;
  animation-delay: calc(var(--d) * 0.06s);
}

/* Colores de letras del logo en splash */
.splash-letters span:nth-child(1) { color: var(--coral); }
.splash-letters span:nth-child(2) { color: var(--yellow); }
.splash-letters span:nth-child(3) { color: var(--sky); }
.splash-letters span:nth-child(4) { color: var(--turquoise); }
.splash-star { color: var(--purple); font-size: 0.6em; align-self: center; }
.splash-letters span:nth-child(6) { color: var(--coral); }
.splash-letters span:nth-child(7) { color: var(--sky); }
.splash-letters span:nth-child(8) { color: var(--yellow); }
.splash-letters span:nth-child(9) { color: var(--turquoise); }
.splash-letters span:nth-child(10) { color: var(--purple); }
.splash-letters span:nth-child(11) { color: var(--coral); }

@keyframes splashLetterPop {
  from { opacity: 0; transform: translateY(30px) scale(0.7); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-sub {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  animation: splashFadeIn 0.5s 0.8s both;
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.splash-bar-wrap {
  width: 200px;
  animation: splashFadeIn 0.5s 1s both;
}

.splash-bar {
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}

.splash-progress {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--sky));
  width: 0%;
  animation: splashBarFill 2.5s 0.5s var(--ease-soft) forwards;
}

@keyframes splashBarFill {
  to { width: 100%; }
}

/* =============================================================
   7. NAVBAR
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.is-scrolled {
  background: rgba(255,252,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,27,58,0.08);
  padding: 0.65rem 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s var(--ease-bounce);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-10deg) scale(1.1); }

.nav-logo-text {
  background: linear-gradient(135deg, var(--coral), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-btn);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--coral);
  background: var(--coral-light);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--coral-light); }

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.2s;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255,252,247,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-mobile.is-open { display: flex; }

.nav-mobile li { border-bottom: 1px solid var(--line); }
.nav-mobile li:last-child { border-bottom: none; margin-top: 0.75rem; }

.nav-mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--coral); }

/* =============================================================
   8. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,27,58,0.25) 0%,
    rgba(30,27,58,0.55) 50%,
    rgba(30,27,58,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 8rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: heroReveal 0.8s 0.3s both;
}

.hero-star {
  color: var(--yellow);
  font-size: 0.8em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
  text-wrap: balance;
  animation: heroReveal 0.8s 0.5s both;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  animation: heroReveal 0.8s 0.7s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: heroReveal 0.8s 0.9s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: heroReveal 0.8s 1.1s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-btn);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: heroReveal 0.8s 1.3s both;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-btn);
  padding: 0.5rem 1rem;
  width: fit-content;
}

.hero-stars { color: var(--yellow); font-size: 1rem; }
.hero-rating-num { font-weight: 700; color: var(--white); font-family: var(--font-display); font-size: 1.1rem; }
.hero-rating-info { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  animation: bounce 2s infinite;
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* =============================================================
   9. MARQUEE
   ============================================================= */
.marquee-band {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8C7A 100%);
  padding: 0.875rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.marquee-dot {
  color: var(--yellow);
  opacity: 0.8;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   10. HISTORIA (Sección 01)
   ============================================================= */
.historia {
  padding-block: var(--section-py);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.historia::before {
  content: "01";
  position: absolute;
  top: -2rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(30,27,58,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.historia-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.historia-num-col {
  display: none;
}

.historia-ficha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.ficha-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ficha-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

.ficha-item strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.historia-titulo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.historia-titulo em {
  font-style: normal;
  color: var(--coral);
}

.historia-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.historia-body strong { color: var(--ink); }

.historia-content { display: flex; flex-direction: column; gap: 1.5rem; }
.historia-content .btn { align-self: flex-start; margin-top: 0.5rem; }

.historia-collage { display: none; }

/* =============================================================
   11. VENTAJAS (Sección 02)
   ============================================================= */
.ventajas {
  padding-block: var(--section-py);
  background: var(--bg-alt);
  overflow: hidden;
}

.ventajas-header {
  text-align: center;
  padding-inline: var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: 3rem;
}

.ventajas-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.ventajas-header h2 em { font-style: normal; color: var(--coral); }

.ventajas-intro {
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-inline: auto;
}

.ventajas-scroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1.5rem;
  cursor: grab;
}
.ventajas-scroll-wrap::-webkit-scrollbar { display: none; }
.ventajas-scroll-wrap.is-grabbing { cursor: grabbing; }

.ventajas-track {
  display: flex;
  gap: 1.25rem;
  padding-inline: var(--gutter);
  width: max-content;
}

.ventaja-card {
  width: clamp(260px, 75vw, 320px);
  flex-shrink: 0;
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.ventaja-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--r-card) var(--r-card) 0 0;
  transition: height 0.3s var(--ease-out);
}

.ventaja-card[data-color="coral"]::before     { background: var(--coral); }
.ventaja-card[data-color="yellow"]::before    { background: var(--yellow); }
.ventaja-card[data-color="sky"]::before       { background: var(--sky); }
.ventaja-card[data-color="turquoise"]::before { background: var(--turquoise); }
.ventaja-card[data-color="purple"]::before    { background: var(--purple); }

.ventaja-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ventaja-card:hover::before { height: 6px; }

.ventaja-emoji {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.ventaja-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.ventaja-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}

.ventaja-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.ventajas-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s, transform 0.2s;
}
.dot.active {
  background: var(--coral);
  transform: scale(1.25);
}

/* =============================================================
   12. INSTALACIONES (Sección 03)
   ============================================================= */
.instalaciones {
  padding-block: var(--section-py);
  background: var(--bg);
}

.instalaciones-header {
  text-align: center;
  margin-bottom: 3rem;
}
.instalaciones-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.instalaciones-header h2 em { font-style: normal; color: var(--sky); }
.instalaciones-intro { color: var(--ink-mute); max-width: 50ch; margin-inline: auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  background: var(--line);
}

.gallery-item.gallery-large { grid-column: span 2; }
.gallery-item.gallery-wide  { grid-column: span 2; }

.gallery-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.gallery-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
  min-height: 200px;
}

.gallery-item:hover .gallery-inner img { transform: scale(1.06); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(0deg, rgba(30,27,58,0.75) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(4px);
  transition: transform 0.3s var(--ease-out);
}

.gallery-item:hover .gallery-label { transform: translateY(0); }

.gallery-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink-mute);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* =============================================================
   13. EVENTOS (Sección 04)
   ============================================================= */
.eventos {
  padding-block: var(--section-py);
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.eventos-header {
  text-align: center;
  margin-bottom: 3rem;
}
.eventos-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.eventos-header h2 em { font-style: normal; color: var(--turquoise); }

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.evento-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.evento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.evento-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.evento-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.evento-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.eventos-extra {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--purple-light), var(--sky-light));
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(155,93,229,0.15);
}

.eventos-extra-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.eventos-extra-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.eventos-extra-content p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =============================================================
   14. CÓMO FUNCIONA (Sección 05)
   ============================================================= */
.como-funciona {
  padding-block: var(--section-py);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.como-funciona::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,111,97,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(91,184,245,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.como-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.como-header .section-num {
  -webkit-text-stroke-color: rgba(255,255,255,0.08);
}

.como-header .section-kicker { color: var(--yellow); }

.como-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.como-header h2 em { font-style: normal; color: var(--yellow); }

.como-intro {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 50ch;
  margin-inline: auto;
}

.pasos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.paso {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card);
  padding: 1.75rem;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}

.paso:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,111,97,0.3);
  transform: translateY(-3px);
}

.paso-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.paso-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.paso h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.paso p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

.paso-arrow {
  display: none;
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 700;
}

/* =============================================================
   15. RESERVA (Sección 06)
   ============================================================= */
.reserva {
  padding-block: var(--section-py);
  background: var(--bg);
  position: relative;
}

.reserva::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -10%;
  right: -10%;
  height: 160px;
  background: var(--bg);
  border-radius: 50%;
}

.reserva-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reserva-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.reserva-header h2 em { font-style: normal; color: var(--coral); }
.reserva-intro { color: var(--ink-mute); max-width: 55ch; margin-inline: auto; font-size: 0.95rem; }

.reserva-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Form */
.reserva-form {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,111,97,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-mute);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}

/* Info card */
.info-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--coral-light);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
}

.info-value {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

a.info-value:hover { color: var(--coral); }

.mapa-wrap {
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.mapa-wrap iframe { display: block; }

/* =============================================================
   16. RESEÑAS
   ============================================================= */
.resenas {
  padding-block: var(--section-py);
  background: var(--bg-alt);
}

.resenas-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.resenas-rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.resenas-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.resenas-stars {
  color: var(--yellow);
  font-size: 1.75rem;
  letter-spacing: 4px;
}

.resenas-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

.resenas-titulo {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
}
.resenas-titulo em { font-style: normal; color: var(--coral); }

.resenas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.resena-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.resena-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.resena-stars { color: var(--yellow); font-size: 0.9rem; }

.resena-card blockquote p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
}

.resena-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.5rem;
}

.resena-card footer strong {
  font-size: 0.85rem;
  color: var(--ink);
  font-style: normal;
}

.resena-card footer time {
  font-size: 0.75rem;
  color: var(--ink-mute);
  font-family: var(--font-mono);
}

.resenas-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* =============================================================
   17. FOOTER
   ============================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer-confetti {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  font-size: 1.5rem;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.footer-hero-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 15vw, 10rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  line-height: 0.9;
  text-align: center;
  user-select: none;
  margin-bottom: -1rem;
  white-space: nowrap;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.footer-tagline em { font-style: normal; color: var(--yellow); }

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.footer-col address {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.2s;
  line-height: 1.65;
}

.footer-col a:hover { color: var(--yellow); }

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}
.link-btn:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-credit a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--yellow); }

.back-to-top {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-bounce);
}
.back-to-top:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-3px);
}

/* =============================================================
   18. WHATSAPP FLOTANTE
   ============================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-btn);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  animation: floatPop 0.6s 1.5s both;
}

@keyframes floatPop {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-float-label {
  white-space: nowrap;
}

/* =============================================================
   19. COOKIES
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 700;
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  padding: 1rem var(--gutter);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner .btn-ghost {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.2);
}
.cookie-banner .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal[hidden] { display: none; }

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,27,58,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cookie-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-card);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(30,27,58,0.25);
  overflow: hidden;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.cookie-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.cookie-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal-close:hover { background: var(--coral-light); color: var(--coral); }

.cookie-modal-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-modal-body > p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.cookie-option:last-child { border-bottom: none; padding-bottom: 0; }

.cookie-option-info { flex: 1; }
.cookie-option-info strong { display: block; font-size: 0.875rem; color: var(--ink); margin-bottom: 0.3rem; }
.cookie-option-info p { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.5; }

.toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 100px;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px; left: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease-bounce);
}
.toggle input:checked + .toggle-slider { background: var(--turquoise); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle.disabled { opacity: 0.5; cursor: not-allowed; }

.cookie-modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.cookie-modal-footer .btn-ghost {
  color: var(--ink-soft);
  border-color: var(--line);
}

/* =============================================================
   20. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal[data-split] {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger for grid children */
.eventos-grid .reveal:nth-child(1) { transition-delay: 0s; }
.eventos-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.eventos-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.eventos-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.eventos-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.eventos-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.gallery-grid .reveal:nth-child(1) { transition-delay: 0s; }
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.25s; }

.pasos-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pasos-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pasos-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.pasos-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.resenas-grid .reveal:nth-child(1) { transition-delay: 0s; }
.resenas-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.resenas-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.resenas-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.resenas-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.resenas-grid .reveal:nth-child(6) { transition-delay: 0.35s; }

/* =============================================================
   21. RESPONSIVE
   ============================================================= */

/* ─── 540px + ─── */
@media (min-width: 540px) {
  .hero-ctas { flex-wrap: nowrap; }
  .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner-actions { flex-wrap: nowrap; }
}

/* ─── 720px + ─── */
@media (min-width: 720px) {

  .nav-burger { display: none; }
  .nav-links { display: flex; }
  .nav-mobile { display: none !important; }

  .historia-layout { grid-template-columns: 1fr 1.5fr; }
  .historia-num-col { display: flex; flex-direction: column; gap: 2rem; }

  .ventajas-track { width: auto; display: grid; grid-template-columns: repeat(3, 1fr); }
  .ventaja-card { width: auto; }
  .ventajas-scroll-wrap { overflow-x: visible; cursor: default; }
  .ventajas-dots { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
  }
  .gallery-item.gallery-large { grid-column: span 2; }
  .gallery-item.gallery-wide  { grid-column: span 2; }
  .gallery-item.gallery-tall  { grid-row: span 2; }
  .gallery-inner img { min-height: auto; height: 100%; }

  .eventos-grid { grid-template-columns: repeat(3, 1fr); }

  .pasos-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .paso {
    border-radius: 0;
    border-right: none;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .paso:first-child { border-left: none; border-radius: var(--r-card) 0 0 var(--r-card); }
  .paso:last-child  { border-radius: 0 var(--r-card) var(--r-card) 0; }
  .paso-arrow { display: block; margin-top: auto; }

  .reserva-layout { grid-template-columns: 1fr 1fr; }

  .resenas-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ─── 960px + ─── */
@media (min-width: 960px) {

  .historia-layout { grid-template-columns: auto 1.5fr 1.5fr; }
  .historia-collage { display: block; }

  .collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 0.75rem;
    height: 100%;
  }

  .collage-card {
    border-radius: var(--r-card);
    overflow: hidden;
    background: var(--line);
  }

  .collage-card.collage-tall { grid-row: span 2; }
  .collage-card.collage-wide { grid-column: span 2; }

  .collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
  }
  .collage-card:hover img { transform: scale(1.06); }

  .resenas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── 1280px + ─── */
@media (min-width: 1280px) {
  .whatsapp-float-label { display: inline; }
}

/* ─── max 1280px (mobile whatsapp) ─── */
@media (max-width: 1279px) {
  .whatsapp-float { padding: 0.875rem; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .whatsapp-float-label { display: none; }
}

/* =============================================================
   22. REDUCED-MOTION (solo efectos verdaderamente intrusivos)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash-progress { animation: none; width: 100%; }
  .hero-scroll-arrow { animation: none; }
  .marquee-track { animation-duration: 60s; }
  /* NO desactivar: tilts, hovers, fades, reveals — son microinteracciones funcionales */
}

/* =============================================================
   23. ACTUALIZACIONES v20260713 — fotos reales, logo, rediseño
   ============================================================= */

/* ── Splash con logo real ── */
.splash-logo-img {
  width: clamp(200px, 55vw, 340px);
  height: auto;
  border-radius: var(--r-card);
  animation: splashLogoIn 0.9s 0.15s var(--ease-bounce) both;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.12));
}

@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(0.65) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.splash-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--coral);
  animation: splashFadeIn 0.5s 1s both;
}

/* ── Nav con logo real ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s var(--ease-bounce), filter 0.2s;
  display: block;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 4px 12px rgba(255,111,97,0.35));
}

.nav.is-scrolled .nav-logo-img { height: 38px; }

/* ── Footer logo ── */
.footer-logo-img {
  width: clamp(100px, 25vw, 160px);
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: var(--r-sm);
  transition: transform 0.3s var(--ease-bounce);
}
.footer-logo-img:hover { transform: scale(1.05) rotate(-2deg); }

/* ── Botón ghost para fondo oscuro (pasos CTA) ── */
.btn-ghost-dark {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}

/* ── Galería: soporte para 6 ítems ── */
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ── Eventos: sección animadores ── */
.eventos-animadores {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(155,93,229,0.2);
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--sky-light) 100%);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.eventos-animadores:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.animadores-img { overflow: hidden; }

.animadores-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.55s var(--ease-out);
  display: block;
}

.eventos-animadores:hover .animadores-img img { transform: scale(1.05); }

.animadores-text {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.animadores-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(155,93,229,0.14);
  border-radius: var(--r-btn);
  padding: 0.4rem 0.875rem;
  width: fit-content;
}

.animadores-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.animadores-text p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.animadores-text .btn { align-self: flex-start; }

/* ── Cómo funciona: pasos journey ── */
.pasos-journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.paso-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem;
  align-items: stretch;
  position: relative;
}

.paso-step-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.13);
  line-height: 1;
  user-select: none;
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
  justify-content: center;
}

.paso-step-card {
  border-radius: var(--r-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.paso-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.paso-color-coral {
  background: linear-gradient(135deg, rgba(255,111,97,0.18) 0%, rgba(255,111,97,0.08) 100%);
  border-color: rgba(255,111,97,0.28);
}

.paso-color-sky {
  background: linear-gradient(135deg, rgba(91,184,245,0.18) 0%, rgba(91,184,245,0.08) 100%);
  border-color: rgba(91,184,245,0.28);
}

.paso-color-yellow {
  background: linear-gradient(135deg, rgba(255,211,29,0.15) 0%, rgba(255,211,29,0.07) 100%);
  border-color: rgba(255,211,29,0.28);
}

.paso-color-purple {
  background: linear-gradient(135deg, rgba(155,93,229,0.18) 0%, rgba(155,93,229,0.08) 100%);
  border-color: rgba(155,93,229,0.28);
}

.paso-step-icon {
  font-size: 2.25rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.paso-step-body { flex: 1; }

.paso-step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.paso-step-body p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.paso-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-btn);
  padding: 0.35rem 0.875rem;
  flex-wrap: wrap;
}

.paso-connector {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1.5rem;
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
  height: 28px;
  font-weight: 700;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

/* CTA al final de pasos */
.como-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  position: relative;
  z-index: 1;
  text-align: center;
}

.como-cta p {
  width: 100%;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* ── Pasos journey: reveal stagger ── */
.pasos-journey .paso-step.reveal:nth-child(1) { transition-delay: 0s; }
.pasos-journey .paso-step.reveal:nth-child(2) { transition-delay: 0.1s; }
.pasos-journey .paso-step.reveal:nth-child(3) { transition-delay: 0.2s; }
.pasos-journey .paso-step.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive nuevas secciones ── */
@media (min-width: 720px) {
  .eventos-animadores { grid-template-columns: 1fr 1.6fr; }
  .animadores-img img { height: 100%; min-height: 300px; }

  .pasos-journey { gap: 0.875rem; }
  .paso-step { grid-template-columns: 72px 1fr; gap: 1rem; }
  .paso-step-num { font-size: clamp(3.5rem, 6vw, 5rem); }

  .como-cta { flex-direction: row; text-align: left; }
  .como-cta p { width: auto; margin-bottom: 0; }
}

@media (min-width: 960px) {
  /* Gallery 6 ítems en 3 columnas */
  .gallery-grid {
    grid-template-rows: 260px 260px 260px;
  }

  .paso-step { grid-template-columns: 88px 1fr; }
  .paso-step-num { font-size: 5.5rem; }
}

/* ── Galería: cursor pointer y hint de zoom ── */
[data-lightbox] {
  cursor: pointer;
}

.gallery-zoom-hint {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-bounce);
  pointer-events: none;
}

[data-lightbox]:hover .gallery-zoom-hint,
[data-lightbox]:focus-visible .gallery-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 25, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  animation: lbIn 0.3s var(--ease-out) both;
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-card);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s var(--ease-bounce);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.12) rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s var(--ease-bounce);
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }

.lightbox-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.12); }
.lightbox-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.12); }

.lightbox-caption {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: var(--r-btn);
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
  pointer-events: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}

@media (min-width: 720px) {
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
  .lightbox-prev, .lightbox-next { width: 56px; height: 56px; font-size: 2.4rem; }
}

@media (min-width: 1100px) {
  /* Pasos en 2 columnas en pantallas grandes */
  .pasos-journey {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .paso-connector { display: none; }
  .paso-step-num { font-size: clamp(4rem, 5vw, 6rem); }
}
