/* Custom Styles para efectos Premium */
html { scroll-behavior: smooth; }

/* Animación fluida para los blobs de fondo */
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Sombra rosa suave para botones */
.shadow-pink-glow {
  box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.4);
}

/* Ocultar barra de scroll para el carrusel horizontal */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Estilos de las imágenes del Carrusel */
.alumna-card {
  width: 250px;
  height: 350px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.alumna-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.3);
  z-index: 10;
}