.footer {
    background-color: var(--background-color-footer);
    display: flex;
    flex-direction: column;
    
}

.footer-container {
    color: var(--font-color-footer);
    padding: 40px 20px 40px 20px;
    width: 100vw;
    display: flex;
    justify-content:baseline;
    flex-wrap: wrap;
    margin: auto;
}

.footer-title {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 20px;
}

.adress {
    flex-grow: 1;
    width: 100vw;
}

.footer-adress {
    margin-bottom: 20px;
    color: var( --font-color-sub-itens);
}

.reservation-button {
    color: var( --font-color-sub-itens);
    text-decoration: underline;
}

#nav-footer {
    margin-bottom: 20px;
}

.nav-item {
    color: var( --font-color-sub-itens);
    line-height: 32px;
}

.newsletter {
    display: flex;
    max-width: 375px;
    margin-bottom: 20px;
}

.newsletter > .button {

}

.newsletter > #email {
    flex-grow: 1;
    padding-left: 12px;
}

#newsletter-description {
    margin-bottom: 60px;
    color: var( --font-color-sub-itens);
}

.rights {
    padding-top: 20px;
    border-top: 1px solid var( --font-color-sub-itens);
    font-size: 14px;
    text-align: center;
    color: var( --font-color-sub-itens);
    padding-bottom: 24px;
}


.rights > p > a {
    color: var(--azul-claro-botao);
}

@media only screen and (min-width:768px) {
    .footer-container {
        max-width: 80vw;
    }

    .adress {
        width: 50%; 
    }
}   


@media only screen and (min-width:1000px) {
    .footer-container {
        max-width: 70vw;
    }

    .adress {
        width:40%;
    }

}   

@media only screen and (min-width:1200px) {
    .footer-container {
        max-width: 60vw;
    }

    .adress {
        width:25%;
    }

}   