Hi I am trying to force text to the top of a minipage, but nothing seems to be working. I am still new to Latex do I dont know much. I am using overleaf to edit the file I put two minipages side by side, the right side is what I expect, but the left side is keeping everything in the center of the minipage. this is what the text looks like (I want B862a to go to the top of the page)
the code that is supposed to generate this part is this:
\documentclass{article}
\usepackage{csquotes}
\usepackage{lipsum}
\begin{document}
{
\vspace*{\fill} % Posição vertical
%\hrule % Linha horizontal
\begin{center}
\begin{minipage}[c]{11.5cm}
\begin{center}
\lipsum[3]
\end{center}
\end{minipage}
\end{center}
\vspace{5 mm}
\fbox{
\begin{center} % Minipage Centralizado
\begin{minipage}[]{12.5cm} % Largura
\begin{minipage}[t]{.1\textwidth}
B862a
\vspace{\fill}
\end{minipage}
\begin{minipage}[]{.80\textwidth}
\lipsum[2]
\hspace{2mm}
\end{minipage}
\end{minipage}
\end{center}
}
%\hrule
}
\end{document}


