/* 🎉 Carnaval Decorations 🎉 */

/*  Confetes Caindo */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confettiFall linear infinite;
}

/* Cores cíclicas para os confetes */
.confetti:nth-child(5n+1) { background-color: #ff4757; } /* Vermelho */
.confetti:nth-child(5n+2) { background-color: #2ed573; } /* Verde */
.confetti:nth-child(5n+3) { background-color: #1e90ff; } /* Azul */
.confetti:nth-child(5n+4) { background-color: #ffa502; } /* Laranja */
.confetti:nth-child(5n+5) { background-color: #9b59b6; } /* Roxo */

/* Formas variadas */
.confetti:nth-child(even) { border-radius: 50%; } /* Círculos */
.confetti:nth-child(3n) { width: 12px; height: 6px; } /* Retângulos */

@keyframes confettiFall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Responsividade */
@media (max-width: 768px) {
    .confetti { width: 6px; height: 6px; }
}