@import url('https://fonts.googleapis.com/css?family=Crete+Round');
@import url('https://fonts.googleapis.com/css?family=Spectral+SC');
* {
	margin: 0;
	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 --- */

.img-profesionales {
	background: url(../img/scroll/mazo.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align: center;
	height: 85vh;
	width: 100%;
}

/* --- BLOQUE JURÍDICO --- */
.titulo {
	text-align: center;
	font-size: 400%;
	padding-top: 95px;
	font-family: 'Spectral SC', serif;
}

.nombre {
	text-align: center; 
	color: #000;
	font-size: 20px;
}

.img-juridico { margin-top: 28px; }
.texto { text-align: justify; }
/* --- FIN BLOQUE JURÍDICO --- */

/* --- BLOQUE ECONÓMICO --- */
.img-economico { margin-top: 24px; }
/* --- FIN BLOQUE ECONÓMICO --- */

/* --------- 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;
	}
	.img-juridico {
		width: 370px;
	}
}