Esse método tá dando erro no retorno "Type mismatch: cannot convert from TopicoDto to DetalhesDoTopicoDto", é da classe TopicosController.
@GetMapping("/{id}")
public DetalhesDoTopicoDto detalhar(@PathVariable Long id) {
Topico topico = TopicoRepository.getById(id);
return new TopicoDto(topico);
}