.snowflake {
    position: fixed;
    top: -50px; /* Inician más arriba para que no se vean "almacenados" */
    left: 0;
    width: 1em;
    height: 1em;
    color: #FFF;
    font-size: 1em;
    z-index: 9999;
    pointer-events: none;
    user-select: none;
    opacity: 0; /* Invisibles hasta que la animación comience */
    will-change: transform;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite; /* Infinito */
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.9; /* Aparecen al iniciar el ciclo */
    }
    100% {
        transform: translateY(110vh) translateX(50px) rotate(360deg); /* Caen hasta salirse de la pantalla */
        opacity: 0.2;
    }
}