<style>
#navegacao, #miolodinamico {
display: grid;
width: 100%;
grid-template-columns: 180px 1fr;
border: 1px solid grey;
}
#logotipo {
width: 180px;
height: 100px;
background-color: red;
}
#menu {
display: grid;
align-items: center;
text-align: right;
justify-self: end;
width: 480px;
grid-template-columns: 120px 120px 120px 120px;
border: 1px solid red;
}
#miolo {
height: 300px;
}
#rodape {
width: 100%;
height: 100px;
border: 1px solid black;
background-color: grey;
color: white;
}
.menulateral {
width: 180px;
height: 25px;
display: flex;
align-items: center;
border-bottom: 1px solid red;
}
</style>