/* =================================================================
   FAQ SECTION - APE TECHNOLOGY (DARK NEUTRAL THEME)
================================================================= */
.faq-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.25);
    transition: all 0.3s ease;
    overflow: hidden; /* Essencial para a animação */
}

.faq-item:hover {
    border-color: var(--accent-green);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-lightest);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out; /* Animação suave */
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Quando o item está ativo (aberto) */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Altura suficiente para qualquer resposta */
}