/* --- COMPLEMENTO BOLSAS E APOIOS --- */

/* Estilização da Tabela */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.bolsas-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.bolsas-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.bolsas-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--dropdown-bg);
    color: var(--text-dark);
}

.bolsas-table tr:last-child td {
    border-bottom: none;
}

.bolsas-table tr:nth-child(even) {
    background-color: #fcfdfe;
}

/* Estrutura do FAQ (Accordion) */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.small-header {
    margin-bottom: 30px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    overflow: hidden;
    border-left: 3px solid var(--dropdown-bg);
    transition: var(--transition);
}

/* Botão de Ativação do FAQ */
.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-trigger i {
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item:hover {
    border-left-color: var(--primary-blue);
}

/* Painel Oculto com a Resposta */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: #fafbfc;
}

.faq-panel p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Classes de Estado Ativo controladas via JS */
.faq-item.active {
    border-left-color: var(--accent-red);
}

.faq-item.active .faq-trigger {
    color: var(--accent-red);
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
    color: var(--accent-red);
}