I am new to LaTeX and I've been reading that apparently the biblatex package would suit me better than natbib. I read this other post but I can't make it work with my document.
This is a sample of my preamble:
\documentclass[12pt,letterpaper]{report}
\usepackage{sectsty}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage[spanish]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[left=3cm,right=2cm, top=3cm, bottom=3cm]{geometry}
\usepackage[autostyle, spanish=mexican]{csquotes}
\usepackage[authoryear]{natbib} %Bibliografía
\bibliographystyle{humannat} %
\usepackage{hyperref}
\hypersetup{colorlinks, citecolor=blue}
\makeatletter
\AtBeginDocument{
\renewcommand\NAT@open{\color{blue}(}}
\makeatother
\begin{document}
This is the text of the document which includes \cite{examples} and \citep{examples} from a
.bib document saved in the same folder of the .tex document.
\bibliography{Bibliografia}
\end{document}
I simple do not know what to do and I am not sure if I can't use my .bib file named Bibliografia or if i need to use something for biber. I tried adding the options natbib=true, the commands \printbibliography while erasing the commands for natbib \bibliographystyle \bibliography{}.
I just don't know what to do than sticking with my natbib options. Should I change the inputencand babel package to suit spanish with biblatexor something? is there a problem with that usc package or hyperref can't be used with biblatex?
EDIT: moewe answer has worked but now I have to fix hyperref and colour the citation part that I had fixed with the \makeatletter to \makeatother commands. Any ideas?