.animado {
    opacity: 0;
    transition: all 0.5s;
}

.mostrararriba {
    animation: mostrararriba 1.5s;
}

@keyframes mostrararriba {
    0% {
        transform: translateY(60%);
    }

    100% {
        transform: translateY(0);
    }
}