﻿@font-face {
    font-family: "Mulish-ExtraBold";
    src: url("./fonts/Mulish-Bold.woff");
    font-weight: bold;
}

@font-face {
    font-family: "Mulish-000000-900";
    src: url("./fonts/Mulish-000000.woff");
    font-weight: bold;
}

@font-face {
    font-family: "Mulish-Bold";
    src: url("./fonts/Mulish-Bold.woff");
    font-weight: bold;
}

@font-face {
    font-family: "Mulish-SemiBold";
    src: url("./fonts/Mulish-SemiBold.woff");
}

@font-face {
    font-family: "Mulish-Medium";
    src: url("./fonts/Mulish-Medium.woff");
}

@font-face {
    font-family: "Mulish-Light";
    src: url("./fonts/Mulish-Light.woff");
}

@font-face {
    font-family: "Mulish-Black";
    src: url("./fonts/Mulish-Black.woff");
}

@font-face {
    font-family: "Mulish-Regular";
    src: url("./fonts/Mulish-Regular.woff");
}

body {
    box-sizing: content-box;
}

#menu-lateral {
    display: flex;
    flex-direction: column;
    width: 370px;
    min-height: 100%;
    height: auto;
    padding: 1em;
}

#menu-lateral .collapse {
    max-width: 250px;
    width: 100%;
}

#menu-lateral .conteudo-menu {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    width: 100%;
}

#menu-lateral a {
    color: #5f5f5f;
    text-decoration: none;
    text-transform: uppercase;
}

#menu-lateral img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(0%) saturate(1312%) hue-rotate(167deg) brightness(95%) contrast(82%);
}

#menu-lateral .titulo-link-menu,
#menu-lateral .btn-menu {
    font-family: "Mulish-Bold";
    font-size: 13px;
    text-transform: uppercase;
    color: #5f5f5f;
    background-color: #ffff;
}


#menu-lateral .box-opcao-menu {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    width: 100%;
    margin-bottom: 12px;
}

#menu-lateral button {
    margin: 0;
    padding: 0;
}

#menu-lateral .btn-menu i,
#menu-lateral i {
    margin-right: 0;
    font-size: 18px;
    color: #5f5f5f;
}


#menu-lateral .btn-menu i,
#menu-lateral .icon {
    margin-right: 10px;
}

#menu-lateral a:hover {
    color: #ccc;
}





/* Altera o ícone */

#menu-lateral .btn-menu img:not(.icon) {
    transition: transform 0.5s ease;
}

#menu-lateral .btn-menu[aria-expanded="true"] img:not(.icon) {
    transform: rotate(180deg);
}

/* Alterar o ícone ao passar o mouse */
#menu-lateral .btn-menu:hover img:not(.icon) {
    transform: rotate(180deg);
}


#menu-lateral .sub-menu {
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    height: 35px;
    width: 100%;
}

#menu-lateral .link-sub-menu {
    border-radius: 8px;
    color: #5f5f5f;
    display: flex;
    align-items: center;
    font-family: "Mulish-Bold";
    font-weight: 700;
    font-size: 11px;
    font-weight: 700;
    padding-left: 40px;
    height: 48px;
    width: 100%;
}

#menu-lateral .opcoe-menu {
    display: flex;
    width: 100%;
    padding-left: 24px;
}


#menu-lateral .titulo-link-menu:hover,
#menu-lateral button:hover {
    color: #ccc;
}

.ico-header-mobile {
    display: none;
    filter: var(--filtro-cinza);
    width: 30px;
    margin-right: 30px;
}

/* CONFIGURAÇÕES MOBILE */
@media(max-width: 991px) {
    #box-conteudo {
        flex-direction: column;
        padding: 0;
        position: relative;
    }


    .ico-menu-mobile {
        display: block;
    }

    .box-ico {
        height: 48px;
    }

    #menu-lateral {
        display: none;
        transition: transform 0.5s ease, opacity 0.5s ease;
        transform: translateX(-100%); /* Inicialmente o menu está fora da tela */
        opacity: 0;
    }

    .ico-header-mobile {
        display: block;
        margin-left: 22px;
        margin-right: 0px;
    }

    .box-menu {
        height: auto;
        width: 100%;
    }
}

@media(min-width: 992px) {

    #menu-lateral {
        display: block !important;
    }
}


.box-header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    min-height: 35px;
    width: 100%;
    z-index: 1;
}

.logo-header {
    width: 250px;
}

.box-ico {
    display: flex;
    z-index: 1000;
}

.ico-header {
    display: block;
    filter: var(--filtro-cinza);
    width: 30px;
    margin-right: 30px;
}

.ico-menu-mobile {
    display: none;
    filter: var(--filtro-cinza);
    width: 50px;
    margin-right: 30px;
    transition: opacity 0.8s ease;
}

/* CONFIGURAÇÕES MOBILE */

@media(max-width: 991px) {
    .bi-box-arrow-left {
        display: none;
    }

    .logo-header {
        width: 240px;
    }

    .box-ico {
        height: 48px;
    }

    .ico-header {
        display: none;
    }

    .ico-menu-mobile {
        display: block;
    }

    .box-menu {
        height: auto;
        width: 100%;
    }
}

@media(min-width: 992px) {
    .ico-header {
        display: block;
    }

    .ico-menu-mobile {
        display: none;
    }
}