.faq-section {
    padding: 5rem 5%;
    background-color: #0B1120; /* Fundo ligeiramente mais escuro para destacar do resto */
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-purple);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.1);
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    list-style: none; /* Remove a setinha padrão do navegador */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--secondary-green);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--tertiary-blue);
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -0.5rem; /* Puxa o conteúdo um pouco pra cima */
    padding-top: 1rem;
    animation: fadeIn 0.4s ease-in-out;
}

.faq-content p {
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-content {
        animation: none;
    }
}
