Judging by what you posted, you really don't need all things NR; you can replace your entire script with this:
while IFS= read -r lista ; do
awk '{print $1}' "$lista"
done < Aenumerar
(This will print the first field of each line in each of file1, file2, file3. I think you're trying to do?)