/*
Centelleo etéreo con efecto de partículas suaves
*/

/*#carousel_9b37 {
  background-color: #d3dee4;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}*/

.ambient-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Aurora de fondo */
.aurora-layer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 30%, rgba(211, 222, 228, 0.3) 0%, rgba(255, 255, 255, 0.1) 80%);
  animation: auroraWave 10s ease-in-out infinite alternate;
  opacity: 0.7;
  filter: blur(100px);
  mix-blend-mode: screen;
}

@keyframes auroraWave {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: rotate(3deg) scale(1.04);
    opacity: 0.5;
  }
  100% {
    transform: rotate(-3deg) scale(1);
    opacity: 0.4;
  }
}

/* Capa de partículas */
.particles-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Partícula individual */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  animation: sparkle 6s infinite ease-in-out;
  filter: blur(1px);
}

@keyframes sparkle {
  0% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0.1;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-15px, 15px) scale(0.7);
    opacity: 0.05;
  }
}
