.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.hero-logo img {
    width: 300px;          /* ⬅️ AUMENTA A LOGO */
    max-width: 95%;
    filter: drop-shadow(0 0 35px rgba(255,140,0,0.9));
    animation: pulseLogo 3s infinite ease-in-out;
}


/* AURA DE LUZ */
.hero-logo::before {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle,
        rgba(255,140,0,0.45),
        rgba(255,60,0,0.2),
        transparent 70%);
    filter: blur(40px);
}
@media (max-width: 768px) {
    .hero-logo img {
        width: 320px;
    }

    .hero-logo::before {
        width: 380px;
        height: 380px;
    }
}


/* PULSAÇÃO */
@keyframes pulseLogo {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255,140,0,0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 45px rgba(255,180,0,1));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255,140,0,0.6));
    }
}

/* AURA ANIMADA */
@keyframes auraPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}
