#home {
    width: 100vw;
    min-height: calc(100vh - var(--altura_nav_header_desk));
    background-color: var(--cor_fundo);
    color: var(--cor_texto_fundo);
}

#home .slide {
    widows: 100%;
    height: 300px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

@media screen and (max-width:700px) {
    /* #home {
        min-height: calc(100vh - var(--altura_nav_header_mob));
    } */
}