@import url('https://fonts.googleapis.com/css?family=Crete+Round');
@import url('https://fonts.googleapis.com/css?family=Spectral+SC');
* {
	margin: 0;
	padding-top: 100px;
	padding: 0;
	font-family: 'Crete Round';
	color: #78777C;
}

/* --- INICIO CABECERA --- */
header {
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.43);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.43);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.43);
	background: #EDECE8;
	position: fixed;
	width: 100%;
	z-index: 1;
	top: 0;
}
.menu {
	width: 95%;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1300px;
	align-items: center;
}
.menu .logo {
	display: inline-block;
	margin-right: 1em;
}
.menu .logo img {
	vertical-align: top;
	height: 75px;
}
.menu .btn-menu {
	display: none;
	color: #333;
	text-decoration: none;
	font-size: 1em;
}
.menu .enlaces {
	display: inline-block;
	text-align: center;
}
.menu .enlaces a {
	color: #333;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	padding: 1.4em;
	font-size: 17px;
}
.menu .enlaces i {
    margin-right: 5px;
}
.menu .enlaces a:hover {
	background: #EBEBEB;
}
/* --- FIN CABECERA --- */

.titulo {
	text-align: center;
	font-size: 400%;
	padding-top: 95px;
	font-family: 'Spectral SC', serif;
}
.texto { text-align: justify; }
.texto h2 { font-family: 'Spectral SC', serif;}

/* --------- INICIO FOOTER --------- */
footer {
	margin-top: 50px;
	background-color: #000;
	padding: 50px;
	padding-top: 65px;
	text-align: center;
	font-size: 17px;
}
footer .lista li {
	display: inline-block;
	padding: 20px;
}
footer .lista a {
	color: #78777C;
}


@media screen and (max-width: 1000px) {
	.img-juridico {
		margin-top: 10px;
	}
}

@media screen and (max-width: 760px) {
	header .menu { flex-direction: column; }
	header .menu .logo {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		padding: 0.5em;
	}
	header .menu .logo img { height: 50px; }
	header .menu .logo .btn-menu {
		display: inline-block;
		font-size: 30px;
	}
	header .menu .enlaces {
		width: 100%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.titulo	 { font-size: 45px; }
	.texto { 
		text-align: unset; 
		margin: 20px;
		font-size: 15px;
	}
}