














/* ============================= */
/* NAV PRINCIPAL                 */
/* ============================= */

.nav-categorias {
    background-color: #fff;
    position: sticky;
    top: 100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.topo-nav {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}

.filtros-topo {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 1px;
    font-size: 14px;
}

.filtro-item {
    cursor: pointer;
    user-select: none;

    font-size: 14px;
    font-weight: 500;
    font-family: inherit;

    color: #333;
    text-decoration: none;

    padding: 10px 3px;
    border-radius: 40px;
    line-height: 1;
}

/* Hover suave */
.filtro-item:hover {
    text-decoration: underline;
}

.filtro-item.ativo {
    font-weight: 700;
    text-decoration: underline;
}

.botao-filtro,
.btn-limpar-filtros {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;
    font-family: inherit;

    padding: 6px 10px;
    line-height: 1;
    margin-left: 10px;

    background: #75a5a9;
    color: #333;

    border-radius: 4px;
    border: none;
    outline: none;
    box-shadow: none;

    cursor: pointer;
    text-decoration: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn-limpar-filtros:hover,
.botao-filtro:hover {
    background: #dcdcdc;
}

.filtro-inativos {
    color: #333;
    opacity: 1; /* igual aos outros */
}

.filtro-categorias {
    font-weight: 500;
}

.filtro-categorias.ativo {
    font-weight: 700;
    text-decoration: underline;
}

.menu-principal {
    display: none;
    position: relative;
    background: #fff;
    border: none;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 10px;
}

.menu-principal.active {
    display: block;
}

.menu-colunas {
    display: flex;
    align-items: stretch;
    width: max-content;
}

.categorias-gerais {
    list-style: none;
    margin: 0;
    padding: 6px 0;

    min-width: 260px;
    width: max-content;

    border-right: 1px solid #eee;
}

.categoria-geral-item {
    position: relative;
}

.linha-categoria {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categoria-geral-link {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.categoria-geral-link:hover,
.subcategorias li a:hover {
    background: #f5f5f5;
    color: #000;
    text-decoration: none;
}

.seta-toggle {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #666;
    transition: transform 0.2s ease;
}

.categoria-geral-item:hover .seta-toggle {
    transform: translateX(4px);
}

.subcategorias-container {
    display: none;

    min-width: 260px;
    width: max-content;

    padding: 10px;
    background: #fff;
    border-left: 1px solid #eee;
}

.menu-colunas.com-sub .subcategorias-container {
    display: block;
}

.subcategorias {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}

.subcategorias.active {
    display: block;
}

.subcategorias li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.subcategorias li a:hover {
    background: #f0f0f0;
    text-decoration: underline;
}

.tooltip {
    position: relative;
    cursor: help;
}

#limparCategoriasTopo {
    display: none; /* Padrão escondido */
}

.mostrar-limpar {
    display: inline-flex !important; 
    visibility: visible !important;
    opacity: 1 !important;
}
