/* ============================================
   ANIMAÇÕES E EFEITOS MODERNOS - REDWINS
   ============================================ */

/* Animações de entrada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efeito de brilho em elementos */
@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shine-effect {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(242, 172, 67, 0.3) 50%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: shine 3s ease-in-out infinite;
}

/* Efeito de flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Efeito de pulsação */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(242, 172, 67, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(242, 172, 67, 0.7);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Efeito de rotação suave */
@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-slow {
    animation: rotate-slow 20s linear infinite;
}

/* Partículas flutuantes */
@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Efeito de digitação */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Efeito de zoom suave */
@keyframes zoom-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efeito de bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Efeito de shake */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Efeito de glow text */
@keyframes glow-text {
    0%, 100% {
        text-shadow: 0 0 10px rgba(242, 172, 67, 0.5),
                     0 0 20px rgba(242, 172, 67, 0.3),
                     0 0 30px rgba(242, 172, 67, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(242, 172, 67, 0.8),
                     0 0 30px rgba(242, 172, 67, 0.6),
                     0 0 40px rgba(242, 172, 67, 0.4);
    }
}

/* Efeito de slide diagonal */
@keyframes slide-diagonal {
    from {
        transform: translate(-30px, -30px);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* Efeito de flip */
@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }
    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}

/* Efeito de neon glow */
@keyframes neon-glow {
    0%, 100% {
        box-shadow: 
            0 0 5px #f2ac43,
            0 0 10px #f2ac43,
            0 0 15px #f2ac43,
            0 0 20px #f2ac43;
    }
    50% {
        box-shadow: 
            0 0 10px #f2ac43,
            0 0 20px #f2ac43,
            0 0 30px #f2ac43,
            0 0 40px #f2ac43,
            0 0 50px #ffd700;
    }
}

/* Animação de gradient animado */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background: linear-gradient(270deg, #f2ac43, #e2b954, #ffd700);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
}

/* Efeito de loading dots */
@keyframes loading-dots {
    0%, 20% {
        color: rgba(242, 172, 67, 0.3);
        text-shadow: 0.25em 0 0 rgba(242, 172, 67, 0.3),
                     0.5em 0 0 rgba(242, 172, 67, 0.3);
    }
    40% {
        color: #f2ac43;
        text-shadow: 0.25em 0 0 rgba(242, 172, 67, 0.3),
                     0.5em 0 0 rgba(242, 172, 67, 0.3);
    }
    60% {
        text-shadow: 0.25em 0 0 #f2ac43,
                     0.5em 0 0 rgba(242, 172, 67, 0.3);
    }
    80%, 100% {
        text-shadow: 0.25em 0 0 #f2ac43,
                     0.5em 0 0 #f2ac43;
    }
}

/* Efeito de scroll reveal */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Classes utilitárias para animações */
.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-fade-scale {
    animation: fadeInScale 0.8s ease-out;
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Delays para animações sequenciais */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }

/* Efeito hover especial para cards */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 172, 67, 0.3);
}

/* Efeito de border animado */
.border-animated {
    position: relative;
    background: linear-gradient(90deg, #f2ac43, #e2b954, #ffd700, #f2ac43);
    background-size: 300% 100%;
    animation: gradient-shift 4s linear infinite;
    padding: 2px;
    border-radius: 12px;
}

.border-animated-content {
    background: rgba(30, 30, 50, 0.9);
    border-radius: 10px;
    padding: 20px;
}

