My objective was to write latex code for the following table created in Word.

However, I am unable to format the first column. I would like to define a certain measurement for the column width and for this command to generate an automatic line wrap if the width is too small and in addition, I would like the text to be centered between the two cells that were merged.
\begin{table}[H]
\centering
\begin{tabular}{p{3cm}cccccc}
\hline
Variável & Período & Média & Desvio Padrão & \begin{tabular}[c]{@{}c@{}}Coeficiente \\ de variação\end{tabular} & \begin{tabular}[c]{@{}c@{}}Valor\\ Mínimo\end{tabular} & \begin{tabular}[c]{@{}c@{}}Valor\\ Máximo\end{tabular} \\ \hline
\multirow{2}{*}{Leitos de UTI} & 2016 & 1.867 & 2.505 & 134,17\% & 73 & 11.039 \\
& 2019 & 2.016 & 2.738 & 135,81\% & 82 & 12.515 \\ \hline
\multirow{2}{=}{Doadores Efetivos} & 2016 & 141 & 193 & 136,88\% & 5 & 842 \\
& 2019 & 178 & 249 & 139,89\% & 4 & 1.080 \\ \hline
\multirow{2}{*}{CIHDOTT’s} & 2016 & 31 & 56 & 180,65\% & 1 & 255 \\
& 2019 & 25 & 29 & 116,00\% & 1 & 106 \\ \hline
\multirow{2}{*}{Equipes de Transplantes Renais} & 2016 & 6 & 8 & 133,33\% & 1 & 35 \\
& 2019 & 7 & 8 & 114,29\% & 1 & 31 \\ \hline
\multirow{2}{*}{Respiradores de emergência} & 2016 & 2.594 & 3.697 & 142,52\% & 121 & 16.692 \\
& 2019 & 2.981 & 4.115 & 138,04\% & 152 & 18.807 \\ \hline
\multirow{2}{*}{Serviços de Neurocirurgia} & 2016 & 20 & 26 & 130,00\% & 3 & 118 \\
& 2019 & 22 & 28 & 127,27\% & 4 & 127 \\ \hline
\multirow{2}{*}{Valores totais pagos com Serviços Hospitalares} & 2016 & 6.871,29 & 11.235,63 & 163,52\% & 41,79 & 49.342,72 \\
& 2019 & 8.071,96 & 12.114,82 & 150,08\% & 85,20 & 54.430,50 \\ \hline
\multirow{2}{*}{Valores totais pagos com Serviços Profissionais} & 2016 & 2.606,59 & 4.332,99 & 166,23\% & 16,72 & 19.179,92 \\
& 2019 & 3.074,86 & 4.657,82 & 151,48\% & 35,65 & 20.285,42 \\ \hline
\multirow{2}{*}{Recusa Familiar} & 2016 & 120 & 140 & 116,67\% & 12 & 656 \\
& 2019 & 123 & 143 & 116,26\% & 14 & 678 \\ \hline
\multirow{2}{*}{Autorização de Internações Hospitalares} & 2016 & 229 & 363 & 158,51\% & 2 & 1.605 \\
& 2019 & 261 & 377 & 144,44\% & 4 & 1.639 \\ \hline
\end{tabular}\end{table}
As mentioned in the comments, I tried to solve the problem using the command \multirow{2}{=}{...}
but this generated some overlapping of the lines as you can see in the Figure below.




\multirow{2}{=}{Doadores Efetivos}, that is, you use=instead of*, which seems to work fine. Why not using it throughout the table? Or maybe this is not the output you want? – Jasper Habicht Feb 06 '24 at 17:31multirowmanual (page 14 or so) suggests for such cases to insert one (or multiple) blank row(s). I don't know if this is a solution for you. – Jasper Habicht Feb 06 '24 at 17:41p{3cm}top{4cm}. But it is difficult to help you without a minimal working example (MWE) that shows the document class and packages you use, so that others can know about how much space you actually have for the table. Maybe also have a look at tha various suggestions in this thread. – Jasper Habicht Feb 06 '24 at 17:56