:root {
  --violeta: #7165F5;
  --coral: #F56C4E;
  --amarillo: #FEC93D;
  --menta: #61D3C1;
  --celeste: #6FD5F8;
  --cielo: linear-gradient(180deg, #D6EEFF 0%, #FFF8FB 100%);
}

/* ==== ICONOS SUAVES ==== */
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.9;
}

.icon-brain {
  background-image: url('../../landing/icons/brain.webp');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-kids {
  background-image: url('../../landing/icons/kids.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-horse {
  background-image: url('../../landing/icons/horse.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-sheet {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/hoja.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-ubication {
  background-image: url('../../landing/icons/ubication.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-bebe {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/bebe.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-bebe-2 {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/bebe-2.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-conversacion {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/conversacion.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-arco-iris {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/arco-iris.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-gatear {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/gatear.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-gatear-2 {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/gatear-2.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-boy {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/boy.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-boy-2 {
  width: 35px;
  height: 35px;  
  background-image: url('../../landing/icons/boy-2.png');
  background-size: contain;
  background-repeat: no-repeat;
}


/* HEADER */
.main-header {
  background-color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  z-index: 10;
}

/* LOGO */
.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.text-violeta {
  color: var(--violeta);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.text-logo {
  background: linear-gradient(90deg, var(--violeta), var(--coral), var(--menta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
}

/* NAV */
.navbar-nav .nav-link {
  color: #555;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--violeta);
}

/* BOTÓN */
.btn-primary {
  background-color: var(--violeta);
  border: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: var(--coral);
  transform: translateY(-2px);
}

/* NUBE DECORATIVA */
.header-cloud {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 70px;
  background: radial-gradient(circle at 20% 60%, #b5e2fa 25%, transparent 26%),
              radial-gradient(circle at 50% 70%, #c4f1f9 25%, transparent 26%),
              radial-gradient(circle at 80% 60%, #b5e2fa 25%, transparent 26%);
  background-repeat: repeat-x;
  background-size: 200px 100px;
  z-index: 0;
  opacity: 0.6;
}


/* RESPONSIVO */
@media (max-width: 992px) {
  .navbar-nav {
    background-color: #fff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  .navbar-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ========================== */
/* ====== HERO SECTION KID ====== */
/* ========================== */
.hero-kids {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.28); /* ⭐ Ajusta de 0.1 a 0.5 */
  z-index: 0;
}

.hero-overlay-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.35); /* Oscuridad */
  backdrop-filter: blur(4px);     /* BORRADO REAL */
  -webkit-backdrop-filter: blur(10px);

  z-index: 0;
}


/* Video de fondo */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Contenido centrado */
.hero-inner {
  text-align: center;
  padding: 2rem;
}

/* ===== GRADIENTE DEL TEXTO ===== */
.text-logo-hero {
  background: linear-gradient(90deg, var(--violeta), var(--coral), var(--menta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== BURBUJA NEGRA SOLO DETRÁS DEL TITULO ===== */
.text-bubble {
  position: relative;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 18px;

  /* Fondo negro semitransparente específico del título */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

/* ===== Tamaños del texto ===== */
.hero-title-2,
.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 1rem;

  position: relative;
  display: inline-block;

}

.hero-subtitle {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Estilo general del subtítulo */
.hero-subtitle-info {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 1rem;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Líneas destacadas (más importantes) */
.hero-subtitle-info .line-strong {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0,0,0,0.45);
}

/* Líneas suaves (información complementaria) */
.hero-subtitle-info .line-soft {
  font-weight: 500;
  font-size: 1.15rem;

  /* tono suave para infantil pero elegante */
  color: #f6eaff;
  opacity: 0.95;

  text-shadow: 0 0 8px rgba(0,0,0,0.35);
}

/* Pequeño glow armonioso */
.hero-subtitle-info span {
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(2px);
}

/* ========================== */
/* ====== TEXTO HERO ======== */
/* ========================== */
.text-accent {
  font-family: "Poppins", sans-serif;
  color: var(--coral);
  letter-spacing: 1px;
}

/* Subrayado suave */
.hero-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%); /* centra exactamente */
  
  width: 80%;
  height: 6px;
  border-radius: 4px;

  background: linear-gradient(90deg, var(--coral), var(--amarillo), var(--menta));
  opacity: 0.8;
}
/* ========================== */
/* ===== IMAGEN HERO ======== */
/* ========================== */
.hero-img {
  position: relative;
  z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}

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

.illustration-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fff 0%, #d6eeff 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(8px);
}

/* ========================== */
/* ===== CAJA ORGÁNICA ===== */
/* ========================== */
.hero-textbox {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 3rem 2.5rem;
  border-radius: 40px 80px 40px 80px;
  
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  position: relative;

  box-shadow: 
      0 10px 25px rgba(0,0,0,0.06),
      0 0 40px rgba(255, 182, 255, 0.25);

  animation: fadeInUp 1s ease-out both;
  max-width: 540px;
}

.hero-textbox::after {
  content: "";
  position: absolute;
  inset: -8px; 
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(
      135deg,
      rgba(113,101,245,0.25),
      rgba(97,211,193,0.25),
      rgba(245,108,78,0.25)
  );
  filter: blur(22px);
  opacity: 0.9;
}

.hero-textbox h5 {
  font-size: 1.05rem;
  color: var(--coral);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-textbox p {
  font-size: 1.15rem;
  color: #555;
  font-weight: 500;
}

/* ========================== */
/* ====== ANIMACIONES ====== */
/* ========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeInUp 0.8s ease-out both; }
.animate-slide { animation: fadeInUp 1s ease-out 0.2s both; }
.animate-fade-delay { animation: fadeInUp 1.2s ease-out 0.4s both; }
.animate-fade-delay2 { animation: fadeInUp 1.4s ease-out 0.6s both; }

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

/* 🔵 Tablets 992px */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-textbox {
    max-width: 100%;
    padding: 2.5rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .illustration-bg {
    width: 240px;
    height: 240px;
  }
}

/* 🟢 Celulares medianos 768px */
@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-textbox {
    padding: 2rem 1.6rem;
    border-radius: 30px 60px 30px 60px;
  }

  .hero-textbox p {
    font-size: 1rem;
  }

  .hero-img {
    max-width: 75%;
    margin-top: 20px;
  }

  .illustration-bg {
    width: 200px;
    height: 200px;
  }

  .text-collapsible {
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* ← número de líneas visibles */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .text-collapsible.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
  }

  .toggle-text {
    font-weight: 600;
    color: var(--coral);
    text-decoration: underline;
    cursor: pointer;
  }  
}

/* 🔴 Celulares pequeños 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-textbox {
    padding: 1.7rem;
    border-radius: 26px 50px 26px 50px;
  }

  .hero-img {
    max-width: 85%;
  }

  .illustration-bg {
    width: 180px;
    height: 180px;
  }
}

/* ========================== */
/* ===== NUBES SUAVES ======= */
/* ========================== */
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(5px);
  animation: moveClouds 60s linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud-1 {
  width: 180px;
  height: 60px;
  bottom: 20%;
  left: -150px;
  animation-delay: 0s;
}
.cloud-1::before {
  width: 100px;
  height: 100px;
  top: -30px;
  left: 40px;
}
.cloud-1::after {
  width: 80px;
  height: 80px;
  top: -20px;
  left: 90px;
}

.cloud-2 {
  width: 200px;
  height: 70px;
  top: 10%;
  left: -200px;
  animation-delay: 10s;
}
.cloud-2::before {
  width: 90px;
  height: 90px;
  top: -25px;
  left: 60px;
}

.cloud-3 {
  width: 150px;
  height: 50px;
  bottom: 35%;
  left: -100px;
  animation-delay: 20s;
}

@keyframes moveClouds {
  0% { transform: translateX(0); }
  100% { transform: translateX(1600px); }
}

/* ========================== */
/* ===== FORMAS COLORIDAS ==== */
/* ========================== */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
  width: 80px; height: 80px;
  background-color: var(--coral);
  top: 10%; right: 15%;
  animation-delay: 1s;
}
.shape-2 {
  width: 60px; height: 60px;
  background-color: var(--menta);
  bottom: 15%; left: 10%;
  animation-delay: 2s;
}
.shape-3 {
  width: 100px; height: 100px;
  background-color: var(--celeste);
  top: 30%; left: 5%;
  animation-delay: 3s;
}
.shape-4 {
  width: 70px; height: 70px;
  background-color: var(--amarillo);
  bottom: 10%; right: 5%;
  animation-delay: 4s;
}

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

/* ========================== */
/* =====  Facilities Start ======== */
/* ========================== */
.facilities-cute {
  background: linear-gradient(180deg, #f8fbff 0%, #fff7fa 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Quicksand', sans-serif;
}

/* Título */
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  background: linear-gradient(90deg, var(--violeta), var(--menta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tarjetas */
.facility-card {
  border-radius: 28px;
  padding: 2.5rem 1.8rem;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 2px solid transparent;
}

/* 🌈 Efecto hover más atractivo */
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 182, 193, 0.4);
}

/* ✨ Detalle de brillo decorativo en la esquina */
.facility-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.25), transparent 70%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.facility-card:hover::before {
  opacity: 1;
}

/* 💕 Ícono superior */
.facility-card .icon-bubble {
  margin-bottom: 1rem;
  z-index: 2;
}

/* 🧁 Título y texto */
.facility-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.facility-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* 💫 Paleta pastel suave para íconos dentro */
.facility-card .icon-bubble.pink { background: linear-gradient(135deg, #ffb6c1, #ff8fab); }
.facility-card .icon-bubble.blue { background: linear-gradient(135deg, #a2d2ff, #8ecae6); }
.facility-card .icon-bubble.yellow { background: linear-gradient(135deg, #ffe66d, #ffd166); }
.facility-card .icon-bubble.green { background: linear-gradient(135deg, #b9fbc0, #98f5e1); }
.facility-card .icon-bubble.lilac { background: linear-gradient(135deg, #cdb4db, #b8c0ff); }


/* Ícono circular */
/* 🌸 Burbuja para íconos */
.icon-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, #ffb6c1, #ffd6e0); /* suave rosado */
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 15px rgba(255, 182, 193, 0.4);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* ✨ Efecto brillo suave */
.icon-bubble::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* 💫 Animación flotante */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* 🌈 Colores alternativos para variar */
.icon-bubble.pink { background: linear-gradient(135deg, #ffb6c1, #ff8fab); box-shadow: 0 6px 15px rgba(255, 182, 193, 0.4); }
.icon-bubble.blue { background: linear-gradient(135deg, #a2d2ff, #8ecae6); box-shadow: 0 6px 15px rgba(162, 210, 255, 0.4); }
.icon-bubble.yellow { background: linear-gradient(135deg, #ffe66d, #ffd166); box-shadow: 0 6px 15px rgba(255, 214, 102, 0.4); }
.icon-bubble.green { background: linear-gradient(135deg, #b9fbc0, #98f5e1); box-shadow: 0 6px 15px rgba(152, 245, 225, 0.4); }
.icon-bubble.lilac { background: linear-gradient(135deg, #cdb4db, #b8c0ff); box-shadow: 0 6px 15px rgba(205, 180, 219, 0.4); }


/* Texto */
.facility-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.facility-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Colores suaves */
.bg-violeta-light { background-color: #f0e9ff; }
.bg-rosado-light { background-color: #ffe7ed; }
.bg-celeste-light { background-color: #e2f4ff; }
.bg-amarillo-light { background-color: #fff8df; }
.bg-menta-light { background-color: #e6fff5; }

.bg-violeta { background: var(--violeta); }
.bg-coral { background: var(--coral); }
.bg-amarillo { background: var(--amarillo); }
.bg-menta { background: var(--menta); }
.bg-celeste { background: var(--celeste); }

/* Animación flotante */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Nubes suaves */
.facility-cloud {
  position: absolute;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(25px);
  animation: moveCloud 20s ease-in-out infinite alternate;
}
.cloud-1 { width: 180px; height: 60px; top: 10%; left: 10%; animation-delay: 0s; }
.cloud-2 { width: 220px; height: 70px; bottom: 15%; right: 15%; animation-delay: 3s; }
.cloud-3 { width: 140px; height: 50px; top: 50%; left: 60%; animation-delay: 6s; }

@keyframes moveCloud {
  0% { transform: translateX(0); }
  100% { transform: translateX(25px); }
}

/* Responsive */
@media (max-width: 768px) {
  .facility-card {
    padding: 2rem 1.2rem;
  }
  .icon-bubble {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
}


/* //ABOUT */

.about-section {
  background: linear-gradient(180deg, #fdfbff 0%, #f9fcff 100%);
  font-family: 'Quicksand', sans-serif;
  color: #444;
  position: relative;
}

/* Subtítulo */
.section-subtitle {
  font-weight: 600;
  color: #ff8bb1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Título con degradado */
.text-neon-wrapper {
  position: relative;
  display: inline-block;
  padding: 0px 0px;
  border-radius: 12px;

  /* 👇 Difuminado detrás del texto */
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12); /* muy suave */
}

.text-neon {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ff90b3, #a49eff, #7ee2c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  position: relative;
}

/* 👇 Glow tipo neón usando el mismo color del gradiente */
.text-neon::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;

  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: blur(8px) brightness(1.4);
  opacity: 0.45; /* 👈 Para que no se vea exagerado */
  z-index: -1;
}

.text-gradient {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ff90b3, #a49eff, #7ee2c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Íconos */
.text-pink { color: #ff9eb8; }
.text-menta { color: #68d3c2; }
.text-violeta { color: #8c7efb; }

/* Botón */
.btn-pastel {
  background: linear-gradient(90deg, #ffa5c9, #8be3ca);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.btn-pastel:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Imágenes */
.about-main-img {
  border-radius: 1.5rem;
  transition: transform 0.3s ease;
}
.about-main-img:hover {
  transform: scale(1.03);
}
.about-sub-img {
  border-radius: 1rem;
}

/* Bordes suaves */
.border-top, .border-bottom {
  border-color: #eee3ff !important;
}

/* Decoraciones */
.about-cloud {
  position: absolute;
  background: url('../img/cloud.svg') no-repeat center/contain;
  width: 200px;
  height: 120px;
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.cloud-left {
  top: 5%;
  left: -80px;
}
.cloud-right {
  bottom: 10%;
  right: -100px;
  animation-delay: 3s;
}

.shape-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ffe1f0;
  border-radius: 50%;
  top: 15%;
  right: 10%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite alternate;
}
.shape-star {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('../img/star.svg') no-repeat center/contain;
  bottom: 5%;
  left: 8%;
  opacity: 0.4;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

/* Animación flotante */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* //etapas */
/* Botón de WhatsApp (armonizado con btn-pastel) */
.btn-whatsapp {
  background: linear-gradient(90deg, #61d3c1, #25d366);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* ========================== */
/* ===== ETAPAS INFANTILES ==== */
/* ========================== */
.stages-cute {
  background: linear-gradient(180deg, #fdfbff 0%, #f7fbff 100%);
  font-family: 'Quicksand', sans-serif;
  position: relative;
}

.timeline {
  position: relative;
  margin: 3rem auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--menta), var(--violeta));
  border-radius: 2px;
  transform: translateX(-50%);
  opacity: 0.15;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item .bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.timeline-content {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  max-width: 300px;
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.text-amarillo { color: var(--amarillo); }
.text-celeste { color: var(--celeste); }
.text-menta { color: var(--menta); }
.text-coral { color: var(--coral); }

/* Responsivo */
@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }
  .timeline-item .bubble {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .timeline-content {
    max-width: 100%;
  }
}

/* ==== REGISTRATION DREAMY ==== */
.registration-dreamy {
  background: linear-gradient(180deg, #fefcff 0%, #f9faff 100%);
  font-family: 'Quicksand', sans-serif;
  position: relative;
}

/* Textos y títulos */
.text-gradient {
  background: linear-gradient(90deg, #ffb5a7, #b3e9c7, #b5b9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cute-list li {
  list-style: none;
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #555;
}

.cute-input {
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  border: 1px solid #eee;
  background-color: #fdfdff;
  transition: all 0.3s ease;
}

.cute-input:focus {
  border-color: #a8e6cf;
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.3);
}

/* Botones */
.btn-coral {
  background: #ff9aa2;
  color: white;
  transition: all 0.3s;
}

.btn-coral:hover {
  background: #ff7f8a;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

/* Tarjeta formulario */
.dreamy-card {
  border-radius: 1.5rem;
  overflow: hidden;
}

.bg-gradient {
  background: linear-gradient(90deg, #ffb5a7, #b5b9ff);
}

/* ==== Elementos flotantes decorativos ==== */
.floating-cloud, .floating-star, .floating-circle {
  position: absolute;
  opacity: 0.15;
  z-index: 0;
}

.cloud-1 {
  background: url('img/cloud.png') no-repeat center / contain;
  width: 140px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.cloud-2 {
  background: url('img/cloud.png') no-repeat center / contain;
  width: 180px;
  height: 100px;
  bottom: 10%;
  right: 5%;
  animation: float 10s ease-in-out infinite reverse;
}

.star-1, .star-2 {
  background: url('img/star.png') no-repeat center / contain;
  width: 50px;
  height: 50px;
}

.star-1 { top: 20%; right: 15%; animation: twinkle 3s infinite alternate; }
.star-2 { bottom: 15%; left: 10%; animation: twinkle 4s infinite alternate; }

.floating-circle {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #ffe9ec 0%, transparent 70%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 6s infinite ease-in-out;
}

/* Animaciones suaves */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}


/* //TESTIMONIOS */
.testimonials-section {
  background: linear-gradient(180deg, #fff7fb 0%, #ffeef5 100%);
  position: relative;
}

.text-pastel { color: #ff7faa; }
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.25);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 150, 180, 0.35);
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.person {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 10px;
}
.person img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(255, 150, 180, 0.3);
}
.person h6 {
  margin: 0;
  font-weight: 600;
  color: #333;
}
.person small {
  color: #888;
}

/* Fondos animados */
.floating-cloud {
  position: absolute;
  background: url('../img/cloud.svg') no-repeat center/contain;
  width: 120px;
  height: 70px;
  opacity: 0.15;
  animation: floatCloud 10s ease-in-out infinite;
}
.cloud-1 { top: 10%; left: 5%; animation-delay: 0s; }
.cloud-2 { bottom: 10%; right: 5%; animation-delay: 3s; }

.floating-star {
  position: absolute;
  background: url('../img/star.svg') no-repeat center/contain;
  width: 60px;
  height: 60px;
  opacity: 0.2;
  animation: floatStar 8s ease-in-out infinite;
}
.star-1 { top: 20%; right: 20%; }
.star-2 { bottom: 15%; left: 15%; }

@keyframes floatCloud {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatStar {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.1); }
}

/* Swiper */
.swiper-pagination-bullet {
  background: #ffb6c1;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #ff7faa;
  opacity: 1;
}

/* FOOTER */
.footer-fantasias {
  background: linear-gradient(135deg, #b8e0ff 0%, #ffd6f9 100%);
  color: #000000;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.text-pastel {
  color: #ff9ce6;
}

/* Social buttons */
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000a1;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #0032d4;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Enlaces */
.footer-link {
  color: rgba(10, 10, 10, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0032d4;
  text-shadow: 0 0 6px rgba(0, 102, 235, 0.6);
}

/* Botón WhatsApp */
.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  transition: all 0.3s ease;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
}


/* ===== GALERIA ===== */

.galeria-fotos {
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #fff7f7, #fff0fb, #fff8e6);
}

.galeria-fotos h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ff7a7a;
  text-shadow: 0 2px 6px rgba(255,150,150,0.25);
}

.galeria-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.galeria-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  background: #fff;
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .35s ease;
  border-radius: 18px;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

/* ===== LIGHTBOX ===== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  animation: fadeIn .25s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
  animation: zoomIn .25s ease;
}

/* Flechas */
.flecha {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
  transition: 0.2s;
}

.flecha:hover {
  color: #ffaaaa;
}

.flecha-izq {
  left: 40px;
}

.flecha-der {
  right: 40px;
}

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

@keyframes zoomIn {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
