#cabecalho {
    background-color: var(--preto-lavado);
    width: 100%;
    position: fixed;
    z-index: 999;
}

.cabecalho {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.cabecalho_logo svg {
    width: 50%;
    height: 3.2rem;
    padding: .4rem 0 .4rem .7rem;
}

.cabecalho_logo svg path {
    fill: var(--branco);
}

.cabecalho_logo svg:hover path {
    fill: var(--amarelo-criativo);
}

.cabecalho_menu svg {
    width: 3rem;
    height: 3rem;
    padding: .4rem .7rem .4rem 0;
}

.cabecalho_menu svg:hover {
    cursor: pointer;
}

.cabecalho_menu svg path {
    stroke: var(--branco);
}

.cabecalho_menu svg:hover path {
    stroke: var(--amarelo-criativo);
}

@media only screen and (min-width: 1921px) {
    .cabecalho_logo svg {
        width: 45%;
    }

    .cabecalho_menu svg {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media only screen and (max-width: 1920px) and (min-width: 1401px) {
    .cabecalho_logo svg {
        width: 40%;
    }

    .cabecalho_menu svg {
        width: 3rem;
        height: 3rem;
    }
}

@media only screen and (max-width: 1400px) and (min-width: 1281px) {
    .cabecalho_logo svg {
        width: 35%;
    }

    .cabecalho_menu svg {
        width: 2.8rem;
        height: 2.8rem;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 901px) {
    .cabecalho_logo svg {
        width: 30%;
    }

    .cabecalho_menu svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media only screen and (max-width: 900px) {
    .cabecalho_logo svg {
        width: 30%;
    }

    .cabecalho_menu svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

