.header-transparencia {
    background-color: var(--cor-azul-principal);
    background-image: url('../../images/calendar.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;

    .header-superior, .header-inferior {
        width: 80vw;
        margin: auto;
    }
}

.hedader-imagem-ja {
    width: 4rem;
}

.header-superior {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-hamburguer-menu {
    display: none;
}

.header-botao-menu {
    background: none;
    outline: none;
    border: none;
    border-radius: 50%;
}

.header-link {
    color: var(--cor-branco);
    text-decoration: none;
}

.header-link:hover {
    color: var(--cor-branco);
    text-decoration: none;
    cursor: pointer;
}

.header-link-separador {
    height: 1.5rem;
    width: 1.2px;
    background-color: #ffffff24;
}

.header-separador {
    width: 100%;
    height: 1px;
    background-color: #ffffff24;
}

.header-inferior {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
    min-height: 24vh;
}

.header-titulo, .header-sub-titulo {
    color: var(--cor-branco);
    margin: 0;
}

.header-titulo {
    font-size: 2em;
    font-weight: bold;
}

.header-sub-titulo {
    font-size: 1em;
    .data-atual {
        font-weight: 600;
    }
}

.header-avisos-container {
    width: 24rem;
}

@media (max-width: 1024px) {
    .header-titulo {
        font-size: 1.6em;
    }
    .header-hamburguer-menu {
        display: block;
    }
        .header-menu {
        display: none;
    }
}

@media (max-width: 769px) {
    .header-transparencia {
        .header-superior, .header-inferior {
            width: 95%;
        }
    }

    .header-menu {
        display: none;
    }

    .header-hamburguer-menu {
        display: block;
    }

    .header-superior {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .header-inferior {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 481px) {
    .header-avisos-container {
        display: none;
    }

    .header-titulo {
        font-size: 1.3em;
    }

    .header-sub-titulo {
        font-size: 0.8em;
    }
}
