
#nevado {
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* Copos de nieve */
#nevar .copo {
  position: absolute;
  top: -60px;
  font-size: 1.8em;
  color: #ffffff;

  /* ✨ Difuminado celestito */
  text-shadow:
    0 0 4px rgba(170, 230, 255, 0.9),
    0 0 8px rgba(120, 200, 255, 0.7),
    0 0 14px rgba(80, 170, 255, 0.5);

  filter: blur(0.3px);
  opacity: 0.95;

  animation: caer linear infinite;
}

/* Distribución horizontal + velocidades */
#nevar .copo:nth-child(1)  { left: 3%;  animation-duration: 11s; }
#nevar .copo:nth-child(2)  { left: 8%;  animation-duration: 14s; }
#nevar .copo:nth-child(3)  { left: 13%; animation-duration: 10s; }
#nevar .copo:nth-child(4)  { left: 18%; animation-duration: 13s; }
#nevar .copo:nth-child(5)  { left: 23%; animation-duration: 12s; }
#nevar .copo:nth-child(6)  { left: 28%; animation-duration: 15s; }
#nevar .copo:nth-child(7)  { left: 33%; animation-duration: 11s; }
#nevar .copo:nth-child(8)  { left: 38%; animation-duration: 14s; }
#nevar .copo:nth-child(9)  { left: 43%; animation-duration: 10s; }
#nevar .copo:nth-child(10) { left: 48%; animation-duration: 13s; }
#nevar .copo:nth-child(11) { left: 53%; animation-duration: 12s; }
#nevar .copo:nth-child(12) { left: 58%; animation-duration: 15s; }
#nevar .copo:nth-child(13) { left: 63%; animation-duration: 11s; }
#nevar .copo:nth-child(14) { left: 68%; animation-duration: 14s; }
#nevar .copo:nth-child(15) { left: 73%; animation-duration: 10s; }
#nevar .copo:nth-child(16) { left: 78%; animation-duration: 13s; }
#nevar .copo:nth-child(17) { left: 83%; animation-duration: 12s; }
#nevar .copo:nth-child(18) { left: 88%; animation-duration: 15s; }
#nevar .copo:nth-child(19) { left: 93%; animation-duration: 11s; }
#nevar .copo:nth-child(20) { left: 97%; animation-duration: 14s; }

/* Animación solo caída (sin giro) */
@keyframes caer {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(110vh);
  }
}
