

/* ------------------------------------------------------------*/
/* ===== Menu Lateral ===== */
#area-menu_lateral{
    width: 15%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    background-color: #FFCD2A;
}

#area-logo_sistema{
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding-block: 5px;
    border-bottom: 2px solid black;
}
#img-logo{
    height: 40px;
}
#nome_sistema{
    font-size: 14pt;
    font-weight: 900;
}

/* Botões Menu */
#area_btns-menu_lateral{
    width: 98%;
    flex: 1;
    min-height: 0;
    margin-top: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
}
.btn-menu{
    width: 100%;
    background-color: #f8bf03;
    border-block: 1px solid white;
    border-inline-color: transparent;
    padding-block: 10px;
    color: black;
    font-weight: bold;
    font-size: 12pt;
    cursor: pointer;
    transition: transform 0.25s ease-in-out;
}
.btn-menu:hover{
    transform: scale(1.05) translateX(10px);
    box-shadow: 0px 8px 15px rgb(71, 64, 38);
}
#area-info_user{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    gap: 10px;
    border-bottom: 4px solid black;
}
#span_user_menu{
    font-weight: bold;
}
#btn_notificacoes-push{
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    font-size: 1.15rem;
    cursor: pointer;
}
#btn_notificacoes-push:hover,
#btn_notificacoes-push:focus-visible{
    border-color: #111827;
    background: #ffd448;
}
#btn_notificacoes-push:disabled{
    cursor: wait;
    opacity: 0.65;
}
#btn_notificacoes-push[hidden]{
    display: none;
}

.aviso_notificacoes-push{
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 5000;
    width: min(480px, calc(100vw - 36px));
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid #e2b100;
    border-left: 5px solid #ffcd2a;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.24);
}

.aviso_notificacoes-push:not([hidden]){
    display: flex;
    align-items: center;
    gap: 12px;
}

.aviso_notificacoes-push[hidden]{
    display: none;
}

.aviso_notificacoes-push__icone{
    flex: 0 0 auto;
    font-size: 1.6rem;
}

.aviso_notificacoes-push__conteudo{
    flex: 1 1 auto;
    min-width: 0;
}

.aviso_notificacoes-push__conteudo strong{
    display: block;
    margin-bottom: 4px;
}

.aviso_notificacoes-push__conteudo p{
    margin: 0;
    color: #475569;
    font-size: 0.84rem;
    line-height: 1.4;
}

.aviso_notificacoes-push__acoes{
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 6px;
}

.aviso_notificacoes-push__acoes button{
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 7px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.btn_push-ativar{
    border: 1px solid #d9a900;
    background: #ffcd2a;
    color: #111827;
}

.btn_push-depois{
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
}

.aviso_notificacoes-push__acoes button:disabled{
    cursor: wait;
    opacity: 0.65;
}
#btn_exit{
    padding-block: 5px;
    background-color: transparent;
}
#btn_exit:hover{
    background-color: #ffd448;
    box-shadow: 0px 0px 15px rgb(255, 255, 255);
}

/* DropDown Submenu */
.drop-gestao_vistorias,
.drop-gestao_imoveis,
.drop-gestao_pessoas,
.drop-contratos,
.drop-arquivos_documentos,
.drop-marketing{
    width: 105%;
    height: 0px;
    overflow: hidden;
    margin-left: 5px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: max-height 1s ease-in-out;
}
.drop-gestao_vistorias.active,
.drop-gestao_imoveis.active,
.drop-gestao_pessoas.active,
.drop-contratos.active,
.drop-arquivos_documentos.active,
.drop-marketing.active{
    height: auto;
}

.btn-submenu{
    width: 93%;
    background-color: rgb(51, 51, 51);
    border-block-color: transparent;
    border-right-color: transparent;
    border-left: 4px solid white;
    padding-block: 5px;
    color: white;
    font-weight: bold;
    font-size: 11pt;
    cursor: pointer;
    transition: 0.25s ease-in-out;
}
.btn-submenu:hover{
    transform: translateX(10px);
    box-shadow: 0px 5px 10px #886d16;
    border-left: 4px solid #BD6A00;
}

/* ============ Área de Trabalho ============ */
#area-trabalho{
    width: 85%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}
#guias_navegacao{
    width: 100%;
    min-height: 42px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 5px;
    padding: 6px 10px;
    box-sizing: border-box;
    background-color: #333333;
    border-bottom: 1px solid #d4d4d4;
    overflow-x: auto;
}
.card-guia{
    min-width: 110px;
    max-width: 190px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 8px 0 12px;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1f1f1f;
    font-size: 10pt;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.card-guia.active{
    border-color: #BD6A00;
    background-color: #FFCD2A;
}
.titulo-guia{
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-fechar-guia{
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background-color: transparent;
    color: #333333;
    font-size: 13pt;
    line-height: 18px;
    cursor: pointer;
}
.btn-fechar-guia:hover{
    background-color: rgba(0, 0, 0, 0.14);
}
#conteudo_area_trabalho{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}
.painel-guia{
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
}
.painel-guia.active{
    display: flex;
    height: 90vh;
}
