The solution I got, the same code I post on the question, but using LISTAGG and DBMS_LOB.SUBSTR, here:
LISTAGG(DBMS_LOB.SUBSTR(m.multiplaResposta, 4000, 1), ' | ') WITHIN GROUP (ORDER BY MULTIPLARESPOSTA) AS multiplaResposta
Thanks everyone!