@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;1,300&display=swap');

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

html {
	scroll-behavior: smooth;
  }

body {
	margin: 0;
	font-size: 1rem; /*texto responsive*/	
  }

p{
    font-size: 18px;
	font-display: swap;
	font-weight: normal;
}

@media (max-width:768px){
  p{
    font-size: 12px;
    line-height: 20px;
  }
}

h1,h2,h3,h4,h5,h6{
	color: var(--titleColor);	
	font-display: swap;
}  

h1{
    font-weight: 500;
}

h2{
	font-size: 50px;
	line-height: 55px;
}

@media (max-width:768px){
  h2{
    font-size: 30px;
    line-height: 35px;
  }
}

h3, h4{
	font-size: 40px;
	line-height: 45px;
}

@media (max-width:768px){
  h3, h4, h5, h6{
    font-size: 25px;
    line-height: 30px;
  }
}

h5, h6{
	font-size: 35px;
	line-height: 40px;
}

section{
	overflow: hidden;
}

@media (max-width:768px){
  #barra{
    display: none;
  }
}

/*menú de navegación*/
#basicExampleNav{
  text-align: right;
}

.logo{
	left: 100;
}

/*PARALLAX SECCIÓN 1*/

.parallax1{
	width: 100%;
	height: 100vh;
	background-image: url('../img/main.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;	
 }

 h1{
	 font-size: 80px;
	 line-height: 85px;
	 font-weight: 300;
 }

 .parallax1 hr{
   height: 2px;
 }

 @media screen and (max-width:550px){
	 h1{
		 font-size: 50px;
		 line-height: 55px;
	 }
 }

/*SECCIÓN 2 - PRODUCTOS*/
#producto{
  margin-top: 20px;
}

#estiba{  
  background: #ff6d00;
}

.productos{
  font-size: 55px;
}

    /*otros productos*/
    #otros h2{
      font-size: 30px;
      line-height: 35px;
    }

/*SECCIÓN 4 CONTACTO*/
#contacto{
  width: 100%;
}

#contacto h3{
	text-align: center;	
	font-size: 40px;
	padding-top: 30px;
	color: white;
	margin-bottom: 20px;
}

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

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

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

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

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

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: #ff6d00;
	color: white;
	padding: 20px;
}

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

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

@media screen and (max-width:990px){	
	#location h2{
		margin-top: 30px;	
		font-size: 45px;	
	}
}	

/*social*/
.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;
	}
}

    /*footer*/
    #footer p{
      font-size: 14px;
      line-height: 19px;
    }
    #footer h5{
      font-size: 20px;
      font-weight: 500;
    }
    #img-footer{
      vertical-align: middle;
    }