Product is not a direct child of Itens, and that's why you're getting an exception. Try changing you loop source:
foreach (XElement item in xmlDocument.Descendants("Itens").Elements("Item"))
Product is not a direct child of Itens, and that's why you're getting an exception. Try changing you loop source:
foreach (XElement item in xmlDocument.Descendants("Itens").Elements("Item"))