/* Estilos Globais do Accordion (Frontend) */
.afb-accordion-wrapper {
    width: 100%;
    margin: 20px 0;
    box-sizing: border-box;
}

.afb-item {
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.afb-question {
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.afb-question:hover {
    filter: brightness(0.95);
}

.afb-answer {
    font-size: 15px; /* Tamanho base da resposta, caso o dev queira manter padrão */
    line-height: 1.6;
    box-sizing: border-box;
}

.afb-answer p:last-child {
    margin-bottom: 0;
}
