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

.answer.show {
    max-height: 500px; /* Ajuste conforme necessário */
}


/* Para navegadores baseados no WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track {
    background: #111827; 
}

/* Cor da barra em si */
::-webkit-scrollbar-thumb {
    background: #8D8D8C; /* Cor primária do Qualiex */
    border-radius: 5px; /* Borda arredondada */
}

html {
    scroll-behavior: smooth;
}

