/* =============================================
   NOLIÑOS - CENTRO DE OCIO INFANTIL
   Estilos principales
   ============================================= */

:root {
  --yellow:   #FFD600;
  --yellow-light: #FFF9C4;
  --pink:     #FF4081;
  --pink-light: #FCE4EC;
  --blue:     #2979FF;
  --blue-light: #E3F2FD;
  --green:    #00C853;
  --green-light: #E8F5E9;
  --purple:   #AA00FF;
  --purple-light: #F3E5F5;
  --orange:   #FF6D00;
  --orange-light: #FFF3E0;
  --dark:     #1A1A2E;
  --gray:     #F5F5F5;
  --text:     #333;
  --text-light: #666;
  --white:    #FFFFFF;
  --hero-bg:  linear-gradient(135deg, #FF6B6B 0%, #FF8E53 30%, #FFC107 60%, #FF4081 100%);
  --radius:   20px;
  --shadow:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo { color: var(--pink); }

.logo-icon { height: 65px; width: auto; animation: bounce 2s ease-in-out infinite; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text); }

.nav-links a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover::after { transform: scaleX(1); }

.nav-btn {
  background: var(--white) !important;
  color: var(--pink) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: var(--transition) !important;
}

.navbar.scrolled .nav-btn {
  background: var(--pink) !important;
  color: var(--white) !important;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px 80px;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--white);
  animation: floatBubble linear infinite;
}

.b1 { width: 300px; height: 300px; bottom: -100px; left: -50px; animation-duration: 12s; }
.b2 { width: 200px; height: 200px; top: 10%; right: 5%; animation-duration: 9s; animation-delay: -3s; }
.b3 { width: 150px; height: 150px; top: 40%; left: 10%; animation-duration: 14s; animation-delay: -6s; }
.b4 { width: 80px; height: 80px; bottom: 20%; right: 15%; animation-duration: 7s; animation-delay: -2s; }
.b5 { width: 120px; height: 120px; top: 20%; left: 40%; animation-duration: 11s; animation-delay: -4s; }

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.highlight {
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInDown 0.7s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  background: var(--yellow);
  color: var(--dark);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 12px 28px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInDown 0.7s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-icon { font-size: 1.2rem; }
.stat-value { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin-slow 20s linear infinite;
}

.hero-circle-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite reverse;
}

.big-emoji { font-size: 5rem; animation: pulse 2s ease-in-out infinite; }

.floating-emoji {
  position: absolute;
  font-size: 2.2rem;
  animation: floatEmoji 3s ease-in-out infinite;
}

.e1 { top: 5%; left: 50%; animation-delay: 0s; }
.e2 { top: 20%; right: 5%; animation-delay: 0.5s; }
.e3 { bottom: 20%; right: 5%; animation-delay: 1s; }
.e4 { bottom: 5%; left: 50%; animation-delay: 1.5s; }
.e5 { bottom: 20%; left: 5%; animation-delay: 2s; }
.e6 { top: 20%; left: 5%; animation-delay: 2.5s; }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* =============================================
   SECTIONS GENERAL
   ============================================= */

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   SERVICIOS
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}

.card-yellow { background: linear-gradient(135deg, var(--white) 0%, var(--yellow-light) 100%); }
.card-yellow::before { background: var(--yellow); }
.card-pink   { background: linear-gradient(135deg, var(--white) 0%, var(--pink-light) 100%); }
.card-pink::before   { background: var(--pink); }
.card-blue   { background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%); }
.card-blue::before   { background: var(--blue); }
.card-green  { background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%); }
.card-green::before  { background: var(--green); }
.card-purple { background: linear-gradient(135deg, var(--white) 0%, var(--purple-light) 100%); }
.card-purple::before { background: var(--purple); }
.card-orange { background: linear-gradient(135deg, var(--white) 0%, var(--orange-light) 100%); }
.card-orange::before { background: var(--orange); }

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

.service-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

.service-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--pink);
  transition: var(--transition);
}

.card-yellow .card-link { color: #E65100; }
.card-blue   .card-link { color: var(--blue); }
.card-green  .card-link { color: #1B5E20; }
.card-purple .card-link { color: var(--purple); }
.card-orange .card-link { color: var(--orange); }

.card-link:hover { letter-spacing: 1px; }

/* =============================================
   HORARIOS
   ============================================= */

.horarios {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 40%, #E040FB 100%);
  position: relative;
  padding: 0;
}

.horarios-wave-top { line-height: 0; }
.horarios-wave-bottom { line-height: 0; }
.horarios-wave-top svg, .horarios-wave-bottom svg { width: 100%; height: 80px; }

.horarios .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.horarios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.horario-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  transition: var(--transition);
}

.horario-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.22); }

.horario-highlight {
  background: rgba(255,255,255,0.25) !important;
  border: 2px solid rgba(255,255,255,0.5) !important;
}

.horario-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

.horario-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.horario-schedule { display: flex; flex-direction: column; gap: 16px; }

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.days { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.hours { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: var(--yellow); }
.hours-special { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 700; font-style: italic; }
.schedule-divider { height: 1px; background: rgba(255,255,255,0.2); }

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

.reserva-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* =============================================
   GALERÍA
   ============================================= */

.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-bottom: 40px;
}

.gi-large { grid-row: span 2; }

.galeria-placeholder {
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 100px;
  transition: var(--transition);
  cursor: pointer;
}

.galeria-placeholder:hover { transform: scale(1.02); }

.galeria-placeholder span { font-size: 3rem; animation: bounce 2s ease-in-out infinite; }
.galeria-placeholder p { font-weight: 700; font-size: 0.9rem; }

.gp1 { background: linear-gradient(135deg, #FFD600, #FF8F00); color: #fff; }
.gp2 { background: linear-gradient(135deg, #FF4081, #E91E63); color: #fff; }
.gp3 { background: linear-gradient(135deg, #2979FF, #1565C0); color: #fff; }
.gp4 { background: linear-gradient(135deg, #00C853, #1B5E20); color: #fff; }
.gp5 { background: linear-gradient(135deg, #AA00FF, #6200EA); color: #fff; }

.galeria-cta { text-align: center; }
.galeria-cta p { font-size: 1.1rem; font-weight: 600; color: var(--text-light); margin-bottom: 20px; }

.social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.facebook { background: #1877F2; color: #fff; }
.instagram { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); color: #fff; }

/* =============================================
   CONTACTO
   ============================================= */

.contacto { background: var(--gray); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.contacto-info h3, .contacto-form-wrapper h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 28px;
}

.contacto-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }

.contacto-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacto-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.contacto-item strong {
  display: block;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.contacto-item p { color: var(--text-light); font-size: 0.95rem; }
.contacto-item a { color: var(--pink); font-weight: 600; }
.contacto-item a:hover { text-decoration: underline; }

.whatsapp-btn { background: #25D366 !important; color: #fff !important; }
.whatsapp-btn:hover { background: #128C7E !important; }

.contacto-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #FAFAFA;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 64, 129, 0.1);
}

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

.form-note { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-top: 12px; }
.form-note a { color: var(--pink); font-weight: 700; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; animation: bounce 1s ease-in-out 3; }
.form-success h3 { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--green); margin-bottom: 12px; }
.form-success p { color: var(--text-light); }

.mapa-wrapper h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}

.mapa-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 0;
  position: relative;
}

.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }

.footer .container { padding-top: 60px; padding-bottom: 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); transform: translateY(-3px); }

.footer-links h4,
.footer-servicios h4,
.footer-contacto h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-servicios ul,
.footer-contacto ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li,
.footer-servicios li,
.footer-contacto li { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.footer-links a, .footer-contacto a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover, .footer-contacto a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes floatBubble {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-15px) rotate(10deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; padding-top: 120px; padding-left: 24px; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { margin-top: 48px; }
  .hero-circle { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a { color: var(--dark) !important; font-size: 1.3rem; }

  .nav-btn {
    background: var(--pink) !important;
    color: var(--white) !important;
  }

  .horarios-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-large { grid-row: span 1; grid-column: span 2; height: 200px; }

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

  .schedule-row { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; }
  .hero-circle { width: 220px; height: 220px; }
  .floating-emoji { font-size: 1.5rem; }
}

/* =============================================
   PAGE HERO (sub-pages)
   ============================================= */

.page-hero {
  background: var(--hero-bg);
  padding: 130px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .bubble { opacity: 0.08; }

.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  font-weight: 600;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,0.9); transition: var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--yellow); }
.page-hero-breadcrumb span { opacity: 0.5; }

.page-hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.page-hero-wave svg { width: 100%; height: 60px; }

/* =============================================
   HOME — POR QUÉ NOLIÑOS
   ============================================= */

.features { background: var(--gray); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon { font-size: 3rem; margin-bottom: 16px; animation: bounce 2s ease-in-out infinite; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.3s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.6s; }

.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* =============================================
   HOME — CTA BANNER
   ============================================= */

.cta-section { padding: 96px 0; }

.cta-banner {
  background: var(--hero-bg);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🎈';
  position: absolute;
  font-size: 8rem;
  opacity: 0.07;
  top: -20px; left: -20px;
}

.cta-banner::after {
  content: '🎉';
  position: absolute;
  font-size: 8rem;
  opacity: 0.07;
  bottom: -20px; right: -20px;
}

.cta-banner h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   HOME — SERVICIOS PREVIEW
   ============================================= */

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

.servicios-link {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   FAQ
   ============================================= */

.faq-section { background: var(--gray); }

.faq-grid { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  gap: 16px;
}

.faq-question:hover { color: var(--pink); }

.faq-icon { font-size: 1.3rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 24px;
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* =============================================
   NAV ACTIVE STATE
   ============================================= */

.nav-links a.active {
  color: var(--yellow) !important;
}

.navbar.scrolled .nav-links a.active {
  color: var(--pink) !important;
}

/* =============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================= */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-preview .services-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-preview .services-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 24px; }
  .page-hero { padding: 120px 24px 60px; }
}

