/* ==========================================================================
   11. SEÇÃO 9: FAQ (ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: #ffffff;
}

.faq-main-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0d1b2a;
}

.faq-container {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
}

.faq-item {
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.faq-item:last-child {
    border-bottom: none !important;
}

.faq-item .accordion-button {
    font-weight: 700;
    color: #1e293b;
    padding: 25px 20px;
    font-size: 1.1rem;
    background-color: transparent !important;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    color: #e67e22;
    /* Destaque quando aberto */
}

.faq-item .accordion-button::after {
    background-size: 1.2rem;
    transition: transform 0.2s;
}

.faq-item .accordion-body {
    color: #64748b;
    line-height: 1.6;
    padding: 0 20px 25px 20px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 1.8rem;
    }
}