.gestor-elite-menu {
    position: sticky;
    z-index: 80;
    top: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: var(--gestor-elite-sidebar);
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gestor-elite-cor-secundaria) 0%, #0d1423 100%);
    color: #fff;
    box-shadow: 10px 0 35px rgba(12,19,34,.08);
}

.gestor-elite-menu::before {
    position: absolute;
    top: -120px;
    left: -90px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: var(--gestor-elite-cor-principal);
    content: "";
    filter: blur(100px);
    opacity: .16;
    pointer-events: none;
}

.gestor-elite-menu__cabecalho {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,.075);
}

.gestor-elite-marca { display: flex; min-width: 0; align-items: center; gap: 12px; color: #fff; }
.gestor-elite-marca__simbolo {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.09);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.gestor-elite-marca__simbolo img { display: block; width: 100%; height: 100%; padding: 7px; object-fit: contain; }
.gestor-elite-marca__texto { min-width: 0; }
.gestor-elite-marca__texto strong,
.gestor-elite-marca__texto small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gestor-elite-marca__texto strong { max-width: 158px; font-size: 14px; letter-spacing: -.01em; }
.gestor-elite-marca__texto small { margin-top: 2px; color: #828da3; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.gestor-elite-menu__fechar { display: none; border: 0; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }

.gestor-elite-menu__navegacao {
    position: relative;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 22px 14px 28px;
    scrollbar-color: rgba(255,255,255,.16) transparent;
    scrollbar-width: thin;
}

.gestor-elite-menu__titulo {
    display: block;
    padding: 0 12px 10px;
    color: #68748b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gestor-elite-menu__link {
    position: relative;
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 12px;
    margin: 3px 0;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #aeb8cc;
    font-size: 13px;
    font-weight: 650;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.gestor-elite-menu__link:hover { background: rgba(255,255,255,.055); color: #fff; transform: translateX(2px); }
.gestor-elite-menu__link.is-active {
    border-color: rgba(255,255,255,.09);
    background: linear-gradient(135deg, var(--gestor-elite-cor-principal), color-mix(in srgb, var(--gestor-elite-cor-principal) 72%, #2b237e));
    color: #fff;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--gestor-elite-cor-principal) 22%, transparent), inset 0 1px 0 rgba(255,255,255,.12);
}

.gestor-elite-menu__icone { display: inline-flex; width: 19px; height: 19px; flex: 0 0 19px; align-items: center; justify-content: center; }
.gestor-elite-menu__icone svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }

.gestor-elite-menu__rodape {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 14px 16px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
}
.gestor-elite-empresa-resumo { display: flex; min-width: 0; flex: 1; align-items: center; gap: 10px; }
.gestor-elite-empresa-resumo__avatar { display: inline-flex; width: 35px; height: 35px; flex: 0 0 35px; align-items: center; justify-content: center; border-radius: 10px; background: rgba(255,255,255,.09); color: #fff; font-size: 10px; font-weight: 900; }
.gestor-elite-empresa-resumo > span:last-child { min-width: 0; }
.gestor-elite-empresa-resumo strong,
.gestor-elite-empresa-resumo small { display: block; overflow: hidden; max-width: 145px; text-overflow: ellipsis; white-space: nowrap; }
.gestor-elite-empresa-resumo strong { color: #e7eaf1; font-size: 11px; }
.gestor-elite-empresa-resumo small { margin-top: 2px; color: #717d94; font-size: 9px; }
.gestor-elite-menu__rodape > a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 9px; color: #8590a5; transition: .2s ease; }
.gestor-elite-menu__rodape > a:hover { background: rgba(255,255,255,.08); color: #fff; }
.gestor-elite-menu__rodape svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

@media (max-width: 1050px) {
    .gestor-elite-menu { position: fixed; left: 0; transform: translateX(-102%); transition: transform .28s ease; }
    .gestor-elite-app.is-menu-open .gestor-elite-menu { transform: translateX(0); }
    .gestor-elite-menu__fechar { display: block; }
}

@media (max-width: 380px) {
    .gestor-elite-menu { width: min(286px, 88vw); }
}
