body {
  font-family: 'Inter', sans-serif;
  background-color: #111;
}
  
.faq-section {
    background-color: #111;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.2em;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #ccc;
}

.faq-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    font-size: 1em;
    color: #ccc;
    padding-top: 10px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Animação de entrada suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 600px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-section h2 {
        font-size: 2em;
    }

    .faq-question {
        font-size: 1.1em;
    }
}
