/* =====================================================
   KANBAN FILTERS - SISGCOE
===================================================== */

/* FILTROS */
.filtros-operacionais{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:16px auto 24px;
}

.filtro-btn{
    background:#1e293b;
    color:#fff;

    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;

    padding:8px 16px;

    font-size:.78rem;
    font-weight:800;

    cursor:pointer;
    transition:.18s ease;
}

.filtro-btn:hover{
    background:#334155;
}

.filtro-btn.ativo{
    background:#2563eb;
}
