@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap');

*{ 
	box-sizing: border-box;
	margin:0;
	padding:0;
	font-family: 'Source Sans Pro', sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	font-size: 1rem; /*texto responsive*/		
	font-family: 'Source Sans Pro', sans-serif;
	overflow: scroll;
  }

p{
	font-weight: normal;
	font-display: swap;
	font-size: 1rem; /*texto responsive*/
}

h1,h2,h3,h4,h5,h6{
	color: var(--titleColor);
	padding: 0.3em;
	font-weight: 500;
}  

h1{
	font-size: 6rem;
}

@media screen and (max-width:768px){
	h1{
		font-size: 3rem;
	}
}

h2{
	font-size: 3rem;
}

h3{
	font-size: 1.8rem;
	line-height: 1.8rem;
	margin-top: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: bolder;

}

  /*NAVEGADOR MENU*/

  header { 
	width: 100%;
	z-index: 2000;
	padding: 10px;
  }

  .menu_bar {
	display: none;
}

  ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
  }

  nav li {
	display: inline-block;
	margin-left: 25px;
	height: 70px;
	line-height: 70px;
	transition: .3s linear;
  }

  nav .menu {
	text-decoration: none;
	display: block;
	color: white;
	text-transform: uppercase;
  }  

  .nav-item :after {
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 15px;
	background: white;
	transition: width .3s linear;  
  }

  nav a:hover:after {
	  width: 100%;
	}


/*SOCIAL*/
/*WHATSAPP*/
.appWhatsapp{
	position: fixed; /*Siempre en patalla*/
	bottom: 30px; /*Baja la barra de arriba a abajo*/
	z-index: 4000; /*Z-index para ninguna propiedad se superponga*/
	right: 30px;
	float: right;
	cursor: pointer;
}

@media screen and (max-width:768px){
	.appWhatsapp{
		top: 650px;
		right: 10px;
	}
	
}

@media screen and (max-width:420px){
	.appWhatsapp{
		top: 700px;
		right: 10px;
	}
}


/*PARALLAX*/

 .parallax1{
	width: 100%;
	height: 100vh;
	background-image: url('../img/workdark.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
 }

 .texto-parallax1{
	color: white; 
	text-align: center;	
 }


/*SECCIÓN 2 PRODUCTOS*/


/*GALERÍA DE PRODUCTOS SECCIÓN 2*/
#products .button{
	text-align: center;
}


/*COMIENZA AQUÍ GALERÍA DE PRODUCTOS*/
.btn-abrir-popup{
	opacity:  .9;
	border: none;
}

.btn-abrir-popup:hover{
	opacity:1;
}

@media screen and (max-width:768px){
	.btn-abrir-popup:hover{
		opacity: 0.9;
	}
}

	/*pop up*/
	.overlay{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		visibility: hidden;
		opacity: 0;
		transition: all 600ms;
		z-index: 3000;
	}

	.overlay:target{
		background: rgba(0, 0, 0, .8);
		visibility: visible;
		opacity: 1;
	}



	.popup{
		background: white;
		box-shadow: orangered;
		border-radius: 10px;
		position: relative;
		font-family: 'Quicksand', sans-serif;
		padding: 20px;
		text-align: center;
		width: 1000px;
		transition: .3 ease all;
		transform: scale(0.7);
		
		
	}

	.popup .btn-cerrar-popup{
		font-size: 20px;
		width: 50px;
		height: 50px;
		position: absolute;
		right: -20px;
		top: -20px;
		padding: 17px;
		background: #4267B2;
		color: white;
		border-radius: 50%;
		line-height: 10px;
		transition: 0.3s ease all;
	}

	.popup .btn-cerrar-popup:hover{
		color: rgb(227, 243, 253);
	}

	.popup h3{
		font-size: 36px;
		font-weight: 500;
		line-height: 40px;
		/*opacity: 0;*/
	}
	.popup p{
		font-size: 20px;
		margin-bottom: 10px;
		/*opacity: 0;*/
	}

	.popup .product1{
		width: 60%;
		background-size: cover;
		background-position: center;
	}

	.popup .btn{
		width: 50%;
		padding: 10px auto;
		margin-bottom: 10px;
		height: 52px;
		line-height: 52px;
		font-size: 18px;
		text-align: center;
		justify-content: center;
		background: whitesmoke;

	}

	.popup .btn-contacto{
		padding: 0 20px;
		cursor: pointer;
		transition: .3s ease all;
	}

	.overlay .btn-contacto{
		align-items: center;
		justify-content: center;
		background: #4267B2;
		color: white;
		border: none;
		width: 40%;
		height: 50px;
		text-align: center;
		margin-bottom: 20px;
		font-size: 30px;
	}

	.overlay .btn-contacto:hover{
		background: #003E83;
		color: white;
		font-size: 35px;
	}

	@media screen and (max-width:768px){
		.overlay .btn-contacto{
			font-size: 18px;
		}

		.overlay .btn-contacto:hover{
			font-size: 20px;
		}
	}

	/*carrusel pop up*/


/*SECCIÓN 4 CONTACTO*/
#contacto{
	background-image: url('../img/Contacto\ \(2\).webp');
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	margin: 0;
}

#contacto p{
	text-align: center;
	justify-content: center;
} 

form {
	width: 500px;
	margin: auto;
	background: rgba(0, 0, 0, .5);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 7px;
	margin-right: 120px;
}


@media (max-width:900px){
	form{
	margin-right: 10%;
	margin-left: 10%;
	width: 80%;	
	}
}

@media (max-width:480px){
	form{
	margin: auto;	
	width: 100%;	
	}
}

#contacto .label1{
	text-transform: uppercase;
	color: white;
	font-size: 12px;
}

input, textarea{
	width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 17px;
	border: none;
}

textarea{
	min-height: 100px;
	max-height: 200px;
	max-width: 100%;
	min-width: 100%;
}

.enviar{
	background: #4267B2;
	color: white;
	padding: 20px;
}

.enviar:hover{
	background: #003E83;
	cursor: pointer;	
	font-weight: 600;
}

/*SECCIÓN 5 UBICACIÓN*/
#location .location{
	padding: 0;
	width: 100%;
}	

/*FOOTER*/

footer{
	color: white;
	text-align: center;
	padding: 20px;
	clear: both;
	font-size: 14px;
	width: 100%;
}

.footer-4 a:hover{
	font-weight: 700;
	text-transform: uppercase;
}


@media screen and(max-width:990px){
	footer{		
		height: 600px;
		font-size: 12px;
	}

	.footer-1 img{
		margin-top: 5px;
	}
}

@media screen and (max-width:480px){
	footer{
		height: 250px;
		clear: both;
		font-size: 10px;
	}
	

	.footer-2, .footer-3, .footer-4{
		font-size: 16px;
	}

	.footer-copyright {
		color: black;
	}
}


























