.menu1_1 {
    height:50px; 
	width:100%;
	display: grid;
    grid-template-rows: 50px;
	grid-template-columns:  10px  auto  1fr  auto    1fr  40px   10px;
    grid-template-areas: "  .     logo  .    tit1_1  .    icon1  .";
    background:#f2f9e9
}
.logo {
	grid-area: logo;
	display: grid;
    justify-self: center;
    align-self: center;
    height: 36px; 
}

.tit1_1 {
    grid-area: tit1_1;
    font-family: system-ui;
    font-weight: bold;
    font-size: 22px;
    align-self: center;
    color:#87BA41;
}
@media screen and (max-width: 790px) {
    /* Celular: 393 x 851 */
}