/**
 * Estilos para o FAQ
 */

.emma-faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
}
@media screen and (max-width:1024px) {
    .emma-faq-container {
        gap: 0;
    }
}

.emma-faq-column {
    flex: 1;
    min-width: 300px;
}

.emma-faq-item {
    margin-bottom: 48px;
}

@media screen and (max-width:1024px) {
    .emma-faq-item {
        margin-bottom: 16px;
    }
}

.emma-faq-question {
    font-family: var(--e-global-typography-546f034-font-family), Sans-serif;
    font-size: var(--e-global-typography-546f034-font-size);
    font-weight: bold;
    line-height: var(--e-global-typography-546f034-line-height);
    color: var(--e-global-color-c51ab91);
    margin-bottom: 8px;
}

.emma-faq-answer {
    font-family: var(--e-global-typography-c8d633a-font-family), Sans-serif;
    font-size: var(--e-global-typography-c8d633a-font-size);
    font-weight: var(--e-global-typography-c8d633a-font-weight);
    line-height: var(--e-global-typography-c8d633a-line-height);
    color: var(--e-global-color-c51ab91);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .emma-faq-container {
        flex-direction: column;
    }
    
    .emma-faq-column {
        width: 100%;
    }
} 