/* ===========================================
   EFECTO DE SALIDA GLOBAL (Fade Out + Blur)
   =========================================== */

.body-anim.unloading {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.97);
    transition: opacity 0.6s ease, filter 0.8s ease, transform 0.8s ease;
}