.SenaBox {
    background-color: #fd8700;
    color: var(--negro)
}
.SenaBox > div {
    width: 90%; 
    max-width:900px; 
    margin: 0 auto; 
    display: grid; 
}
.SenaBox .LogoBox {
    display: flex; 
    align-items: center; 
    justify-content: center
}
@media only screen and (min-width: 400px) {
    /* For tablets: */
    .SenaBox > div {
        grid-template-columns: 1fr 2fr;
    }
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .SenaBox > div {
        grid-template-columns: 1fr 3fr;
    }
    
}