/* CSS para o cabecalho */

/* ================================== */
/* DESKTOP - Configuração base */
/* ================================== */

#cabecalho {
    width: 100%;
    position: fixed;
    z-index: 1000;
    padding-top: 1rem;
    left: 0;
    top: 0;
    right: 0;
    overflow: visible;
    transition: background-color 0.3s ease;
    background-color: transparent !important
}

#cabecalho.cabecalho-com-background {
    background-color: var(--preto-lavado) !important;
    box-shadow: 0 2px 10px rgb(0 0 0 / .1)
}

#cabecalho.cabecalho-com-fundo {
    background-color: transparent !important
}

.cabecalho_logo svg path {
    fill: white !important
}

.cabecalho_menu svg path {
    stroke: white !important
}

.cabecalho_logo svg:hover path {
    fill: #F6E621 !important
}

.cabecalho_menu svg:hover path {
    stroke: #F6E621 !important
}

.cabecalho_menu {
    -webkit-tap-highlight-color: #fff0;
    cursor: pointer
}

.cabecalho {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 8%;
    overflow: visible;
    max-width: 100vw;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s
}

.cabecalho_logo svg {
    width: 65%;
    height: 4rem;
    padding: .4rem 0;
    fill: var(--branco);
    transition: fill 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform .3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
}

.cabecalho_logo svg:hover {
    fill: var(--amarelo-criativo) !important;
    transform: scale(1.1);
    transition: fill 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform .3s ease !important;
}

/* Aplica o hover diretamente no path do SVG para sobrescrever fill inline */
.cabecalho_logo svg:hover path {
    fill: var(--amarelo-criativo) !important;
}

.cabecalho_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    padding: .5rem;
    box-sizing: border-box
}

@media(max-width:768px) {
    .cabecalho_menu {
        width: 2.5rem;
        height: 2.5rem;
        padding: .2rem;
        opacity: 0.7
    }
}

.cabecalho_menu.scrolling-active {
    pointer-events: none !important;
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important
}

.cabecalho_menu svg {
    width: 2.5rem;
    height: 2rem;
    padding: 0;
    transition: all 0.8s ease;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
}

.cabecalho_menu svg:hover {
    fill: var(--amarelo-criativo);
    transform: scale(1.15);
}

@media (max-width:767px){
.cabecalho_menu svg{transition:none!important;transform:none!important;fill:var(--branco)!important}
.cabecalho_menu svg:hover{transform:none!important;fill:var(--amarelo-criativo)!important}
}
.cabecalho_menu svg:hover{cursor:pointer}
