/* ========= LANTERNAS FLUTUANTES (Luzes mágicas) ========= */
.lanternas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.lanterna {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgb(248, 232, 2), rgba(255, 140, 0, 0.3));
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0;
    animation: flutuar 15s infinite ease-in-out;
    box-shadow: 0 0 20px rgb(255, 230, 0);
}

.lanterna::before {
    content: "✨";
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

@keyframes flutuar {
    0% {
        transform: translateY(100vh) translateX(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-20vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* Posições variadas */
.lanterna:nth-child(1) { left: 10%; width: 50px; height: 50px; animation-duration: 18s; animation-delay: 0s; }
.lanterna:nth-child(2) { left: 25%; width: 30px; height: 30px; animation-duration: 14s; animation-delay: 2s; }
.lanterna:nth-child(3) { left: 40%; width: 45px; height: 45px; animation-duration: 20s; animation-delay: 5s; }
.lanterna:nth-child(4) { left: 55%; width: 35px; height: 35px; animation-duration: 16s; animation-delay: 1s; }
.lanterna:nth-child(5) { left: 70%; width: 55px; height: 55px; animation-duration: 22s; animation-delay: 7s; }
.lanterna:nth-child(6) { left: 85%; width: 40px; height: 40px; animation-duration: 13s; animation-delay: 3s; }
.lanterna:nth-child(7) { left: 15%; width: 60px; height: 60px; animation-duration: 25s; animation-delay: 10s; }
.lanterna:nth-child(8) { left: 50%; width: 35px; height: 35px; animation-duration: 17s; animation-delay: 4s; }
.lanterna:nth-child(9) { left: 75%; width: 45px; height: 45px; animation-duration: 19s; animation-delay: 8s; }
.lanterna:nth-child(10) { left: 90%; width: 30px; height: 30px; animation-duration: 12s; animation-delay: 6s; }