.cabecalho {
    align-items: center;
    background: #000000;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

@media screen and (min-width: 0) {
    .cabecalho {
        justify-content: center;
        padding: 0 5rem;
    }
}

@media screen and (min-width: 768px) {
    .cabecalho {
        justify-content: space-between;
        padding: 0 5rem;
    }   
}