.destaques {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 33.33% 33.33% 33.33%;
    height: calc(100vh - 50px);
    gap: .3rem;
}

.destaques__principal {
    background: url('../img/principal.jpg') center / cover no-repeat;
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.destaques__secundario:nth-child(2) {
    background: url('../img/guiso_de_lentejas.jpg') center / cover no-repeat;
    grid-column: 4 / 4;
    grid-row: 1 / 1;
 
}

.destaques__secundario:nth-child(3) {
    background: url('../img/bizcochos-de-grasa.JPG') center / cover no-repeat;
    grid-column: 4 / 4;
    grid-row: 2 / 2;

}

.destaques__secundario:nth-child(4) {
    background: url('../img/empanadas.jpg') center / cover no-repeat;
    grid-column: 4 / 5;
    grid-row: 3 / 3;
}

.destaques__secundario:nth-child(5) {
    background: url('../img/matambre-arrollado.jpg') center / cover no-repeat;
    grid-column: 3 / 4;
    grid-row: 3 / 3;

}

.destaques__secundario:nth-child(6) {
    background: url('../img/salsa-criolla-basica.jpg') center / cover no-repeat;
    grid-column: 2 / 3;
    grid-row: 3 / 3;

}

.destaques__secundario:nth-child(7) {
    background: url('../img/polenta.jpg') center / cover no-repeat;
    grid-column: 1 / 2;
    grid-row: 3 / 3;

}

.destaques__categorias {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.destaques__categorias___lista {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: space-between;
}

.destaques__categorias___item {
    align-items: center;
    background: #fdfdfd;
    display: flex;
    color: #333333;
    width: 50%;
    padding: 1rem;
}

.destaques__categorias___link {
    color: inherit;
}

.destaques__titulo {
    color: #fdfdfd;
    background: rgb(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    padding: .6em;
}

.box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}