/*==========================================================
    SAÍDA DA TELA DE ABERTURA
==========================================================*/

.tela-abertura.saindo{

    animation:
    sairTelaAbertura
    .8s
    ease
    forwards;

}


@keyframes sairTelaAbertura{

    from{

        opacity:1;

        transform:scale(1);

    }

    to{

        opacity:0;

        transform:scale(1.035);

    }

}