/* Efeito de Neve */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    2% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.5) rotate(360deg);
        top: 100vh;
        opacity: 0;
    }
}

/* Variações de tamanho e velocidade para os flocos */
.snowflake:nth-child(odd) {
    animation-duration: 8s;
}

.snowflake:nth-child(even) {
    animation-duration: 12s;
}

.snowflake:nth-child(3n) {
    animation-duration: 6s;
}

.snowflake:nth-child(4n) {
    animation-duration: 10s;
}

.snowflake:nth-child(5n) {
    animation-duration: 14s;
}

/* Efeito Spotlight */
#spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    transition: all 0.1s ease-out;
}