.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 15px;
    background: #FAFAFA;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-left: solid 3px #cb8f00;
    border-radius: 10px;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    /* Ajuste conforme o conteúdo */
    padding: 15px;
}

.faq-question::before {
    content: '+';
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

.faq-question.active::before {
    content: '−';
    color: #cb8f00;
    transition: 0.4s ease-in-out;
}

section.faq.container {
    margin: 100px auto;
}

section.faq h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 2rem;
}

section.faq h2 span {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
    color: #cb8f00;
}

.faq h3 {
    font-size: 24px;
    margin-bottom: 2rem;
    color: #393536;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.list {
    padding-left: 1.5rem;
}

.list li {
    list-style: disc;
    margin-bottom: 5px;
}

@media screen and (max-width: 992px) {
    .faq-content {
        grid-template-columns: 1fr;
    }
}