@media (max-width: 768px) {
    .imagem-background {
        background-image: none !important;
        opacity: 0 !important;
        height: 0;
        pointer-events: none;
    }

    .imagem-overlay {
        display: none;
    }
}

.imagem-background {
    position: absolute;
    top: -150px;
    left: 0;
    z-index: -1; /* abaixo dos outros elementos */
    width: 100%;
    height: 82%; /* Ajusta para ocupar todo o header */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: opacity 1.5s linear;

    /* filter: brightness(60%);

    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 1, 1) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%; */
}

.imagem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:70%;
    background: linear-gradient(180deg, rgba(41, 84, 142, 0.2) 0%, #195488 100%);
    z-index: -1; 
    align-items: stretch;
}

.divHeader {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    z-index: 1;
}
