The last column of my table has long text. I already tried many things and packages recommended by different sources from google (even chatGPT

The problem is that even though it seems there's no problem (in my eyes), it bugs when I try to add a new line. I don't know what to do.

Code: Select all
\documentclass{article}
\usepackage{array}
\usepackage{tabularx}
\usepackage{adjustbox}
\begin{document}
\begin{adjustbox}{width=\textwidth}
\begin{tabularx}{\linewidth}{@{}c|c|c|c|X}
\hline
Atributo & Nome & Definição & Obrigatório? & Instruções \\
\hline
\makecell[l]{Tipo de \\documento} & dc.type & \makecell[l]{Tipologia do \\documento \\depositado.} & \makecell[l]{Obrigatório} &
\makecell[l]{Segue padrão de preenchimento:\\
\textbf{article} para Artigo \\de periódico\\
\textbf{conferenceObject} para \\Artigo de evento\\
\textbf{masterThesis}para Dissertação\\
\textbf{doctoralThesis} para Tese\\
\textbf{bachelorThesis} para \\Trabalho de conclusão de curso,\\
\textbf{book} para Livro\\
\textbf{bookPart} para Capítulo de livro,\\
\textbf{report} para Relatório científico\\
\textbf{other} para Outros tipos de \\documentos}
\hline
\end{tabularx}
\end{adjustbox}
\end{document}
Can someone please help me?