<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos especÃ­ficos para pÃ¡gina FAQ */

/* ConteÃºdo principal */
.faq-content {
    padding: 80px 0;
    background-color: var(--white);
}

/* SeÃ§Ã£o IntrodutÃ³ria */
.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.intro-section .highlight {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Grid de FAQ */
.faq-grid {
    display: grid;
    gap: 40px;
    margin: 60px 0;
}

.faq-category {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-category h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category h3 i {
    color: var(--accent-color);
}

/* Itens FAQ */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* SeÃ§Ã£o CTA */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background-color: var(--primary-color);
    border-radius: 10px;
    margin-top: 60px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-secondary {
    color: var(--white);
}



/* Responsivo */
@media (max-width: 768px) {
    .faq-question h4 {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .intro-section .highlight {
        font-size: 1.2rem;
    }

    .faq-category {
        padding: 20px;
    }

    .faq-category h3 {
        font-size: 1.5rem;
    }
} </pre></body></html>