/* CABEÇALHO GOV */
.cabecalho-gov{
    background-color: var(--gov-cor-azul);
    color: #FFF;

    & .container{
        align-items: center;
        justify-content: space-between;
        padding-block: 1rem;
    }
}

    .gov__link{
        font-weight: 800;
    }

    .gov__navegacao{
        & .lista{
            display: flex;
            gap: 1.5rem;

            & li{
                font-size: 0.75rem;
                font-weight: 400;
                opacity: .8;
                text-transform: uppercase;

                &:hover{
                    opacity: 1;
                }
            }
        }
    }

.faixa-gov{
    background-image: var(--gov-gradiente-faixa);
    height: .25rem;
}

/* CABEÇALHO SEI */

.cabecalho{
    background-color: #FFF;
    box-shadow: var(--sombra);

    & .container{
        align-items: center;
        justify-content: space-between;
        padding-block: 1rem;
    }
}

    .cabecalho__menu{
        align-items: center;
        display: flex;
        gap: 1rem;
    }

        .menu-mobile{
            display: none;
        }

        .cabecalho__logo{
            height: 42px;
            width: auto;
        }

    .cabecalho__navegacao{
        & .lista{
            align-items: center;
            display: flex;
            gap: 1.5rem;

            & li{
                font-weight: 500;
                position: relative
            }
        }
    }

        .navegacao__menu{
            align-items: center;
            cursor: pointer;
            display: flex;
            gap: .5rem;

            &::after{
                background-image: url('../../img/flecha-menu.svg');
                background-repeat: no-repeat;
                content: '';
                display: block;
                height: .5rem;
                width: .75rem;
            }
        }

        .menu__dropdown{
            background-color: #FFF;
            box-shadow: var(--sombra);
            display: none;
            flex-direction: column;
            gap: .5rem;
            padding: 1rem;
            padding-right: 2.5rem;
            position: absolute;
            top: 45px;
            width: max-content;
            z-index: 1;

            &.visivel{
                display: flex;
            }
            
            & > * {
                color: #333;
                font-size: 14px;
                line-height: 160%;
            }

            & .titulo{
                font-weight: 600;

                &.treinamento{
                    color: #03CD84;
                }

                &.usuario-externo{
                    color: var(--cor-azul);
                }
            }

            & a:hover{
                background-color: #f7f7f7;
            }
        }

/* RESPONSIVIDADE */

@media screen and (width < 768px) {
    .cabecalho-gov{
        display: none;
    }
}

@media screen and (width < 600px) {
    .menu-mobile{
        display: block;
    }
    
    .cabecalho__navegacao{
        display: none;
    }
}