/* RESET */
*{
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}


header {
	height: 150px;
	background: #000;
	background-image: url(./imagenes/silueta.jpg);
	background-size: 150vh;
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0 50px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: 250px;
	margin-top: 80px;
}

.menu a{
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 10px;
	transition: 0.4s;
}

.mostrar-menu,
.esconder-menu {
	font-size: 20px;
	cursor: pointer;
	display: none;
	position: absolute;
	right: 30px;
	top: 80px;
	transition: 0.4s;
}

.mostrar-menu {
	order:1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
	color: #e72128;
}

#check{
	display: none;
}

.grid-container .float-wa{
    position:fixed;
    width:50px;
	background-color: #000;
    height:50px;
    bottom:40px;
    right:40px;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
}

.grid-container .float-wa .icono-whatsapp{
	background-image: url(./imagenes/icono_whatsapp.png);
	padding: 2px;
}


/* BANNER */
#banner{
	padding: 0 60px;
	background-image: url(./imagenes/banner.jpg);
	height: 90vh;
	background-size: cover;
	background-position: center;
}

#banner::before {
	content: "";
	/*background: rgba(77,77,92,0.6);*/
	position: absolute;
	width: 100%;
	height: 80vh;
	left:0;
}

.contenido-banner{
	position: relative;
	color: rgb(145, 144, 144);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contenido-banner div{
	width: 40%;
	margin-top: 60px;
	text-align: center;
}

.contenido-banner div h3 {
	color: #fff;
	font-weight: 600;
}

.contenido-banner div p {
	font-size: 14px;
	font-weight: 300;
	padding-bottom: 40px;
}

.contenido-banner a{
	position: absolute;
	bottom: 380px;
}

.boton-saber-mas{
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	border: 1px solid #e72128;
	padding: 10px 20px;
	/*align-self: baseline;*/
	transition: all 0.4s;
	border-radius: 30px;
}

.boton-saber-mas:hover{
	background:#e72128;
}

/* ANDINO */

#andino{
	min-height: 95vh;
	border-top: 3px solid #e72128;
	margin-top: -15px;
	padding: 20px 50px;
	display: flex;
	justify-content: center;
	text-align: center;
	/*background-color: #000;*/
	background-image: url(./imagenes/morillas.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right bottom;
}

#andino img{
	border-radius: 100%;
	width: 210px;
	height: 200px;
	border: 3px solid #000;
}

#andino div{
	padding: 30px 30px;
}

#andino div h4{
	color:#000;
	font-size: 15 px;
	margin: 15px 0px;
}

#andino div p{
	color:#000;
	font-size: 15px;
}

.boton-ver{
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	color:#000000;
	padding: 10px 30px;
	border: 3px solid #000000;
	border-radius: 30px;
	margin-top: 30px;
	transition: all 0.4s;
}

.boton-ver:hover{
	background: #e72128;
	color: #fff;
}

/* BENEFICIOS */

#beneficios{
	margin-top: -15px;
	padding: 0px 0px;
	background: rgba(41, 41, 41, 0.6);	
}

#icono-mobile{
	border: none;
}

.contenido-beneficios div i{ 
	color: #e72128;
}
.contenido-beneficios div h6{
	color: #fff;
	font-size: 20px;
	font-weight: 100;
	margin: 20px 0px;
}
.contenido-beneficios div p{
	color: rgba(255,255,255,0.55);
	font-size: 15px;
	margin: 5px 10px;
}

.boton-beneficios{
	text-align: center;
	padding-bottom: 40px;
}

.boton-especificaciones {
	display: inline-block;
	text-decoration: none;
	text-align: center;
	padding-bottom: 40px;
	font-size: 14px;
	color:#fff;
	padding: 10px 30px;
	border: 3px solid #e72128;
	border-radius: 30px;
	margin-top: 15px;
	transition: all 0.4s;
}

.boton-especificaciones:hover{
	background: #e72128;
	color: #fff;
}

/* CAROUSEL */

.carousel-container {
	position: relative;
	max-width: 100%;
	margin: 5px auto;
	overflow: hidden;
}

.carousel {
	display: flex;
	transition: transform .5s ease-in-out;
}

.carousel-item {
	min-width: 100%;
	position: relative;
}

.carousel-item img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.carousel-button{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 16px;
	border: none;
	cursor: pointer;
	font-size: 18px;
	transition: background .3s;
	z-index: 10;
}
.carousel-button:hover {
	background: rgba(0, 0, 0, 0.8);
}

.carousel-button-prev{
	left: 10px;
}
.carousel-button-next{
	right: 10px;
}
.content-indicators{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX (-50%);
	display: flex;
	gap: 10px;
}

.indicator{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background .3s;
}
.indicator:active{
	background-color: white;
}


/* FRASE */

#frase{
	height: 150px;
	background-image: url(./imagenes/frase.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	text-align: center;
	align-items: center;
	margin: -5px auto;
}

#frase h3{
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	padding-top: 60px;
}

/* FORMULARIO */

#contacto{
	margin-top: -15px;
	border-top: 3px solid #000;
	background: #4d7307;
	background-image: url(./imagenes/logo_fondo_verde.jpg);
	background-size: 110vh;
	background-repeat: no-repeat;
	background-position: right bottom;
	padding: 50px 0px;
	color: #fff;
	font-size: 12px;
	display: flex;
	justify-content: center;
	text-align: center;
}

#contacto h4{
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}

#contacto form{
	max-width: 100%;
	margin: 0 auto;
	width: 40vw;
	padding: 0px 100px;
}

#vacio{
	max-width: 60%;
}

.datos-form{
	display: flex;
}
.datos-form div{
	padding: 10px;
	flex: 1;
}
form label{
	display: block;
	margin-bottom: 10px;
}
form input,
form textarea{
	background: #0eb2fe;
	background-image: url(./imagenes/morillas.jpg);
	background-position: center;
	border-radius: 10px;
	border: 2px solid #e72128;
	padding: 10px 5px;
	outline: 0;
	color: #094c5f;
	width: 100%;
}
form input:focus,
form textarea:focus{
	border-color: rgb(122, 180, 20);
	box-shadow: 0 0 0 1px rgb(122, 180, 20);
}

form input::placeholder,
form textarea::placeholder{
	color:#094c5f;
}

.mensaje{
	display: flex;
	flex-direction: column;
	padding: 10px;
}

.boton-formulario{
	padding: 10px;
	padding-right: 0px;
}

.boton-formulario .boton-saber-mas{
	display: block;
	border: 1px solid #e72128;
	color: #fff;
	text-align: center;
	transition: 0.4s;
}

.boton-formulario .boton-saber-mas:hover{
	background: #e72128;
}

/* FOOTER */
footer{
	background: #000;
	color: #cccccc4a;
	text-align: center;
	padding: 20px 0px ;
	padding-bottom: 30px;
	font-size: 12px;
	border-top: 3px solid #e72128;
}
footer a{
	color: #e72128;
}



/* RESPONSIVE */

@media (max-width:768px){
	.mostrar-menu,
	.esconder-menu{
		display: block;
	}

	.menu{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #e72128;
		right: -100%;
		top:0;
		text-align: center;
		padding: 100px 0px;
		z-index: 100;
		transition: 0.8s;
	}
	.menu a{
		display: block;
		padding: 20px;
	}

	.esconder-menu{
		position:absolute;
		top: 40px;
		right: 40px;
	}
	#check:checked ~ .menu{
		right: 0;
	}

	.logo {
		width: 180px;
		margin-top: 80px;
	}


	/* BANNER */
	#banner{
		flex-direction: column;
		background-image: url(./imagenes/banner_chico.png);
		height: 90vh;
		max-width: 768px;
		background-size: cover;
		background-position: center;
	}

	.contenido-banner div{
		width: 100%;
		margin-top: 70px;
		text-align: center;
	}

	.contenido-banner div h3 {
		color: #fff;
		font-weight: 600;
	}
	
	.contenido-banner div p {
		font-size: 12px;
		font-weight: 300;
	}

	.contenido-banner .boton-saber-mas{
		margin-block-end: -20px;
	}
 

	/* ANDINO */
	#andino{
		flex-direction: column;
	}

	#andino div{
		padding: 20px;
	}

	/* BENEFICIOS */
    
		slider-container {
		display: flex;
		width: 100%;
		height: 100vh;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		}

		slider-item {
		flex: 0 0 100%;
		width: 100%;
		object-fit: cover;
		scroll-snap-align: center;
		}

		@keyframes slide {
		0% { transform: translateX(0); }
		33% { transform: translateX(-100%); }
		66% { transform: translateX(-200%); }
		}

		slider-container {
		animation: slide 9s infinite;
		}



	/* FRASE */
	#frase{
		height: 80px;
	}
	#frase h3{
		color: #fff;
		font-size: 12px;
		padding-top: 20px;
		font-weight: 300;
	}

	/* FORMULARIO */
	#contacto{
		background: #4d7307;
		background-image: url(./imagenes/logo_fondo_verde.jpg);
		background-size: 30vh;
		background-repeat: no-repeat;
		background-position: bottom;
	}
	#contacto form{
		width: 80vw;
	}
	.datos-form{
		flex-direction: column;
	}
	
	form input::placeholder,
	form textarea::placeholder{
		font-size: 10px;
	}

	/* FOOTER */
	footer{
		font-size: 10px;
	}

}