@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*colores
font-family: "Poppins", sans-serif;
font-family: "Open Sans", sans-serif;

AZUL: #152E7C;
CELESTE: #2D86C3;
GRIS: #C5C5C3;
*/

/*----------ESTILOS GENERALES----------*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #eee;
}
img {
  display: block;
  width: 100%;
  margin: auto;
}
ul,
li {
  list-style: none;
}
a {
  display: block;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.contenedor {
  width: 95%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section {
  padding: 80px 0;
}

h1,h2,h3,h4,h5,h6 {
font-family: "Playfair Display", serif;
}

p {
  font-family: "Open Sans", sans-serif;
}

/*TITULOS Y TEXTOS*/
.titulo {
  font-size: 2.2em;
	font-weight: 400;
  text-align: center;
  color: #242424;
  line-height: 1.1em;
	letter-spacing: 0.5px;
	max-width: 1000px;
	margin: 10px auto;
}
.subtitulo {
  font-size: 1.2em;
	font-weight: 400;
  text-align: center;
  color: #242424;
  margin-bottom: 30px;
  line-height: 1.1em;
	letter-spacing: 0.5px;
	max-width: 1000px;
	margin: auto;
}
.txt {
  font-size: 1em;
  max-width: 960px;
  margin: auto;
  text-align: justify;
  color: #242424;
}
.txt span {
	font-weight: 800;
  color: #152E7C;
}

/*BANNER*/
.banner {
  max-width: 100%;
  margin: auto;
	margin-top: -70px;
  overflow: hidden;
  position: relative;
	background: #2B2B2B;
	background-image: url(../img/BANNER-PRINCIPAL.png);
	background-position: center center;
  background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	height: 450px;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
}
.logoprincipal {
	width: 170px;
}
.textos-banner {
  position: absolute;
  top: 55%;
	left: 50%;
	transform: translateX(-50%) translateY(-55%);
	width: 99%;
}
.banner-titulo {
  font-size: 1.8em;
	font-weight: 400;
  color: #eee;
  text-align: center;
}
.banner-titulo span {
  color: #B0C747;
}
.banner-subtitulo {
  font-size: 2.2em;
	font-weight: 400;
  color: #eee;
  text-align: center;
	margin-bottom: 20px;
}
/*BOTON*/
.wa-btnverdegeneral {
	width: fit-content;
  font-family: "Open Sans", sans-serif;
  font-size: 0.91em;
  color: #eee;
  text-align: center;
	border: 2px solid #eee;
  background: #152E7C;
	width: 200px;
	margin: auto;
	padding: 10px;
  transition: all 0.4s;
}
.wa-btnverdegeneral:hover {
  background: #000;
	color: #fff;
}


/*SERVICIOS INDEX*/
#servicios {
	overflow: hidden;
	max-width: 100%;
	margin: -1px auto;
	background: #eee;
}
.grupo-servicios {
	max-width: 1000px;
	margin: auto;
	display: flex;
  justify-content: center;
	flex-wrap: wrap;
}
.columna-servicios {
	width: 48%;
	margin: 1%;
	padding: 40px 10px;
  background: rgba(0,0,0,0.05);
}
#servicios p {
	text-align: center;
}
.servicios-img {
	width: 70px;
	height: 70px;
	margin: auto;
	margin-bottom: 20px;
	transition: all 0.4s;
}
.servicios-link {
	padding: 10px;
	transition: all 0.4s;
}
.servicios-link:hover .servicios-img {
	transform: scale(1.4);
  opacity: 0.5;
}

/*SERVICIOS INTERIOR*/
#servicios-interior {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	margin: -1px auto;
	background: #fff;
	padding-top: 40px;
}
#servicios-interior .titulo {
	margin-bottom: 20px;
}
.grupo-serviciosinterior {
	max-width: 1000px;
	margin: auto;
	position: relative;
	z-index: 10;
}
.columna-serviciosinterior {
	padding: 20px 10px;
}
.serviciosinterior-txt {
	max-width: 1000px;
	margin: auto;
	text-align: justify;
}
.imagenes-img {
	width: 50px;
}
.grupo-imagenes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.columna-imagenes {
	padding: 10px;
	width: 48%;
	margin: 1%;
}
.servicios {
	text-align: left;
  font-family: "Open Sans", sans-serif;
}
.serviciosinterior-txt span {
	font-weight: 700;
	color: #152E7C;
}
.serviciosinterior-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.servicios-item {
	display: flex;
}

/*NOSOTROS*/
#nosotros {
	overflow: hidden;
	max-width: 100%;
	margin: -1px auto;
	background: #eee;
}
#nosotros .txt {
	text-align: justify;
}
.grupo-nosotros {
	max-width: 960px;
	margin: auto;
}
.columna-nosotros {
	padding: 20px 10px;
}
.nosotros-img {
	max-width: 360px;
}

/*slogan*/
#slogan {
  overflow: hidden;
  max-width: 100%;
  margin: -1px auto;
	background: #C5C5C3;
}
.slogan-img {
	width: 80%;
	margin-bottom: 40px;
}
.slogan-txt {
	color: #1d1d1d;
	padding: 0 40px;
	font-size: 1.4em;
	font-weight: 100;
}
.slogan-txt span {
	color: #eee;
	font-weight: 700;
}
.slogan-boton {
  margin: 0;
}
.slogan-btn {
  width: fit-content;
  font-family: "Open Sans", sans-serif;
  font-size: 0.91em;
  color: #eee;
  text-align: center;
	border: 2px solid #eee;
  background: #152E7C;
	width: 200px;
	padding: 10px;
  margin-left: 40px;
  transition: all 0.4s;
}
.slogan-btn:hover {
  background: #000;
}

/*BOTON FLOTANTE WASAP*/
.btn-whatsapp {
  display: block;
  width: 90px;
  height: 90px;
  color: #fff;
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 999;
}

/*FOOTER*/
.footer {
  max-width: 100%;
  margin: auto;
  background: #152E7C;
	position: relative;
	overflow: hidden;
}
.footer-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.1;
}
.grupo-footer {
	position: relative;
	z-index: 100;
}
.footer-columna {
  margin-bottom: 20px;
  text-align: left;
  padding: 10px;
}
.logofooter {
  width: 220px;
}
.footer .rubros {
  font-size: 1.2em;
  color: #fff;
	font-weight: 400;
}
.footer p {
  font-size: 0.9em;
  color: #fff;
  padding: 10px 20px;
  opacity: 0.8;
}
.footer span {
  font-size: 1em;
  color: #fff;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

/*REDES*/
.grupo-redes {
	display: flex;
	justify-content: center;
	align-items: center;
}
.redes-link span {
	font-size: 2em;
	opacity: 0.5;
}
.redes-link span:hover {
	opacity: 1;
}

#copy {
  max-width: 100%;
  padding: 20px 10px;
  margin: auto;
  background: #C5C5C3;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#copy p {
  color: #666;
  font-size: 0.9em;
}

/*libro de reclamaciones*/
#libro {
	overflow: hidden;
  max-width: 100%;
  margin: auto;
	padding: 20px;
	background: #C5C5C3;
}
#libro .contenedor {
	max-width: 300px;
}
#libro a {
	color: #1d1d1d;
}

/*COPY*/
.copy {
	overflow: hidden;
	max-width: 1500px;
	margin: auto;
  text-align: center;
  background: #003A59;
  padding: 20px 0;
}
.copy-derechos {
	font-weight: 300;
	font-size: 0.8em;
	color: #eee;
  padding: 0;
}
.elaboradopor {
  font-weight: 300;
  font-size: 0.8em;
  color: #eee;
}


/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/


@media (min-width: 450px) {
}

@media (min-width: 768px) {
.banner {
	height: 650px;

}

}


@media (min-width: 1024px) {
/*BANNER*/
.textos-banner {
	width: 70%
}
.logoprincipal {
	width: 280px;
	margin: 0;
}
.banner-titulo {
  font-size: 2.8em;
  text-align: left;
}
.banner-subtitulo {
  font-size: 3.9em;
  text-align: left;
}
.wa-btnverdegeneral {
	margin: 0;
}
.interior {
	height: 400px;
}
	
/*	SOCIOS*/
.socios-columna {
	width: 48%;
}

/*	SERVICIOS*/
.isotipo-img {
	width: 50%;
}
.grupo-serviciosinterior {
	display: flex;
	justify-content: center;
}
.columna-serviciosinterior {
	width: 50%;
}
	.inverse {
		flex-direction: row-reverse;
	}
  
	/*	NOSOTROS*/
.grupo-nosotros {
	display: flex;
	justify-content: center;
}
.columna-nosotros {
	width: 50%;
}
	
/*	HISTORIA*/
	.grupo-historia {
		display: flex;
		justify-content: center;
	}
	.columna-historia {
		margin: 0 10px;
	}
	
/*SLOGAN	*/
.grupo-slogan {
	position: relative;
	padding: 60px 100px;
	max-width: 960px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #999;
}
.columna-slogan {
	width: 50%;
}
.slogan-img {
	position: absolute;
	width: 390px;
	margin-bottom: 0;
	bottom: -45px;
}

	
/*	SERVICIOS*/
.columna-servicios {
	width: 23%;

}

/*FOOTER*/
.grupo-footer {
  display: flex;
  justify-content: space-between;
	margin: auto;
	max-width: 1200px;
}
.logofooter {
	width: 200px;
}
.footer-columna {
  width: 33%;
  margin: 0%;
	border-right: 1px solid rgba(255,255,255,0.3);
	margin-bottom: 20px;
}
.footer-columna:last-child {
	border-right: none;
}
.grupo-copy {
	display: flex;
	justify-content: space-between;
}
.grupo-redes {
	justify-content: flex-start;
}
	
}
