@import url('base.css');

:root{
    --cor-menu: #2d572c;
    --cor-fonte-menu: #fff !important;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--cor-texto-claro);
    background-color: var(--cor-principal);
    padding: 10px;
}


header img {
    width: 150px;
}

header .empresa {
    display: flex;
    flex-direction: column;
    text-align: center;
}




@media screen and (max-width: 992px) {
    header {
        flex-direction: column;
    }
}