/* RESET */
*{
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* HEADER */
header{
	height: 120px;
	background: #060056;
	padding: 0 50;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo{
	text-transform: uppercase;
	color: #FFb400;
	font-weight: 200;
	/*position: absolute;
	top: 5px;
	left: 20px;*/
}

/* MENU PARCHES COLORES DE LINK */
.menu a:link,
.menu a:visited{
	color: #ffffff;
	text-decoration-line: none;
}
.menu a:hover{
	color: #ffb400;
	text-decoration-line: none;
}	
/* MENU PARCHES COLORES DE LINK */

.menu{
	color: #FFFFFF;
	text-transform: uppercase;
	text-decoration-line: none;
	padding: 0 50px;
	transition: 0.4s;
	z-index: 100;
}

.mostrar-menu,
.esconder-menu{
	font-size: 30px;
	cursor: pointer;
	transition: 0.4s;
	display: none;
	position: absolute;
	top: 40px;
	right: 40px;
}

.mostrar-menu{
	order:1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
	color: #ffb400;
	transition: 0.8s;
	}

#check{
	display: none;
}

/*BANNER*/
#banner a:link,
#banner a:visited,
#banner a:hover{
	color: #ffffff;
	text-decoration-line: none;
}

#banner{
	padding: 0 10px;
	background-image: url("images/camioneta4.jpg");
	height: 75vh;
	background-size: cover;
	background-position: center;
}

/*Veladura*/
#banner::before{
	content: '';
	background: rgba(0,0,0, 0.4);
	position: absolute;
	width: 100%;
	height: 75vh;
	left: 0;
}

.contenido-banner{
	position: relative;
	color: white;
	height: 50vh;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 150px;
	left: 40px;
}

.contenido-banner h3{
	font-size: 30;
	font-weight: 400;
	padding: 10px 0px;
}

.contenido-banner h3 span{
	font-weight: 600;
	padding: 10px 0px;
}

.boton-empezar{
	text-decoration-line: none;
	color: #ffffff;
	border: 1px solid #FFFFFF;
	padding: 10px 30px;
	align-self: baseline;
	transition: all 0.4s;
}

.boton-empezar:hover{
	background: #ffffff50;
}

/*CODIGOS QR*/
#codigo-qr{
	padding: 50px 50px;
	display: flex;
	justify-content: center;
	text-align: center;
}

#codigo-cell div{
	padding: 30px 30px;
}

#codigo-cell div h4{
	color: #060056;
	font-size: 20px;
	margin: 15px 0px;
}
#codigo-cell div p{
	color: #858585;
}

#codigo-wapp div{
	padding: 30px 30px;
}

#codigo-wapp div h4{
	color: #060056;
	font-size: 20px;
	margin: 15px 0px;
}
#codigo-wapp div p{
	color: #858585;
}

.boton-saber-mas{
	display: inline-block;
	text-decoration: none;
	color: #060056;
	padding: 10px 30px;
	border: 2px solid #060056;
	border-radius: 30px;
	margin-top: 15px;	
	transition: all 0.4s;
}

.boton-saber-mas:hover{
	background: #060056;
	color: #FFFFFF
}

/*FOOTER*/
#footer{
	padding: 0px 10px;
	background: #060056;
}

.footer-contenido{
	padding: 10px 10px 0px 15px;
	color: #ffb400;
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.footer-contenido div{
	flex: 1;
	margin: 20px 0px;
	border-right: 1px solid #ffb400;
}

#web{
	border: none;
}


/* RESPONSIVE */
@media(max-width:768px){
	
	/*HEADER*/
	.mostrar-menu,
	.esconder-menu{
		display: block;
		}
	
	.menu{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #060056;
		right: -100%;
		top: 0;
		text-align: center;
		padding: 100px 0px;
		z-index: 100;
		transition: 0.8;
	}
	
	.menu a{
		display: block;
		padding: 20px;
	}
	
	.esconder-menu{
		position: absolute;
		top: 40px;
		right: 40px;
	}
	
	#check:checked ~ .menu{
		right: 0;
	}
	
	/*QR*/
	#codigo-qr{
		flex-direction: column;
		z-index: 100;
	}
}
	
	
	
	
	
	