/* Efeito de Estrelinhas Douradas / Purpurina */
#glitter-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Permite clicar através das estrelas */
    z-index: 9999; /* Fica acima de quase tudo */
    overflow: hidden;
}

.glitter-star {
    position: absolute;
    top: -20px;
    background: #C5A059; /* Cor Dourada do site */
    border-radius: 50%;
    opacity: 0;
    animation: fall linear forwards;
    box-shadow: 0 0 5px #C5A059, 0 0 10px #FFD700; /* Brilho */
}

/* Formatos variados */
.glitter-star.square {
    border-radius: 0;
    transform: rotate(45deg);
}

.glitter-star.sparkle {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: #FFD700;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg) scale(0);
        opacity: 1;
    }
    10% {
        opacity: 1;
        transform: translateY(5vh) rotate(45deg) scale(1);
    }
    100% {
        transform: translateY(105vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}
