/* ======================================================================
   PORTAL LOURENÇO - ANIMAÇÕES E EFEITOS METÁLICOS
   ====================================================================== */

@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.65);
    }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.anim-shimmer {
    background: linear-gradient(90deg, #F3E5AB 0%, #D4AF37 25%, #FFF 50%, #D4AF37 75%, #F3E5AB 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 4s linear infinite;
}

.anim-pulse {
    animation: pulseGlow 3s infinite ease-in-out;
}

.anim-float {
    animation: floatElement 4s ease-in-out infinite;
}