The inconsistency in brightness is due to the difference in how Eevee and Cycles(used to bake the texture) handle the normalize node. That is why your baked texture looks brighter.
Instead, you can use these one of these two options that are consistent across the two render engines.
Combine the two normal maps with a Mix node set to Overlay. This works because it treats each channel with this equaiton:
(Target > 0.5) * (1 - (1-2*(Target-0.5)) * (1-Blend)) +
(Target <= 0.5) * ((2*Target) * Blend)
or
Use a mix node set to mix with another black and white image plugged into the fac, masking areas you want mixed in.
Aside, The method your using doesn't seam quite right. Testing your normal file with a single point light in the center, it appears to be skewing. Maybe because it isn't combining the blue channel.
It resulted in this bake which is too bright like you described:
Here's the example with the method suggested in this response. Notice the point light distribution has no apparent skewing:
Here's a comparison of the baked normal maps from the two methods(yours on the right).
I hope this helps!