/* General */

html {
	--color-de-fondo: white;
	--color-principal: #307FE2; /* azul corporativo: PANTONE 2727C */ /* Anteriormente: #0044FE */
	--color-secundario: #A8A4A4; /* gris grafito */
	--color-tercero: white;
	--color-cuarto: #FFAD00; /* amarillo dorado */
}

body {
	background-color: var(--color-de-fondo);
	color: var(--color-principal);
	font: normal 15px "Helvetica Neue";
}

p {
	line-height: 20px;
	margin-bottom: 20px;
}

h1 {
	font-family: 'Crete Round', serif;
	font-weight: bold;
	color: var(--color-principal);
	font-size: 45px;
	margin-bottom: 20px;
}

h2 {
	font-weight: 300;
	color: var(--color-principal);
	font-size: 55px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

h3 {
	font-size: 30px;
	color: var(--color-principal);
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

h4 {
	font-size: 24px;
	color: var(--color-principal);
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

h5 {
	font-size: 15px;
	color: var(--color-principal);
	font-weight: bold;
	text-transform: uppercase;
}

a {
	text-decoration: none;
	color: var(--color-principal);
}

a:hover {
	color: var(--color-secundario);
}

strong {
	font-weight: bold;
}

small {
	font-size: 13px;
	color: var(--color-principal);
	font-style: italic;
}

.clear {
	clear: both;
	align: center;
}

.wrapper {
	margin: 0 auto;
	padding: 0 10px;
	width: 940px;
}

.espacio120px {
	padding: 120px 0 0 0;	
}

/* Section 1: Header */

header {
	background: var(--color-de-fondo);
    position:fixed; 
    top:0px; 
    z-index:100000; 
    width:100%;
}

header h1 {
	float: left;
	margin-top: 32px;
}

header h1 .color {
	color: var(--color-principal);
}

header nav {
	float: right;
	position: relative;
}

header nav ul li {
	float: left;
	display: inline-block;
	margin-top: 50px;
}

header nav ul li a {
	color: var(--color-principal);
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	margin-right: 20px;
}

header img {
	height: 75px;
	padding: 10px 0 0 0;
}


/* Section 3: Features */

#features ul {
	margin: 80px 0;
}

#features ul li {
	width: 300px;
	padding-top: 140px;
	float: left;
	margin-right: 10px;
	text-align: center;
}

#features ul li.feature-1 {
	background: url('../images/web/features-icon-1.png') no-repeat top center;
	color: var(--color-principal);
}
#features ul li.feature-2 {
	background: url('../images/web/features-icon-2.png') no-repeat top center;
	color: var(--color-principal);
}
#features ul li.feature-3 {
	background: url('../images/web/features-icon-3.png') no-repeat top center;
	color: var(--color-principal);
}



/* Section 6: Call to Action */

#cta {
	padding: 0 0 100px 0;
	text-align: center;
}

#cta h3 {
	display: block;
	margin: 0 auto 20px auto;
	width: 100%; //500px;
	border-bottom: 1px solid var(--color-principal);
	padding: 0 0 20px 0;
}

.button-2 {
	display: block;
	margin: 0 auto;
	border: 2px solid var(--color-principal);
	color: var(--color-principal);
	border-radius: 3px;
	width: 180px;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
}

.button-2:hover {
	background-color: var(--color-secundario);
	color: var(--color-de-fondo);
}


/* Section 7: Footer */

footer {
	text-align: center;
	vertical-align: middle;
	padding: 20px 0;
	color: var(--color-principal);
	background-color: var(--color-de-fondo);
}

.contacto_footer {
	display: block;
	font-size: 20px;
	vertical-align: top;
	margin: 10px 0;
}

#footer-info {
	float: center;
}

#footer-links {
	color: var(--color-de-fondo);
	width: 520px;
	float: right;
}

#footer-links ul {
	width: 150px;
	float: left;
	margin-left: 20px;
}

#footer-links ul li {
	margin: 10px 0;
}