@charset "UTF-8";

* {
	margin: 0px;
	padding: 0px;
    box-sizing: border-box;
	
	
	}

body {
	font-family: Arial, Helvetica, sans-serif;
	
}   
	


#logo {
	width: 90px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
	
#menu {
    width: 100%;
	background-color: #000;
    height: auto;
	
}


#menu ul {
    list-style-type: none;
    padding: 0;
    font-size: 0;
    text-align: center;
   
    
}

#menu ul li {
    display: inline-block; /*inline-block introduce espacios en blanco entre los elementos (como si fueran palabras)*/
    width: 25%;
    font-size: 16px;
}

#menu ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
}

#menu ul li a:hover {
    text-decoration: underline;
}

#menu ul li a:active {
	font-size: 1.2em;
   
}  

#menu-movil ul li a:hover {
	text-decoration: underline;
}

#menu-movil ul li a:active {
	font-size: 1.2em;
}

#menu-movil ul li a {
	display: block;
	color: #fff;
	background-color: #000;
	text-decoration: none;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	
	
}

#menu-movil {
	
	display: none;
	
}



.imagen-responsive {
    height: auto;
	width: 100%;
}

#textos {
	max-width: 1200px;
	margin: auto;
	padding-top: 60px;
	padding-bottom: 30px;
}

.col {
    width: 30%;
    float: left;
    margin: 1.66%;
}

.col h1 {
	margin-bottom: 10px;
  font-size: 1.5em;
}

.col p {
	color: rgb(64, 64, 64)
}


.material-symbols-outlined {
  padding-top: 5px;
  font-size: 40px !important;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
  
}


.limpiar {
	clear: both;
}

footer {
	background-color: rgba(0,0,0,1);
	text-align: center;
	clear: both;
	height: 15%;
	width: 100%;
    color: rgba(255,255,255,1.00);
    padding: 2%;
}
	
	

/* Página servicios */

.titulo-pagina {
	text-align: center;
	font-weight: bold;
	font-size: 2em;
	padding: 5%;

}	

.servicios {
	margin: auto;
	width: 100%;
	
}


.servicios img {
	width: 50%;
	display: block;
	float: left;
	padding-left: 10%;
	padding-right: 1%;
	
}

.servicios p {
	width: 50%;
	display: block;
	float: left;
	padding: 1% 10% 8% 1%;
	line-height: 1.2;

}

.cajas-iconos {
	margin: auto;
	width: 33.33%;
	float: left;
	padding: 2% 2% 4% 2%;


}

.cajas-iconos span {
	display: block;
	width: 100%;
	text-align: center;
	padding-bottom: 2%;

}

.cajas-iconos h2 {
	text-align: center;
	padding-bottom: 2%;
}

.cajas-iconos p {
	text-align: center;
	width: 100%;
	font-size: 0.9em;
	padding: 0 15%;
}

/* Página Galería */

#galeria {

	width: 100%;
	margin: auto;

}



.miniaturas {
	display: block;
	width: 25%;
	float: left;
	
	}
	

.miniaturas img {
	width: 98%;
	display: block;
	margin-bottom: 2%;
	padding: 0;
}

.miniaturas img:hover {
	opacity: 0.6;
	}



/* Página Contacto */

#contacto {

	width: 70%;
	margin: auto;

}

#formulario {
	
  width: 46%;
  height: auto;
  float: left;
	background-color: rgba(0,0,0,1.00);
	padding: 3%;
	margin: 0 2% 5%;
	border-radius: 2%;


}



.rotulos {

	width: 100%;
	display: block;
	margin-bottom: 2%;
	color: rgba(255,255,255,1.00);
	font-weight: bold;	

}


input[type="text"], input[type="email"], textarea {
	width: 100%;
	display: inline-block;
	padding: 0 5px;
	margin: 5px 0;
	background-color: rgba(63,63,63,1.00);
	color: rgba(255,255,255,1.00);
	border-style: none;
	height: 35px;
	border-radius: 2%;

		}

	textarea {
	
	height: 80px;

		}

	input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
		background-color: rgba(128,128,128,1.00);
		border-style: none;
	}


	input[type="submit"] {
	border-style: none;
	width: 35%;
	margin: auto;
	height: 45px;
	display: block;
	background-color: rgba(255,255,255,1.00);
	color: rgba(0,0,0,1.00);
	font-size: 105%;
	font-weight: bold;
	margin-bottom: 5%;
	margin-top:4%;
	

	}
	

#mapa {
	width: 46%;
	margin: auto;
	float: left;
	margin: 0 2% 5%;
	

}

#mapa iframe {
	width: 100%;
	height: 540px;
	border-radius: 2%;
}




