I saw the specs "ARIA" 1.0 (https://www.w3.org/TR/wai-aria/) and those (vers. 1.1) that are going to be released soon (https://www.w3.org/TR/wai-aria-1.1/).
But I have also seen that the documentation is -imho- sparse and fragmented, so hard to find and to understand.
For a normal person (i.e. for a developer who has no real and immediate need to write code accessible for people with disabilities), is it still early to study the attributes ARIA for the first time?
For example caniuse.com only deals "normal" web browsers (http://caniuse.com/#search=role): how do I know if and how the attributes ARIA are supported by screen readers and other assistive devices?
Whether or not you think you have a need to write code for people with disabilities, statistics, good UX practices, the law, and universal design all suggest that, in fact you do need to write code to support people of assorted abilities. I encourage you to look at the Inclusive Design Manual (21MB PDF) that Microsoft created as it shows how we all encounter temporary and situational disabilities.
Also note that screen readers run on top of "normal" web browsers (to borrow your term), and right now screen readers are the only technology today that rely on ARIA.
Now, for your ARIA question...
For straightforward web pages that are primarily static content (your typical WordPress site, for example), you probably will not need ARIA. Using HTML properly and including structure is usually more than enough for users.
If you are building web-based applications or novel interactions (using a framework like React or Angular), then you will need to start using ARIA (though some bits are built into some frameworks and libraries already).
Some places you can start:
role="presentation"
oraria-hidden="true"
on a visible focusable element.That should be enough to get your primed, or at least familiar.
I also recommend you install a screen reader (NVDA is free, Narrator is built into Windows, VoiceOver is part of iOS and macOS) and take them for a spin. There are places online that can help you get going.