* {
    transition: all 150ms ease-in-out !important;
}

@keyframes pulso {

    0%,
    100% {

        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}
@keyframes latido {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.01);
        opacity: 0.6;
    }
}

@keyframes ingresoGradual {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0rem);
    }
}

@keyframes desaparecer {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


.desaparece {
    opacity: 1;
    animation: desaparecer 500ms ease-out forwards;
    animation-delay: 1s;
}