
.container {

}
.faq-container {

}


.faq-categories {
    overflow-y: auto;
    max-height: 500px;
}

.category-item {

}

.category-item:hover {

}

.category-item.active {

}


.faq-content {

}

.question {

}

.question p {

}

strong {

}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
    }

    .faq-categories,
    .faq-content {
        width: 100%;
        max-width: none;
    }

    .faq-content {
        margin-top: 20px;
    }
}

.answer {
    overflow: hidden;
}

.answer img {
    margin-bottom: 1.5rem;
    width: 100%;
    height: auto;
}

.answer figure {
    margin: 0 auto;
}