.cabecalho-fases-acoes {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.prof-menu-gestao {
    position: relative;
    font-family: Inter, sans-serif;
}

.prof-menu-gestao[hidden] {
    display: none !important;
}

.prof-menu-gestao > summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    color: #eaf4ff;
    background: linear-gradient(135deg, rgba(0, 214, 122, .13), rgba(56, 189, 248, .07));
    border: 1px solid rgba(0, 214, 122, .30);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.prof-menu-gestao > summary::-webkit-details-marker {
    display: none;
}

.prof-menu-gestao > summary:hover,
.prof-menu-gestao[open] > summary {
    color: #03140d;
    background: #00d67a;
    border-color: #46eba5;
}

.prof-menu-gestao .seta-menu {
    font-size: 10px;
    transition: transform .2s ease;
}

.prof-menu-gestao[open] .seta-menu {
    transform: rotate(180deg);
}

.prof-menu-gestao-painel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 220;
    width: min(340px, calc(100vw - 30px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    background: rgba(13, 19, 27, .99);
    border: 1px solid rgba(141, 164, 187, .24);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.prof-menu-gestao-painel > a {
    position: relative;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: #9fb1c4;
    background: #151f2c;
    border: 1px solid rgba(141, 164, 187, .17);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
}

.prof-menu-gestao-painel > a:hover {
    color: #f5fbff;
    border-color: rgba(0, 214, 122, .40);
}

.prof-menu-gestao-painel > a > i {
    color: #00d67a;
    font-size: 17px;
}

.prof-menu-gestao-painel .badge-admin-pendente {
    position: absolute;
    top: 8px;
    right: 8px;
}

.cabecalho-acoes > .prof-menu-gestao {
    flex: 0 0 auto;
}

@media (max-width: 760px) {
    .cabecalho-fases-acoes {
        margin-left: 8px;
    }

    .prof-menu-gestao > summary span {
        display: none;
    }

    .prof-menu-gestao-painel {
        position: fixed;
        top: 76px;
        right: 12px;
        left: 12px;
        width: auto;
    }
}

@media (max-width: 520px) {
    .prof-menu-gestao-painel {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .prof-menu-gestao-painel > a {
        min-height: 58px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}
