﻿#idLogoCALogin {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

/* Animación principal */
@keyframes jumpSpin {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: blur(0);
    }

    40% {
        transform: translateY(-75px) rotate(180deg) scale(1.1);
        filter: blur(2px);
    }

    60% {
        transform: translateY(-75px) rotate(360deg) scale(1.1);
        filter: blur(2px);
    }

    80% {
        transform: translateY(0px) rotate(360deg) scale(1);
        filter: blur(0);
    }

    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        filter: blur(0);
    }
}

.animate {
    animation: jumpSpin 0.6s ease-in-out;
}

/* Escalado final extra rápido */
@keyframes quickScaleBack {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.scaleBack {
    animation: quickScaleBack 0.1s ease;
}
