/* Estilo Unificado: Legislação & FAQs */
.legis-accordion-item, .sti-faq-item { 
    border-bottom: 1px solid rgba(128, 128, 128, 0.2); 
    margin-bottom: 10px; 
    border-radius: 5px;
    overflow: hidden;
    background: transparent; 
}

/* Títulos das Abas */
.legis-tab-title, .sti-tab-title { 
    cursor: pointer; 
    padding: 15px 20px; 
    background: rgba(128, 128, 128, 0.08); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: all 0.3s ease;
}

/* Estado Ativo (Cor Azul #29abe2 comum a ambos) */
.legis-active .legis-tab-title, 
.sti-active .sti-tab-title { 
    color: #29abe2 !important; 
    background: rgba(41, 171, 226, 0.12) !important;
}

/* Conteúdo Expandido */
.legis-tab-content, .sti-tab-content { 
    padding: 20px; 
    color: inherit;
    border: 1px solid rgba(128, 128, 128, 0.1);
    border-top: none;
}

/* Botão PDF e Pesquisa Universal */
.btn-pdf {
    display: inline-block;
    padding: 8px 16px;
    background: #29abe2;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.legislacao-search, .sti-faq-search {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 5px;
    background: rgba(128, 128, 128, 0.05);
}