.overlay-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    position: fixed;
    left: -100vw;
    transition: left ease-in-out .5s;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 13;
}
.overlay-container--ativo{
    left: 0;
}