.faq-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E2E8F0;
}

.faq-question {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-blue);
}

.arrow-icon {
    font-size: 1.5rem;
    font-style: normal;
    transition: transform 0.3s ease;
    color: var(--brand-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 30px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Quando o item estiver ativo */
.faq-item.active .faq-answer {
    max-height: 500px; /* Um valor alto o suficiente */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .arrow-icon {
    transform: rotate(45deg); /* O "+" vira um "x" */
}