main{
    font-family: var(--fonte);
    background-color: var(--marrom);
    color: var(--branco);
}

.container__especial{
    border-bottom: 2px solid var(--bege);
}

.container{
    border-bottom: 2px solid var(--bege);
    border-top: 2px solid var(--bege);

}

.imagem__cardapio{
    width: 35%;
    Object-fit: contain;
    padding: 2em 0;
    border-radius: 25%;
    opacity: 0.6;
    transition: 400ms;

}
.imagem__cardapio:hover{
    width: 35.5%;
    opacity: 0.8;
}


.churros, .crepes{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.cardapio__item{
    display: flex;
    justify-content: space-between;
}

.cardapio__titulo{
    text-align: center;
    font-size: 3vw;
    padding-top: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--branco);
    text-decoration: underline;
}

.cardapio__titulo__especial{
    text-align: center;
    font-size: 3vw;
    padding-top: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
}

.cardapio__subtitulo{
    text-align: center;
    padding-top: 0.5em;
    font-weight: bold;
    font-size: 2vw ;
}

.cardapio__texto{
    font-size: 1.3vw;
    margin: 1em;
    color: var(--branco);
    text-transform: uppercase;
    font-weight: 600;
    transition: 400ms;
}

.cardapio__link{
    text-decoration: none;
    color: var(--branco);

}

@media screen and (max-width: 500px) {
    .imagem__cardapio{
        width: 45%;
        Object-fit: contain;
        padding: 2em 0;
        border-radius: 25%;
        opacity: 0.6;
        transition: 400ms;
    }
    .cardapio__texto{
        font-size: 1.7vw;
        margin: 1em;
        color: var(--branco);
        text-transform: uppercase;
        font-weight: 600;
        transition: 400ms;
    }
    .cardapio__titulo{
        text-align: center;
        font-size: 5vw;
        padding-top: 1.5em;
        font-weight: bold;
        text-transform: uppercase;
        color: var(--branco);
        text-decoration: underline;
    }
    
    .cardapio__titulo__especial{
        text-align: center;
        font-size: 5vw;
        padding-top: 1.5em;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: underline;
    }
    
    .cardapio__subtitulo{
        text-align: center;
        padding-top: 0.5em;
        font-weight: bold;
        font-size: 4vw ;
    }
}

