section nav {
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.sanduiche {
    flex: 1;
    background-color: #964f2e;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    height: 320px;
}

.sanduiche img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.panqueca {
    flex: 1;
    background-color: #964f2e;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    height: 320px; 
}

.panqueca img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.bolinho {
    flex: 1;
    background-color: #964f2e;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    height: 320px; 
}

.bolinho img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.sanduiche a {
    color: white;
    text-decoration: none;
    font-family: 'Bree serif';
    font-size: 0.8cm;
}

.panqueca a {
    color: white;
    text-decoration: none;
    font-family: 'bree serif';
    font-size: 0.8cm;
}

.bolinho a {
    color: white;
    text-decoration: none;
    font-family: 'bree serif';
    font-size: 0.8cm;
}

.sanduiche:hover {
    transition: 0.4s;
    background-color: #471905;
}

.panqueca:hover {
    transition: 0.4s;
    background-color: #471905;
}

.bolinho:hover {
    transition: 0.4s;
    background-color: #471905;
}