/* CONTAINER FAQ */
.faq {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

/* ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 18px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.25s ease;
}

/* HOVER SUAVE */
.faq-item:hover {
    transform: translateY(-3px);
}

/* PERGUNTA */
.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ÍCONE + */
.faq-item h3::after {
    content: "+";
    font-size: 20px;
    color: #00c853;
    transition: 0.3s;
}

/* RESPOSTA */
.faq-item p {
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    display: none;
    line-height: 1.5;
}

/* ATIVO */
.faq-item.active p {
    display: block;
}

/* TROCA + PARA - */
.faq-item.active h3::after {
    content: "-";
}

/* ANIMAÇÃO SUAVE */
.faq-item p {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .faq-item {
        padding: 15px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 13px;
    }
}


.section {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}