/**
 * FAQ - Base CSS
 * Estilos compartilhados por todas as variantes
 */

.sslp-faq {
    padding: 4rem 0;
    position: relative;
}

.sslp-faq .sslp-section__title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.sslp-faq .sslp-section__subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.sslp-faq__list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.sslp-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sslp-faq-item.is-open .sslp-faq-question__icon svg {
    transform: rotate(180deg);
}

.sslp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s;
}

.sslp-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sslp-faq-question__text {
    flex: 1;
    padding-right: 1rem;
}

.sslp-faq-question__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--sslp-accent, #9CA846);
}

.sslp-faq-question__icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.sslp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sslp-faq-answer__content {
    padding: 0 1.25rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.sslp-faq-answer__content p {
    margin: 0 0 1rem;
}

.sslp-faq-answer__content p:last-child {
    margin-bottom: 0;
}

.sslp-faq-answer__content ul,
.sslp-faq-answer__content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.sslp-faq-answer__content a {
    color: var(--sslp-accent, #9CA846);
    text-decoration: underline;
}
