/* Estilos para a seção FAQ */

.faq-item {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active .faq-header {
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.faq-content {
    transition: max-height 0.5s ease;
    overflow: hidden;
}

/* Animação do ícone */
.faq-header .fas {
    transition: transform 0.4s ease;
}

.faq-header .fa-rotate-180 {
    transform: rotate(180deg);
}

/* Efeito de destaque para o item ativo */
.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.15);
    border-color: var(--ainexaCyan);
}

/* Animação de entrada para o conteúdo */
.faq-item.active .faq-content {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Melhoria na legibilidade do texto */
.faq-content p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-header h3 {
        font-size: 1rem;
    }
}
