@charset "UTF-8";
/* CSS Document */

/* Generales */
html{
	box-sizing: border-box;
	font-size: 62.5%;/*- Reset para REMS - 62.5% = 10px de 16px -*/
}
*, *:before, *:after {
    box-sizing: inherit;
}

body{
	font-family: 'Indie Flower', cursive;
	font-size: 1.6rem;
	line-height: 2rem;
}




/* Globales */
img{
	max-width: 100%
}


h1{
	font-size: 3.8rem;
}

h2{
	font-size: 3.4rem;
}

h3{
	font-size: 3rem;
}
h4{
	font-size: 2.6rem;
}

.contenedor{
	width: 95%;
	max-width: 120rem; /** = 1200px; **/
	margin: 0 auto;
}

.logo{
	max-width: 45rem;
	padding-left: 2rem;
}



/* Utilidades */
.seccion{
	margin-top: 2rem;
    margin-bottom: 2rem;
}

.fw-300{
	font-weight: 300;
}
.centrar-texto{
	text-align: center;
}

.barra{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	background-color: white;
	margin: 0;
}



/* Header */
.site-header {
    background-color: #FFFFFF;
    padding: 0 0 3rem 0;
	margin: 0;
}

.site-header.inicio{
	background-image: url("/img/rich 1.jpg");
	background-position: center center;
	background-size: cover;
	height: 100vh;
	min-height: 60rem;
}

.contenido-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.contenido-header h1{
	color: #464646;
	padding-bottom: 2rem;
	max-width: 100rem;
	line-height: 2;
}

.moto{
	font-family: 'Roboto', sans-serif;
	color: #4E4E4E; 
	font-size: 1.6rem;
	line-height: 2rem;
	padding: 0 5rem 3rem 0;
	align-self: flex-end;
}
 



/* Navegacion */
.navegacion a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 2.2rem;
	margin-right: 2rem;
}

.navegacion a:hover{
	color: #FECC66;
}

.navegacion a:last-of-type {
	margin-right: 5rem;
}

.navegacion a:first-of-type {
	margin-left: 5rem;
}

.color-navegacion{
	background-color: #4C66EA;
	height: 5rem;
	padding: 0;
	margin: 0;
}



/* Botones */

.boton{
	color: #FFFFFF;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.8rem;
	padding: 1rem 3rem;
	margin-top: 3rem;
	display: inline-block;
	text-align: center;
	border: none;
}

.boton:hover{
	cursor: pointer;
}

.boton-amarillo{
	background-color: #FD8008;
}

.boton-verde{
	background-color: #00CC66;
}



/* Footer */
.site-footer{
	background-color: #333333;
	margin: 0;
}

.contenedor-footer{
	padding: 3rem;
	display: flex;
	justify-content: space-between;
}

.copyright{
	margin: 0;
	font-family: 'Roboto', sans-serif;
	color: #FFFFFF;
}


