.faq-section {
    background: #FBFBFB;
    color: #212121; /* Mesma cor de texto para desktop e mobile */
    padding: 60px 160px;
    text-align: center;
}

.faq-header h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #212121;
    margin-bottom: 10px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #212121;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: flex-start;
}

.faq-item {
    background-color: #F0F0F0; /* Fundo dos itens */
    border-radius: 8px;
    width: calc(50% - 10px);
    margin-bottom: 10px;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.faq-question {
    width: 100%;
    background-color: #F0F0F0; /* Cor de fundo do botão */
    color: #212121; /* Cor do texto do botão */
    padding: 15px;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question.active {
    background-color: #e0e0e0; /* Cor diferente para indicar seleção */
}

.faq-question:hover {
    background-color: #e6e6e6; /* Hover para botões */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 1rem;
    padding: 10px;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .faq-item {
        width: 100%; /* Itens ocupam 100% da largura em telas menores */
    }

    .faq-section {
        padding: 60px 20px; /* Apenas ajusta o padding, sem alterar cores */
    }
}