/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f9fafb; /* Um fundo um pouco mais texturizado */
}

.faq-item {
    background-color: var(--white);
    border-radius: 20px; /* Bordas mais arredondadas */
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 400; /* Peso da fonte normal (light) */
    color: var(--light-text); /* Cor igual ao texto da seção Sobre Mim */
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--white);
    color: var(--primary-color);
}

.faq-question::after {
    content: '\f054'; /* chevron-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--primary-color);
    font-size: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    color: var(--light-text);
    font-size: 17px; /* Tamanho de fonte da resposta ajustado */
    line-height: 1.8;
    background-color: #fafcff; /* Fundo da resposta levemente azulado */
}

.faq-answer p {
    padding: 30px;
    margin: 0;
    border-top: 1px solid #e5e7eb;
}