﻿/* ================= ANIMACIONES GLOBALES ================= */

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-lift {
    transition: all 0.25s ease;
}

    .hover-lift:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

.btn-glow {
    transition: all 0.3s ease;
}

    .btn-glow:hover {
        box-shadow: 0 0 12px rgba(13,110,253,0.6);
        transform: scale(1.05);
    }

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

.loader-modern {
    width: 18px;
    height: 18px;
    border: 3px solid #dee2e6;
    border-top: 3px solid #0d6efd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
