Adicione a macro a seguir ao seu documento e execute-a uma vez:
Sub Main()
On Error Resume Next
For i = 0 To ActiveDocument.Sections.Count
ActiveDocument.Sections(i).Footers(wdHeaderFooterEvenPages).PageNumbers.RestartNumberingAtSection = False
ActiveDocument.Sections(i).Footers(wdHeaderFooterFirstPage).PageNumbers.RestartNumberingAtSection = False
ActiveDocument.Sections(i).Footers(wdHeaderFooterPrimary).PageNumbers.RestartNumberingAtSection = False
Next i
End Sub
Você pode adicionar essa macro pressionando ALT-F11. Isso abrirá a janela do VBA. Clique com o botão direito em "ThisDocument" e escolha "Insert / Module". Copie e cole o código acima e pressione F5. Isso forçará cada seção a numeração contínua de páginas.