/* Estilo Minimalista e Profissional para FAQ */

.faq {
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 0;
    border-radius: 0;
    padding: 0;
}

.faq-item:first-child {
    border-top: 1px solid #E2E8F0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1E293B;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

/* Forçar a cor padrão no hover para não ficar azul */
.faq-question:hover {
    color: #1E293B !important;
}

/* Ícone circular */
.faq-question .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #CBD5E1;
    border-radius: 50%;
    color: #94A3B8;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    border-color: #0066FF;
    color: #0066FF;
    background-color: rgba(0, 102, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    padding-top: 0;
    color: #64748B;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}