@charset "utf-8";
/* CSS Document */

* {	margin:0;
    padding:0;
	box-sizing: border-box;
}

/* Responsive */

@media screen and (max-width:1000px) {
	/* INICIO */
	.contenedor-inicio {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.contenedor-inicio img {
		width: 70%;
	}
	
	.contenedor-inicio .texto-inicio {
		width: 90%;
	}
	
	/* TEXTO GLOW */
	.glow {
		width: 90%;
	}
	
	/* SOBRE NOSOTROS */
	.contenedor-sobre-nosotros {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.contenedor-sobre-nosotros .texto-sobre-nosotros {
		width: 90%;
	}
	
	.contenedor-sobre-nosotros img {
		width: 80%;
	}
	
	/* SERVICIOS */
	.contenedor-servicios {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	
	.contenedor-servicios .servicio-ind{
		width: 90%;
	}
	
	.servicio-ind:nth-child(1), .servicio-ind:nth-child(2) {
		margin-bottom: 60px;
	}
	
	/* PRODUCTOS */
	.galeria-productos {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.galeria-productos .imagen-productos {
		width: 80%;
    }
	
	.boton-ver {
		width: 90%;
	}
	
	/* CONTACTO */
    .contenedor-contacto {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
    .contenedor-contacto form{
        margin-bottom: 60px;
	}
	
	
	.contenedor-direccion iframe {
		width: 100%;
		align-content: center;
		
	}
	
	.contenedor-direccion p {
		width: 90%;
	}
}


body {
	font-family: 'Montserrat Alternates', sans-serif;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

.contenedor {
	padding: 100px 0;
	width: 90%;
	max-width: 1000;
	margin: auto;
	overflow: hidden;
}

/* Inicio */

.contenedor-inicio {
	position: relative;
	display: flex;
	justify-content: space-evenly;
}

.imagen-inicio {
	width: 40%;
	height: auto;
	padding: 30px;
	animation-name: aninicioimg;
	animation-duration: 3s;
}

@keyframes aninicioimg {
	0% {opacity: 0%}
	100%{opacity: 100%}
}

.texto-inicio h1 {
	text-align: center;
	font-family: 'Orbitron', sans-serif;
	color: white;
}

.inicio {
	animation-name: aniniciotexto;
	animation-duration: 6s;	
	position: relative;
}

@keyframes aniniciotexto {
	0% {opacity: 0%; top: 400px}
	50%{opacity: 100%}
	100%{top: 0px}
}


/* Sobre Nosotros */

.contenedor-sobre-nosotros {
	position: relative;
	display: flex;
	justify-content: space-evenly;
}

.imagen-sobre-nosotros {
	width: 40%;
	height: auto;
}

.texto-sobre-nosotros h2 {
	text-align: center;
	font-family: 'Orbitron', sans-serif;
	color: #008e43;
}

.texto-sobre-nosotros p {
	text-align: justify;
	font-family: 'Montserrat Alternates', sans-serif;
	font-size: 20px;
	color: white;
}

/* Servicios */
.contenedor-servicios {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.servicio-ind {
	width: 28%;
	text-align: center;
}

.servicio-ind img {
	width: 90%
}

.servicio-ind h2 {
	margin: 10px 0;
	font-family: 'Orbitron', sans-serif;
	text-align: center;
	position: relative;
	color: white;
}

.servicio-ind p {
	font-weight: 300;
	text-align: justify;
	font-family: 'Montserrat Alternates', sans-serif;
	position: relative;
	color: white;
}

.texto-servicios h2:hover {
	color: #008e43;
}

/* Productos */
.galeria-productos {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.imagen-productos {
	width: 25%;
	margin-bottom: 5px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 6px 0 rgba(255,255,255,.5);
}

.imagen-productos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hover-galeria {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	transform: scale(0);
	background: rgba(0, 142, 67,.7);
	transition: transform .5s;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.hover-galeria p{
	font-family: 'Montserrat Alternates', sans-serif;
	color: white;
	text-align: justify;
}

.hover-galeria h2{
	font-family: 'Orbitron', sans-serif;
	color: white;
	text-align: center;
}

.imagen-productos:hover .hover-galeria {
	transform: scale(1);
}

/* Contacto */

.contenedor-contacto {
	display: flex;
	justify-content: space-evenly;
	position: relative;
}


.contenedor-contacto p {
	text-align: center;
	font-family: 'Montserrat Alternates', sans-serif;
	font-size: 15px;
	color: white;
	margin: 0;
	margin-bottom: 20px;
}

.contenedor-contacto h1 {
	text-align: center;
	font-family: 'Orbitron', sans-serif;
	font-size: 20px;
	color: #008e43;
	margin: 0;
	margin-bottom: 20px;
}

form {
	width: 500px;
	margin: auto;
	background: rgba(0, 142, 67, .4);
	padding: 10px 20px 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 7px;
}

input {
	width: 100%;
	margin-bottom: 40px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 20px;
	border: none;
}

textarea {
	width: 100%;
	margin-bottom: 40px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 20px;
	border: none;
	min-height: 50px;
	max-height: 100px;
	max-width: 100%;
}

#boton-enviar {
	background-color: rgba(0, 142, 67, .7); 
	color: white;
	padding: 20px;
}

@media (max-width:500px) {
	form {
		width: 100%;
	}
}

	/* Aviso de Privacidad */

.contenedoraviso {
	display: flex;
	justify-content: space-evenly;
	position: relative;
}
.contenedoraviso h1 {
	text-align: center;
	font-family: 'Orbitron', sans-serif;
	font-size: 20px;
	color: white;
	margin: 0;
	margin-bottom: 20px;
}

/* Footer */

footer {
	background: black;
	padding: 60px 0 30px 0;
	margin: auto;
	overflow: hidden;
	position: relative;
}


.titulo-final {
	text-align: center;
	color: gray;
	font-size: 20px;
	margin: 20px 0 0 0;
}

/* Text Glow */
.glow {
  position: relative;
  font-size: 30px;
  font-family: 'Audiowide', cursive;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #008e43, 0 0 40px #008e43, 0 0 50px #008e43, 0 0 60px #008e43, 0 0 70px #008e43;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #34cf7d, 0 0 40px #34cf7d, 0 0 50px #34cf7d, 0 0 60px #34cf7d, 0 0 70px #34cf7d, 0 0 80px #34cf7d;
  }
}

a{
	text-decoration: none;
}

/* Header */
header {
	width: 100%;
	height: 600px;
}


button.navbar-toggler{
	border: none;
	outline: none;
}

/* Barra de Navegación */
.navbar-fixed-top{
	position:fixed;
	width: 100vw;
	
}

.navbar-item{
    font-family: 'Orbitron', sans-serif;
	text-align: center;
}

.position-relative{
	padding: 0px;
	margin: 0px;
}

.logo{
	height: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin: 0;
	padding: 0;
} 

/* Gracias */

.contenedor-gracias {
	position: relative;
	justify-content: center;
	align-items: center;

}

.gracias {
	text-align: center;
	padding-top: 200px;
}

.gracias p{
	color: white;
    font-family: 'Montserrat Alternates', sans-serif;
}


