/* Estilos generales  --------------------------------------------------------------*/

/* Sombreados */
.sombreado{
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}

.material-icons{
	justify-content: center;
	padding: 0px 5px;
}

/* Estilos de icon Bootstrap tamaño y colores */
	/* .iconFacebook{
		color: #1f91dc;
		font-size: 23px;
	}
	.iconInstagram{
  		color: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
		  font-size: 23px;
	}

	.iconWhatsapp{
		color: #1fdc4bfc;
		font-size: 23px;
	} */
/*FIn de estilos Genereales -----------------------------------------------------------------------------------------------------------------------------------------*/

/* Estilos de Botones ------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*Boton hover recubrimiento en negrita horizontal y vertical----------------------------------------------------------------*/
.c1btn{
	color: #000;
	background: none;
	border: 2px solid #000;
	font-family: 'Material Icons';
	text-transform: uppercase;
	padding: 5px;
	min-width: 200px;
	margin: 10px;
	cursor: pointer;
	transition: color 0.4s linear;
	position: relative;
}

.c1btn:hover{
	color: #fff;
}

.c1btn::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: -1;
	transition: transform 0.7s;
	transform-origin: 0 0;
	transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
}
		/* Hover desplazamiento horizontal (En uso ahora, solo cambiar la clase)*/
		.c1btn::before{
			transform: scaleX(0);
		}

		.c1btn:hover::before{
			transform: scaleX(1);
		}
		/* Hover desplazamiento vertical */
		.c1vbtn::before{
			transform: scaleY(0);
		}

		.c1vbtn:hover::before{
			transform: scaleY(1);
		}

/*Fin del Boton hover recubrimiento en negrita horizontal y vertical---------------------------------------*/


/* Estilo 2, Boton con sombras duplicados------------------------------------------------------------------------*/

.c2btn {
	padding: 1rem 2rem;
	font-weight: 700;
	background: rgb(255, 255, 255);
	color: rgba(20, 18, 18, 0.975);
	cursor: pointer;
	border-radius: 0.5rem;
	border-bottom: 2px solid #1f91dc;
	border-right: 2px solid #1f91dc;
	border-top: 2px solid white;
	border-left: 2px solid white;
	transition-duration: 0.5s;
	transition-property: border-top, border-left, border-bottom, border-right,
	box-shadow;
}

.c2btn:active {
	transform: translateY(3px);
	transition: transform 34ms;
   }

.c2btn:hover {
	color: #006600;
	border-top: 2px solid rgb(86, 226, 43);
	border-left: 2px solid rgb(86, 226, 43);
	border-bottom: 2px solid #090909;
	border-right: 2px solid #0f0f0f;
	box-shadow: #1cc31caf 4px 4px, #0b0b0b59 -5px 11px;
}

/* Fin Estilo 2, Boton con sombras duplicados---------------------------------------------------------------------------------------------------------*/

/* Estilo 3/ Boton con animacion de cuadros repetidos desde los lados ---------------------------------------------------------------------------------------------------- */

.c3btn {
	outline: 0;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: #1f91dc;
	min-width: 200px;
	border: 0;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	padding: 10px 15px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s;
  }

  .c3btn:hover {
	color: #000;
	opacity: 0.95;
	background-color: transparent;
	border: 1px solid #000;
  }

  .c3btn .animation3 {
	border-radius: 100%;
	animation: ripple 0.6s linear infinite;
  }

  /* Activacion boton */
.c3btn:active {
	transform: translateY(2px);
	transition: transform 34ms;
   }

  @keyframes ripple {
	0% {
	  box-shadow:
		0 0 0 0 rgba(255, 255, 255, 0.1),
		0 0 0 20px rgba(255, 255, 255, 0.1),
		0 0 0 40px rgba(255, 255, 255, 0.1),
		0 0 0 60px rgba(255, 255, 255, 0.1);
	}

	100% {
	  box-shadow:
		0 0 0 20px rgba(255, 255, 255, 0.1),
		0 0 0 40px rgba(255, 255, 255, 0.1),
		0 0 0 60px rgba(255, 255, 255, 0.1),
		0 0 0 80px rgba(255, 255, 255, 0);
	}
  }

/* Fin de Estilo 3/ Boton de animacion repetidos desde los lados ---------------------------------------------------------------------------------------------------- */

/* Estilo 4 / Estilo de aumento de imagen mas redes sociales en el lado izquierdo */

/* Contenedor main */


.contenedorImg{
	justify-content: center;
	align-items: center;
	/* height: 250px; */
	height: 250px;
	position: relative;
	overflow: hidden;
}
@media(max-width: 500px){
	.contenedorImg{
		/* max-width: 250px; */
		max-height: 180px;
	}
}
/* animacion de nuevo */
/* .contenedorImg:before{
	content: "";
	position: absolute;
	top: 0;
	left: 150%;
	width: 15%;
	height: 100%;
	border-radius: 1rem;
	background: rgba(185, 196, 184, 0.259);
	z-index: 1;
	transform: skewX(50deg);
	transition: 1.0s;
} */
/* animacion de movimiento */
	/* .contenedorImg:hover:before{
		transition-delay: 0.3s;
		left: -160%;

	} */

/* Estilos de las imagenes --------*/

/* imagen 1 */
.cardImg1{
	/* filter: grayscale(100%);*/ /* etiqueta para degradar el color hasta blanco y negro en porcentaje de 1 a 100 */
	height: 250px;
	position: absolute;
	/* object-fit: cover;
	object-position: center; */
	transition: transform 0.4s, opacity 0.5s;
}/* hover imagnen 1 */
	.contenedorImg:hover .cardImg1{
		/* transform: translateY(-1.5); */
		opacity: 0;
	}
	@media(max-width: 500px){
		.cardImg1{
			/* max-width: 250px; */
			max-height: 180px;
		}
	}

/* Fondo img 2 */
.contenedorImg .imgFondo{
	min-height: 250px;
	position: absolute;
	top: 0;
	left: 0;
	/* object-fit: cover;
	object-position: center; */
	transform: scale(1.3);
	z-index: -1;
	transition: all linear 0.4s;
} /* hover de fondo 2 */
	.contenedorImg:hover .imgFondo{
		/* opacity: 1; */
		transform: scale(1);
	}@media(max-width: 500px){
		.contenedorImg .imgFondo{
			/* max-width: 250px; */
			min-height: 180px;
		}
	}


/* Estilos de Titulo sobre la imagen  ----------------- */
/* .contenedorImg h2{
	position: absolute;
	bottom: 0;
	margin: 0;
	font-size: 18px;
	text-align: center;
	padding: 10px 0;
	width: 100%;
	background: #fff;
	color: #262626;
	transform-origin: bottom;
	transition: 1s;
	transform: perspective(500px) rotateX(90deg);
} */
	/* animacion de H2 */
	/* .contenedorImg:hover h2{
		transform: perspective(500px) rotateX(0deg);
	} */

/* Estilos de Apps --------------------- */
.contenedorImg ul{
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.contenedorImg ul li {
	border-radius: 0px 0px 4px 0px;
	list-style: none;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	transform-origin: left;
	transition: 0.5s;
	border-bottom: 1px solid rgba(0, 0, 0, 1);
	transform: perspective(1000px) rotateY(90deg);
}
	/* Animacion de Botones  */
	.contenedorImg:hover ul li {
		transform: perspective(1000px) rotateY(0deg);
	}

	.contenedorImg:hover ul li:nth-child(1) {
		transition-delay: 0.1s;
	}
	.contenedorImg:hover ul li:nth-child(2) {
		transition-delay: .3s;
	}
	.contenedorImg:hover ul li:nth-child(3) {
		transition-delay: 0.5s;
	}

/* estilo botones de aplicacion */

.contenedorImg .iconFacebook{
	background: #1f91dc;
	font-size: 23px;
}.contenedorImg .iconFacebook i{
	color: #ffffff;
}.contenedorImg .iconFacebook:hover{
	transform: scale(1.1);
}

.contenedorImg .iconInstagram{
	background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
	font-size: 23px;
}.contenedorImg .iconInstagram i{
	color: #ffffff;
}.contenedorImg .iconInstagram:hover{
	transform: scale(1.1);
}


/* Fin de estilo 4 : Estilo de aumento de imagen mas redes sociales en el lado izquierdo -------------------------------------*/


/* Seccion de mapa */
/* Inicio: Estilos mapa --------------------------------------------------*/
.seccion-mapa{
	position: relative;
}

.container-mainmapa{
    width: 350px;
    height: 500px;
    position: relative;
	margin: 0 auto;
    /*display: flex;*/
    justify-content: center;
}
/*-------- M------------*/

 .container-mapa .img-mapa{
	position: absolute;
	width: 425px;
	z-index: -1;
}


.depart{
    position: absolute;
	width: 50px;
	height: 40px;
	font-size: 29px;
	text-align: center;
    transition-duration: .5s;
	z-index: 3;
	font-weight: bold;
	gap: -5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	/* flex-wrap: nowrap; */
	box-sizing: border-box;
}
/* color iconos */
.container-mainmapa i{
	color: red;
}

  /*----------------- DEPARTAMENTOS -------------*/

.container-mainmapa .depart:hover{
	transform: scale(1);
	transform-origin: center;
	z-index: 4;
}

.depart p{
	width: 0px;
	/* height: 15px; */
	opacity: 0;
	line-height: .9; /* espacio entre lineas */
	font-size: 13px;
	font-family: "Roboto", serif;
	font-style: normal;
	transition: 0.3s ease;
}.depart:hover p{
	width: 100px;
	padding: 5px 5px;
	opacity: 1;
	color: white;
	box-shadow: 0 10px 24px hsla(0, 0%, 0%, .50);
	background: linear-gradient(90deg, rgba(0,0,0,1) 26%, rgba(0,121,145,1) 100%);	transform: skewX(15deg);
}
/* animacion de aparicion */
@keyframes caida{
	from{
		opacity: 0;
		transform: translateY(-60px);
	}

	to{
		opacity: 1;
		transform: translateY(0);
	}
}

/* animacion de salto o rebote */
@keyframes giro {
	from{
		transform: rotateY(180deg);
	}
	to{
		transform: rotateY(0);
	}
}

/* Animacion de scala en crecimiento */
@keyframes crecer {

	50%{
		transform: scale(1.2);
	}

	100%{
		transform: scale(1);
	}
}

/* fin de estilos de mapa con absolute ---------- */

/* inicio de formato de precios---------------------------------- */
.lista-color li {
	color: #566573 !important;
}

.tarjeta_plan{
	z-index: 2;
}
.e_card {
	/* margin: 100px auto; */
	background: transparent;
	box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	z-index: 1;
  }

  .wave {
	position: absolute;
	width: 700px;
	height: 700px;
	opacity: 0.6;
	left: 0;
	top: 0;
	margin-left: -50%;
	margin-top: -70%;
  }
  .back .resaltarplan1{
	font-size: 40px;
	line-height: 20px;
	color: #19E500 !important;
	font-weight: bold !important;
  }
 .back .resaltarplan2{
	list-style: none;
	font-size: 15px;
	line-height: 10px !important;
	color: #19E500 !important;
  }
  .back .resaltarplan3{
	font-size: 40px;
	line-height: 20px;
	color: #19E500 !important;
	font-weight: bold !important;
  }


  .wade:nth-child(1){
	background: linear-gradient(744deg, #00ff80, #164225 60%, #00cc44);
  }

  .wave:nth-child(2){
	top: 400px;
	background: linear-gradient(744deg, #0000ff, #0c0a4a 60%, #00cc44);
  }
  .wave:nth-child(3) {
	background: linear-gradient(744deg, #ff4400, #009933 60%, #00cc44);
	top: 210px;
  }

  .playing .wave {
	border-radius: 40%;
	animation: wave 3000ms infinite linear;
  }

  .wave {
	border-radius: 40%;
	animation: wave 55s infinite linear;
  }

  .playing .wave:nth-child(2) {
	animation-duration: 4000ms;
  }

  .wave:nth-child(2) {
	animation-duration: 50s;
  }

  .playing .wave:nth-child(3) {
	animation-duration: 5000ms;
  }

  .wave:nth-child(3) {
	animation-duration: 45s;
  }

  @keyframes wave {
	0% {
	  transform: rotate(0deg);
	}

	100% {
	  transform: rotate(360deg);
	}
  }


/* Fin de formato de precios---------------------------------- */
