I want to protect my folders in $HOME from an accidental deletion. I applied chattr +i on them but i noticed that the last is applied recursively, thus, indeed the folder can't be deleted but also i can't write in it.
It's not recursive, it's just how directories work. A directory is basically a special file with a list of names and inodes. (At least it used to be; you still can cat directories on some BSDs.) When you try to create, rename or delete a file, you're not changing the file itself, you are changing its parent directory. If the directory is marked as immutable, you can't change it – but subdirectories can still be modified.
I also tried to apply a sticky bit with chmod 1775 and change the ownership of the folder with chown root foldername. Normally, with sticky bit enabled, only the owner of the folder can delete it but, strangely, in my case although the folder is owned by root, i can delete it with my normal user.
The sticky bit allows deleting objects if you own either the object itself or its parent directory.
I noticed that the users folders in /home partition, although they are owned by the current user and have rwx permissions for the owner, they can't be deleted/changed. How is this achieved?
See above – when deleting a filesystem object, you must have 'write' permission on the parent directory, not on the object itself. In this case, /home is owned by root, and you only have "read"+"execute" permissions.
In conclusion,
backups.
filesystem object: n. a file, directory, device node, symlink, pipe, Unix socket, or whatever the hell else can be stored on the filesystem.