/* Animações e Efeitos Profissionais */

/* Gradiente animado para textos */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Efeito de partículas flutuantes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulsação suave */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Entrada suave */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de luz passando */
@keyframes lightswipe {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Link com underline animado */
a:not(.menu-link):not(.botao-acao):not(.card-link) {
    position: relative;
    transition: color 0.3s ease;
}

a:not(.menu-link):not(.botao-acao):not(.card-link)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5fc3f7, #1ad102);
    transition: width 0.3s ease;
}

a:not(.menu-link):not(.botao-acao):not(.card-link):hover {
    color: #5fc3f7;
}

a:not(.menu-link):not(.botao-acao):not(.card-link):hover::after {
    width: 100%;
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Seleção de texto com estilo */
::selection {
    background-color: #5fc3f7;
    color: #0f0f0f;
}

::-moz-selection {
    background-color: #5fc3f7;
    color: #0f0f0f;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5fc3f7, #1ad102);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1ad102, #5fc3f7);
}
