@import url('https://fonts.googleapis.com/css?family=Oswald:300');
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

/*----------ESTILOS GENERALES----------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
  background: #333;
}
img {
	display: block;
  width: 100%;
	max-width: 100%;
  margin: auto;
}
ul, li {
	list-style: none;
}
a {
	display: block;
	text-decoration: none;
}

.contenedor {
	width: 98%;
  max-width: 1500px;
	margin: auto;
}
.section {
  max-width: 1500px;
  overflow: hidden;
  margin: auto;
	padding: 120px 0;
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}
p {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
}

/*BARRA SUPERIOR*/
.barrasuperior {
  overflow: hidden;
  max-width: 1500px;
	height: 30px;
  margin: auto;
  background: #58585A;
	display: flex;
}
.bs-mail {
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bs-mail span {
	color: #fff;
	margin-right: 7px;
	font-size: 1.4em;
}

/*LOGO SUPERIOR*/
.logo-superior {
	overflow: hidden;
	max-width: 1500px;
	margin: auto;
	background: #fff;
}
.logotipo-header {
	padding: 10px;
	max-width: 200px;
}
.logosuperior-datos {
	display: none;
}

/*HEADER*/
.header {
	overflow: hidden;
  max-width: 1500px;
  margin: auto;
	background: #fff;
}

/*--------------------BANNER--------------------*/
.mockfondo-index {
  overflow: hidden;
  max-width: 1500px;
  margin: auto;
	background-image: url(../img/portada.jpg);
	background-size: cover;
	background-position: 35%;
  background-attachment: fixed;
  height: 360px;
  object-fit: cover;
  position: relative;
	z-index: -100;
}
.mockfondo-index:before {
  content: "";
  position: absolute;
	z-index: -90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.textos-banner {
  position: absolute;
  padding: 0 10px;
  width: 100%;
  margin: auto;
  top: 50%;
	left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.banner-txt {
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: 1.2em;
  margin: 10px 0;
}
.banner-txt2 {
  text-align: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.4em;
}
.banner-txt3 {
  font-weight: 600;
  background: #577899;
  padding: 7px;
  color: #fff;
  font-size: 1em;
	text-align: center;
	width: 200px;
	margin: 20px auto;
	border-radius: 5px;
}

/*BOTON FLOTANTE WASAP*/
.btn-whatsapp {
  display: block;
  width: 70px;
  height: 70px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  line-height: 80px;
	text-align: center;
  z-index: 999;
}

/*BENEFICIOS - SLOGAN*/
.beneficios {
  position: relative;
  overflow: hidden;
  background-image: url(../img/publisher-advisory-hero.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
	background-position: center;
  background-size: cover;
  max-width: 1500px;
  margin: auto;
  padding: 100px 20px;
}
.beneficios:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
	opacity: 0.5;
}
.grupo-beneficios {
  
}
.beneficios-titulo {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.beneficios-subtitulo {
  font-size: 2em;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

/*BROCHURE*/
.brochure {
  background: #F5F8FA;
	max-width: 1500px;
	margin: auto;
	padding: 50px;
}
.pdf-img {
	width: 100px;
	margin: auto;
}
.brochure-titulo {
	text-align: center;
	font-size: 1em;
	color: #666;
	margin-bottom: 20px;
}

/*---------------------FOOTER---------------------*/
.footer {
overflow: hidden;
max-width: 1500px;
margin: auto;
background-image: url(../img/footer-img.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
object-fit: cover;
position: relative;
padding: 120px 0;
}
.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
}

.footer .contenedor {
	position: relative;
	z-index: 100;
}

.footer-columna {
  padding: 0 10px;
}
.logotipo-footer {
	display: none;
}
.face {
	font-size: 1.4em;
}
.footer-subtitulo {
  font-weight: 400;
  padding-bottom: 10px;
	color: #fff;
  border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.footer p {
  font-size: 0.9em;
	padding: 20px;
	color: #fff;
}
.footer [class^="icon-"] {
	padding-right: 10px;
	font-size: 1.6em;
	color: #fff;
}
.copy p {
  font-size: 0.8em;
	width: 100%;
  text-align: center;
  padding: 40px;
}


/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
.grupo-logosuperior {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
.logosuperior-datos {
		display: flex;
		justify-content: center;
	}

.gruposuperior-datos {
		display: flex;
	}
.datos-titulo {
	font-size: 1em;
	font-weight: 800;
	color: #577899;
}
.telefonos {
	font-size: .9em;
	color: #58585A;
}
.logosuperior-datos .icon-call {
  color: #577899;
  margin-right: 10px;
  font-size: 1.3em;
  display: block;
}
	
/*BANNER*/
.mockfondo-index {
  height: 500px;
}
.interior {
  height: 360px;
}
/*GRUPO FOOTER*/
.grupo-footer {
  max-width: 1500px;
  display: flex;
  justify-content: space-around;
}
.footer-columna {
	width: 20%;
}
.logotipo-footer {
	display: block;
	width: 280px;
	margin: 0;
}
}

@media (min-width: 1024px) {

}