/* faq.css — shared FAQ accordion styles for landing pages. Pairs with purpose/js/faq.js and the standard
   .faq-item / .faq-question / .faq-answer markup. Brand: violeta #8754A1 acento, neutro #52617A. */
.faq-item h3 { margin: 0; padding: 0; font-size: inherit; font-weight: inherit; }
.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); }
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #52617A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question[aria-expanded="true"] { color: #8754A1; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.2s ease; color: #8754A1; margin-left: 12px; flex-shrink: 0; }
.faq-answer {
    padding: 0 22px 18px 22px;
    color: #576279;
    line-height: 1.7;
    display: none;
}
.faq-answer.open { display: block; }
.faq-question:focus-visible { outline: 3px solid #FAB03B; outline-offset: -3px; }
