/* =============================================================
   TATI KIDS — styles.css
   Liquid Wave archetype adapted for kids party brand
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Brand colors (from logo) */
  --c-green:   #7AB838;
  --c-orange:  #F58F2B;
  --c-yellow:  #FFD740;
  --c-sky:     #5BC0EB;
  --c-red:     #E63946;
  --c-navy:    #1D3F8C;

  /* Backgrounds */
  --bg-sky:    #E6F5FF;
  --bg-cream:  #FFF8E8;
  --bg-white:  #ffffff;
  --bg-soft:   #FFFCEF;

  /* Ink */
  --ink:       #1A2A4A;
  --ink-soft:  #3C4D6F;
  --ink-mute:  #6B7A95;
  --ink-faint: rgba(26, 42, 74, 0.12);

  /* Functional */
  --wa-green:  #25D366;
  --wa-dark:   #128C7E;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --shadow-sm: 0 4px 12px rgba(29, 63, 140, 0.08);
  --shadow:    0 14px 32px rgba(29, 63, 140, 0.12);
  --shadow-lg: 0 24px 48px rgba(29, 63, 140, 0.18);
  --shadow-bouncy: 0 16px 0 -2px rgba(29, 63, 140, 0.15);

  /* Type */
  --display: "Fredoka", "Nunito", system-ui, sans-serif;
  --sans: "Nunito", system-ui, -apple-system, sans-serif;
  --hand: "Caveat", cursive;

  /* 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);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, iframe { 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 { padding: 0; list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; letter-spacing: -0.01em; font-family: var(--display); font-weight: 700; }
::selection { background: var(--c-yellow); color: var(--c-navy); }

:focus-visible {
  outline: 3px solid var(--c-sky);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .8rem 1.2rem; background: var(--c-navy); color: #fff;
  z-index: 9999; border-radius: 12px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Layout & utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 1.25rem;
}
.container-narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow [class^="dot-"] {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-green  { background: var(--c-green); }
.dot-orange { background: var(--c-orange); }
.dot-yellow { background: var(--c-yellow); }
.dot-sky    { background: var(--c-sky); }
.dot-red    { background: var(--c-red); }
.dot-navy   { background: var(--c-navy); }

.h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--c-navy);
}
.h2 em {
  font-style: normal;
  color: var(--c-red);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-2deg);
}
.h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--c-navy); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: 3px solid transparent;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-3px) scale(1.03);
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4), 0 4px 0 var(--wa-dark);
}
.btn-wa:hover {
  background: #1ebf5d;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 6px 0 var(--wa-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border: 3px solid var(--c-navy);
}
.btn-ghost:hover {
  background: var(--c-navy);
  color: #fff;
}

.btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn-xl { padding: 1.3rem 2.4rem; font-size: 1.25rem; }
.btn-block { width: 100%; }

.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-lg .wa-icon { width: 22px; height: 22px; }
.btn-xl .wa-icon { width: 26px; height: 26px; }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0;
  background: linear-gradient(180deg, var(--bg-sky), var(--bg-cream));
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  animation: splashSafety 0.01s 3.8s forwards;
  font-family: var(--display);
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out);
}
.splash-logo {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  gap: 2px;
  text-shadow: 4px 4px 0 var(--c-navy);
  animation: splashBounce 1s var(--ease-bounce) both;
}
.splash-space { display: inline-block; width: 0.4em; }
.splash-logo span { display: inline-block; animation: splashLetter 0.6s var(--ease-bounce) both; }
.splash-logo span:nth-child(1) { animation-delay: 0.05s; }
.splash-logo span:nth-child(2) { animation-delay: 0.1s; }
.splash-logo span:nth-child(3) { animation-delay: 0.15s; }
.splash-logo span:nth-child(4) { animation-delay: 0.2s; }
.splash-logo span:nth-child(6) { animation-delay: 0.3s; }
.splash-logo span:nth-child(7) { animation-delay: 0.35s; }
.splash-logo span:nth-child(8) { animation-delay: 0.4s; }
.splash-logo span:nth-child(9) { animation-delay: 0.45s; }
.splash-logo span:nth-child(10) { animation-delay: 0.5s; }
@keyframes splashLetter {
  from { opacity: 0; transform: translateY(40px) scale(0.5) rotate(-15deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
@keyframes splashBounce {
  from { transform: scale(0.8); }
  to   { transform: scale(1); }
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem); max-width: 1240px;
  z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.7rem 0.7rem 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  transition: padding 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}

.nav-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  line-height: 1;
}
.brand-mark { display: inline-flex; gap: 0; }

.nav-links {
  display: flex; gap: 1.5rem;
  margin-left: auto;
  margin-right: 1rem;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.3s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 3px;
  background: var(--c-red);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--c-navy); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.5);
}
.nav-cta .wa-icon { width: 18px; height: 18px; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--c-navy);
}
.nav-burger span {
  width: 20px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 1.25rem 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 64, 0.25), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(91, 192, 235, 0.3), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(230, 57, 70, 0.15), transparent 60%),
    linear-gradient(180deg, var(--bg-sky) 0%, var(--bg-soft) 100%);
}

/* Clouds */
.hero-clouds .cloud {
  position: absolute;
  width: 180px; height: 90px;
  opacity: 0.95;
  filter: drop-shadow(0 8px 16px rgba(29, 63, 140, 0.06));
  animation: cloudDrift 28s linear infinite;
}
.cloud-1 { top: 12%; left: -10%; animation-delay: 0s; }
.cloud-2 { top: 22%; left: -10%; width: 220px; height: 110px; animation-duration: 36s; animation-delay: -10s; opacity: 0.7; }
.cloud-3 { top: 8%; left: -10%; width: 140px; height: 70px; animation-duration: 24s; animation-delay: -18s; opacity: 0.85; }
@keyframes cloudDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(120vw); }
}

/* Balloons */
.balloons { position: absolute; inset: 0; }
.balloon {
  position: absolute;
  width: clamp(50px, 6vw, 90px);
  color: var(--c);
  filter: drop-shadow(0 8px 16px rgba(29, 63, 140, 0.18));
  animation: balloonFloat 6s ease-in-out infinite;
  transform-origin: center bottom;
}
.balloon svg { width: 100%; height: auto; color: inherit; }
.balloon-1 { top: 18%; left: 5%;  animation-delay: 0s;   }
.balloon-2 { top: 8%;  left: 22%; animation-delay: -1.5s; animation-duration: 7s; }
.balloon-3 { top: 12%; right: 8%; animation-delay: -0.8s; animation-duration: 6.5s; }
.balloon-4 { top: 25%; right: 22%; animation-delay: -2.2s; animation-duration: 7.2s; }
.balloon-5 { top: 60%; left: 4%;  animation-delay: -3s; animation-duration: 6.8s; }
.balloon-6 { top: 65%; right: 5%; animation-delay: -1s; animation-duration: 7.5s; }
@keyframes balloonFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-20px) rotate(3deg); }
}

/* Stars */
.stars { position: absolute; inset: 0; }
.star {
  position: absolute;
  font-size: 2rem;
  color: var(--c-yellow);
  filter: drop-shadow(0 0 8px rgba(255, 215, 64, 0.6));
  animation: starTwinkle 3s ease-in-out infinite;
}
.star-1 { top: 14%; left: 38%; animation-delay: 0s; color: var(--c-yellow); }
.star-2 { top: 32%; left: 12%; animation-delay: -1s; color: var(--c-orange); font-size: 1.4rem; }
.star-3 { top: 18%; right: 32%; animation-delay: -1.5s; color: var(--c-red); font-size: 1.6rem; }
.star-4 { top: 55%; left: 35%; animation-delay: -2s; color: var(--c-green); font-size: 1.2rem; }
.star-5 { bottom: 30%; right: 30%; animation-delay: -0.5s; color: var(--c-sky); font-size: 1.8rem; }
@keyframes starTwinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 0.7; }
  50%      { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

/* Confetti */
.confetti {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, var(--c-red) 3px, transparent 4px),
    radial-gradient(circle at 35% 60%, var(--c-yellow) 4px, transparent 5px),
    radial-gradient(circle at 70% 20%, var(--c-sky) 3px, transparent 4px),
    radial-gradient(circle at 85% 75%, var(--c-green) 4px, transparent 5px),
    radial-gradient(circle at 20% 80%, var(--c-orange) 3px, transparent 4px),
    radial-gradient(circle at 55% 45%, var(--c-navy) 3px, transparent 4px),
    radial-gradient(circle at 92% 40%, var(--c-red) 3px, transparent 4px),
    radial-gradient(circle at 15% 55%, var(--c-sky) 3px, transparent 4px);
  background-size: 800px 600px;
  opacity: 0.5;
  animation: confettiDrift 30s linear infinite;
}
@keyframes confettiDrift {
  from { background-position: 0 0; }
  to   { background-position: 800px 600px; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-navy);
  margin-bottom: 1.5rem;
  border: 1.5px solid rgba(29, 63, 140, 0.1);
}
.kicker-dot {
  width: 8px; height: 8px;
  background: var(--c-red);
  border-radius: 50%;
  animation: kickerPulse 2s ease-in-out infinite;
}
@keyframes kickerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  50%      { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}

/* Hero title — bubble letters */
.hero-title {
  font-size: clamp(3rem, 13vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
}
.hero-space { display: inline-block; width: 0.3em; }
.bubble {
  display: inline-block;
  color: var(--c);
  text-shadow:
    -2px -2px 0 var(--c-navy),
    2px -2px 0 var(--c-navy),
    -2px 2px 0 var(--c-navy),
    2px 2px 0 var(--c-navy),
    4px 4px 0 rgba(29, 63, 140, 0.25);
  animation: bubbleEntry 0.7s var(--ease-bounce) both;
  transform-origin: center bottom;
  cursor: default;
  transition: transform 0.3s var(--ease-bounce);
}
.hero-title:hover .bubble { animation: none; }
.bubble:hover {
  transform: translateY(-12px) scale(1.1) rotate(-5deg);
}
.bubble-1 { animation-delay: 0.4s; }
.bubble-2 { animation-delay: 0.5s; }
.bubble-3 { animation-delay: 0.6s; }
.bubble-4 { animation-delay: 0.7s; }
.bubble-5 { animation-delay: 0.85s; }
.bubble-6 { animation-delay: 0.95s; }
.bubble-7 { animation-delay: 1.05s; }
.bubble-8 { animation-delay: 1.15s; }
.bubble-9 { animation-delay: 1.25s; }
@keyframes bubbleEntry {
  0%   { opacity: 0; transform: translateY(-60px) scale(0.5) rotate(-20deg); }
  60%  { opacity: 1; transform: translateY(8px) scale(1.05) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

.hero-tagline {
  font-family: var(--hand);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--c-red);
  margin: 0.5rem 0 1.2rem;
  transform: rotate(-1.5deg);
  font-weight: 700;
  animation: taglineFloat 4s ease-in-out infinite 1.5s;
}
@keyframes taglineFloat {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50%      { transform: rotate(-1.5deg) translateY(-4px); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex; flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(29, 63, 140, 0.12);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  backdrop-filter: blur(6px);
}

/* Wave dividers */
.wave-divider {
  position: absolute; left: 0; right: 0;
  width: 100%; height: 100px;
  z-index: 1;
}
.wave-top { bottom: -1px; }
.wave-bottom { bottom: -1px; }

/* =============================================================
   8. SOBRE NOSOTROS
   ============================================================= */
.about {
  background: var(--bg-cream);
  padding: 6rem 0 5rem;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.about-text .lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 1.2rem 0;
  font-weight: 500;
}
.about-text p { margin-bottom: 1rem; color: var(--ink-soft); }
.about-text .btn { margin-top: 1rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  padding: 2rem 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: #fff;
  border: 3px solid var(--c-navy);
  box-shadow: 0 8px 0 var(--c-navy);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
}
.stat-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 12px 0 var(--c-navy);
}
.stat-1 { background: var(--c-yellow); }
.stat-2 { background: var(--c-sky); color: #fff; }
.stat-3 { background: var(--c-red); color: #fff; transform: translateY(20px); }
.stat-3:hover { transform: translateY(16px) rotate(1deg); }
.stat-4 { background: var(--c-green); color: #fff; }

.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.stat-unit { font-size: 0.6em; }
.stat-2 .stat-num, .stat-3 .stat-num, .stat-4 .stat-num { color: #fff; }
.stat-1 .stat-num { color: var(--c-navy); }
.stat-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* =============================================================
   9. PAQUETES
   ============================================================= */
.paquetes {
  background: var(--bg-sky);
  padding: 6rem 0 4rem;
  position: relative;
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.pack {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.pack:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pack.is-featured {
  border-color: var(--c-green);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.pack.is-featured:hover { transform: scale(1.04) translateY(-8px); }

.pack-badge {
  position: absolute;
  top: -14px; right: 24px;
  padding: 0.4rem 0.9rem;
  background: var(--c-red);
  color: #fff;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  animation: badgeBounce 2s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-3px) rotate(3deg); }
}

.pack-ribbon {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  color: #fff;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.pack-emoji {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: emojiWiggle 4s ease-in-out infinite;
}
@keyframes emojiWiggle {
  0%, 100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
.pack-title {
  font-size: 1.4rem;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.pack-tagline {
  font-family: var(--hand);
  font-size: 1.3rem;
  color: var(--c-red);
  margin-bottom: 1.4rem;
}
.pack-specs {
  display: flex; flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px dashed var(--ink-faint);
}
.pack-specs li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pack-specs li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.pack-section { margin-bottom: 1.2rem; }
.pack-section h4 {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 0.6rem;
}
.pack-section ul li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.pack-section ul li::before {
  content: "•";
  position: absolute; left: 0.4rem; top: 0;
  color: var(--c-orange);
  font-size: 1.4rem;
  line-height: 1;
}
.pack-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 1rem 0 1.5rem;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.pack-note::before {
  content: "ⓘ";
  position: absolute; left: 0; top: 0;
  color: var(--c-orange);
  font-weight: 700;
}
.pack .btn { margin-top: auto; }

/* =============================================================
   10. Tabla comparativa
   ============================================================= */
.compare {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow);
  border: 3px solid var(--c-navy);
}
.compare-title {
  text-align: center;
  margin-bottom: 2rem;
}
.compare-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--ink-faint);
  font-size: 0.95rem;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
}
.compare-table thead th {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
}
.compare-table thead th:first-child { background: var(--c-navy); }
.th-clasico  { background: var(--c-navy); }
.th-premium  { background: var(--c-green); }
.th-familiar { background: var(--c-yellow); color: var(--c-navy) !important; }
.compare-table td.ok {
  color: var(--c-green);
  font-weight: 700;
  font-size: 1.2rem;
}
.compare-table td.ko {
  color: var(--c-red);
  font-weight: 700;
}
.compare-table tbody tr:hover {
  background: rgba(91, 192, 235, 0.08);
}

/* =============================================================
   11. SERVICIOS ADICIONALES
   ============================================================= */
.adicionales {
  background: var(--bg-cream);
  padding: 6rem 0 5rem;
  position: relative;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ad-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 3px solid var(--ad-c);
  box-shadow: 0 8px 0 var(--ad-c);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
}
.ad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 var(--ad-c);
}
.ad-icon {
  width: 60px; height: 60px;
  background: var(--ad-c);
  color: #fff;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ad-icon svg { width: 34px; height: 34px; color: #fff; }
.ad-card h3 {
  font-size: 1.3rem;
  color: var(--c-navy);
  margin-bottom: 0.8rem;
}
.ad-card ul li {
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.ad-card ul li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--ad-c);
}
.ad-note {
  text-align: center;
  background: #fff;
  border: 2px dashed var(--c-orange);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 760px;
  margin: 0 auto;
}

/* =============================================================
   12. CÓMO RESERVAR
   ============================================================= */
.how {
  background: var(--bg-cream);
  padding: 4rem 0 6rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.how-step {
  position: relative;
  background: #fff;
  padding: 2.5rem 1.8rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 3px solid var(--ink-faint);
  transition: transform 0.3s var(--ease-bounce);
}
.how-step:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--c-yellow);
}
.how-step:nth-child(2):hover { transform: translateY(-6px) rotate(1deg); border-color: var(--c-red); }
.how-step:nth-child(3):hover { transform: translateY(-6px) rotate(-1deg); border-color: var(--c-green); }

.how-num {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  border: 4px solid var(--bg-cream);
}
.how-step:nth-child(1) .how-num { background: var(--c-yellow); color: var(--c-navy); }
.how-step:nth-child(2) .how-num { background: var(--c-red); }
.how-step:nth-child(3) .how-num { background: var(--c-green); }

.how-icon {
  font-size: 3rem;
  margin: 1rem 0 1rem;
}
.how-step h3 {
  font-size: 1.3rem;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.how-step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.how-cta { text-align: center; }

/* =============================================================
   13. EVENTOS
   ============================================================= */
.eventos {
  background: var(--bg-sky);
  padding: 6rem 0 5rem;
  position: relative;
}
.eventos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.evento-chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem;
  background: #fff;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-navy);
  border: 3px solid var(--ec);
  box-shadow: 0 6px 0 var(--ec);
  transition: transform 0.3s var(--ease-bounce);
}
.evento-chip:hover {
  transform: translateY(-3px) rotate(-2deg);
}
.evento-chip:nth-child(even):hover { transform: translateY(-3px) rotate(2deg); }
.ec-emoji { font-size: 1.4rem; }

/* =============================================================
   14. GALERÍA
   ============================================================= */
.galeria {
  background: var(--bg-cream);
  padding: 6rem 0 5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-out);
  border: 3px solid #fff;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s var(--ease-out);
}
.g-item:hover { transform: translateY(-6px) rotate(-1deg); }
.g-item:hover img { transform: scale(1.1); filter: saturate(1.15); }

.g-1 { grid-column: span 2; grid-row: span 1; }
.g-2 { grid-column: span 1; grid-row: span 2; }
.g-3 { grid-column: span 1; grid-row: span 1; }
.g-4 { grid-column: span 1; grid-row: span 1; }
.g-5 { grid-column: span 2; grid-row: span 1; }
.g-6 { grid-column: span 1; grid-row: span 1; }

.gallery-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.gallery-note a {
  color: var(--c-red);
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 1px;
}

/* =============================================================
   15. FAQ
   ============================================================= */
.faq {
  background: var(--bg-cream);
  padding: 5rem 0 6rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--ink-faint);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out);
}
.faq-item[open] { border-color: var(--c-sky); }
.faq-item summary {
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--c-navy);
  font-size: 1.05rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow {
  width: 32px; height: 32px;
  background: var(--bg-sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--c-navy);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-bounce), background 0.3s var(--ease-out);
}
.faq-item[open] .faq-arrow {
  transform: rotate(45deg);
  background: var(--c-red);
  color: #fff;
}
.faq-body {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* =============================================================
   16. CONTACTO
   ============================================================= */
.contacto {
  background: var(--bg-sky);
  padding: 6rem 0 5rem;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--c-yellow);
}
.info-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 28px; height: 28px; }
.info-text { flex: 1; min-width: 0; }
.info-label {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.info-value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-navy);
}
.info-arrow {
  font-size: 1.4rem;
  color: var(--c-navy);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.info-card:hover .info-arrow { transform: translateX(4px); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #fff;
  border: 3px solid #fff;
}
.contact-map iframe {
  width: 100%; height: 100%;
  min-height: 414px;
  border: 0;
  display: block;
}

.contact-cta {
  text-align: center;
}

/* =============================================================
   17. FOOTER
   ============================================================= */
.footer {
  background: var(--c-navy);
  color: #fff;
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0;
  height: 24px;
  background:
    radial-gradient(circle at 5% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 15% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 25% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 35% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 45% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 55% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 65% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 75% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 85% 100%, var(--c-navy) 24px, transparent 24px),
    radial-gradient(circle at 95% 100%, var(--c-navy) 24px, transparent 24px);
  background-size: 10% 100%;
  background-repeat: repeat-x;
  transform: translateY(-100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}
.footer-tagline {
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--c-yellow);
  transform: rotate(-1deg);
  display: inline-block;
}
.footer-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--c-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding-inline: 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-mini { font-family: var(--hand); font-size: 1.1rem; color: var(--c-yellow); }

/* =============================================================
   18. FLOATING WHATSAPP
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem 0.9rem 1rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 4px 0 var(--wa-dark);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6), 0 6px 0 var(--wa-dark);
}
.wa-float svg {
  width: 28px; height: 28px;
  position: relative; z-index: 2;
}
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--wa-green);
  z-index: 1;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float-label {
  position: relative; z-index: 2;
}

/* =============================================================
   19. RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 0.5rem); right: 0; left: 0;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    gap: 0.6rem;
    margin: 0;
  }
  .nav.nav-open .nav-links a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--ink-faint);
  }
  .nav.nav-open .nav-links a:last-child { border-bottom: 0; }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .paquetes-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pack.is-featured { transform: none; }
  .pack.is-featured:hover { transform: translateY(-8px); }
  .ad-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 220px;
  }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 {
    grid-column: span 1; grid-row: span 1;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav { top: 0.5rem; padding: 0.5rem 0.5rem 0.5rem 1rem; gap: 0.5rem; }
  .nav-brand { font-size: 1.1rem; }
  .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
  .nav-cta .wa-icon { width: 16px; height: 16px; }
  .nav-cta span { display: none; }

  .hero { padding-top: 6rem; padding-bottom: 5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
  .hero-actions .btn { width: 100%; }
  .meta-pill { font-size: 0.85rem; padding: 0.4rem 0.8rem; }

  .balloon { width: 50px; }
  .balloon-2, .balloon-4 { display: none; }

  .about { padding: 4rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-3 { transform: none; }
  .stat-3:hover { transform: translateY(-4px); }

  .paquetes { padding: 4rem 0 3rem; }
  .pack { padding: 2rem 1.5rem 1.5rem; }

  .compare { padding: 1.5rem 0.5rem; }

  .adicionales { padding: 4rem 0; }
  .ad-grid { grid-template-columns: 1fr; gap: 1rem; }

  .how { padding: 3rem 0 4rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }

  .contacto { padding: 4rem 0; }
  .info-card { padding: 1rem; }
  .info-icon { width: 44px; height: 44px; }
  .info-icon svg { width: 24px; height: 24px; }
  .info-value { font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float {
    bottom: 1rem; right: 1rem;
    padding: 0.8rem;
  }
  .wa-float-label { display: none; }

  .splash-logo { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.5rem, 18vw, 5rem); }
  .h2 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .balloon-3, .balloon-5 { display: none; }
}

/* =============================================================
   20. REDUCED MOTION — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .balloon, .cloud, .star, .confetti,
  .kicker-dot, .wa-float-pulse,
  .pack-badge, .pack-emoji, .tagline,
  .hero-tagline {
    animation: none !important;
  }
  .splash-logo span { animation: none; opacity: 1; transform: none; }
}

/* Defensive split-text */
.reveal[data-split] { opacity: 1; transform: none; }
