/*GENERAL*/
a, p, span, label, i, b, textarea, div, ul, ol, li, table, thead, th, tr, td, tbody, tbody {
    font-family: 'Monserrat';
	font-size: 1em;
	text-decoration: none;
}

/*body{
	background-color: purple;
}*/
h1,h2,h3,h4,h5,h6{
    font-family: 'Monserrat';
	margin: 0.4vw 0px;
}

h1{
	font-size: clamp(16px, 1vw, 40px);
} h2{
	font-size: clamp(16px, 1vw, 30px);
}
h3{
	font-size: clamp(14px, 1vw, 26px);
} h4{
	font-size: clamp(13px, 1vw, 24px);
}
h5{
	font-size: clamp(10px, 1vw, 13px);
} h6{
	font-size: clamp(9px, 1vw, 11px);
}
p, a, em{
	font-size: clamp(7px, 1vw, 16px);
}

em{
    font-family: 'Monserrat';
	margin: 5px 10px; 
}

input[type="button"] {
  border-radius: 5%;
  color: white;
  height: 100%;
  width: 20%;
  border: none;
}

/*clases*/

/*CLASES DE USO GENERAL*/
/*PARA ORDENAR*/
.horizontal{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
/*BOTON FLOTANTE PARA LLEGAR AL TOP*/
.flechita_subir{
	background-color: rgb(221, 183, 16); 
	width: 3em; 
	height: 3em; 
	position: fixed; 
	bottom: 2em; 
	right: 2em; 
	border-radius: 7px; 
	border: 0px; 
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
}
/*FLECHAS PARA SIGUENTE Y ANTERIOR*/
.flechita{
	display: block;
	transform: scaleX(0.5); 
	color: black;
	font-size: 10vw;
	height: 100%;
	padding-top: clamp(60px, 1vw, 120px)
}

.flechita:hover{
	color:rgb(255, 255, 255);
	cursor: pointer;
}
/*PARA LOS TITULOS*/
.seccion_titulo{
	margin: 1em 0px;
}
/*FONDOS*/
.fondo_degradado{
	width: 100%; 
	background-color: rgba(0, 48, 73, 1);
	display: flex; 
	justify-content: space-between;
	padding: 0px;
	margin: 0px;
}
/*NAVBAR SUPERIOR*/
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 200px;
	min-height: 25px;
	background: #EAE2B7;
	color: black;
	padding: 0px 0px;
	display: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.navbar.active {
	display: flex;
	justify-content: space-between;
}

/*CATALOGO*/
/*PARA FILTRO(S)*/
.filtro{
	width: 5vh; 
	min-width: 28px;
	height: 100%;
	margin: 0% 0.5%;
}

.filtro div{
	height: 20%;
	border: 2px solid; 
	margin: 10% 0% 0% 0%; 
	background-color: white;
}

.filtro:hover{
	background-color: rgba(255, 255, 255, 0.497);
	border: 5px solid rgba(255, 255, 255, 0.145);
}

.filtro:hover div{
	background-color: rgba(0, 47, 73, 0.688);
}
/*PARA LOS PRODUCTOS (PINTURAS, IMPERMEABILIZANTES, ETC)*/
.etiquetitas{
	width: 23vw;
	height: 20vw;
	min-height: 150px;
	background-color: white;
	margin: 20px 0px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
	color: black;
	text-align: center;
}

.etiquetitas h4{
	width: 100%;
	font-size: clamp(10px, 1vw, 24px);;
}
/*EL DIV EN QUE VA LA IMAGEN*/
.ejemplo{
	border-radius: 20px;
	background-size: 100% 100%;
	width: 80%;
	height: 75%;
	margin: 0px 10%;
}
/*DIV DE LAS SECCIONES*/
.seccion_bloque{
	width: 30vw; 
	height: 17vw;
	min-height: 120px;
	background-color: rgba(0, 48, 73, 0.5);
	margin-bottom: 10px;
	text-align: center;
}

/*DESCRIPCION*/
/*LOS DIV*/
.Tipo_Elemento{
	width: 20vw; 
	height: 30vw;
	min-width: 110px;
	min-height: 100px;
	max-height: 250px;
	background-color: rgba(0, 48, 73, 0.5);
	color: black;
}
/*LA DATA DETRAS DE TIPO_ELEMENTO*/
.Caracteristicas {
	height: 30vw;
	width: 20vw;
	min-width: 110px;
	min-height: 130px;
	background-color: transparent;
	color: transparent;
	margin: 2em 0px;
}

.Caracteristicas:hover{
	width: 20vw; 
	height: 50vw;
	max-height: 500px;
	min-height: 250px;
	border-bottom-right-radius: 7%;
	border-bottom-left-radius: 7%;
	background-color: rgb(255, 255, 255);
}

.Caracteristicas:hover h3{
	color: black;
	text-align: center;
	width: 100%;
	font-size: clamp(11px, 1vw, 26px);
}

.Caracteristicas:hover p{
	color: black;
	text-align: center;
	width: 100%;
	font-size: clamp(7px, 1vw, 16px);
}

/*RESULTADOS*/
/*EL DIV DEL FONDO*/
.ResultadosDiv {
	height: 20vw;
	min-height: 150px;
	width: 30%;
	margin: 1em 0px;
	border-radius: 7%;
	overflow: hidden;
    background-size: 100% 100%; 
    background-position: center;
}
/*EL DIV HIJO DE RESULTADOS DIV*/
.ResultadosImg {
	display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.ResultadosDiv:hover .ResultadosImg{
	opacity: 0;
}

/*SERVICIOS*/
/*EL DIV QUE LOS CONTIENE*/
.Servicios{
	background-color: rgba(255, 255, 255, 0.39);
	width: 100%;
}
/*PARA USAR HOVER EN LOS SERVICIOS*/
.Open{
	color: black;
}

.Open h3{
	margin-bottom: 0px;
	margin-left: 1em;
	border-bottom: solid black 2px;
	border-bottom-right-radius: 15px;
	background-color: rgba(0, 0, 0, 0.125);
	margin-top: 1em;
}

.Open p{
	margin: 0px;
	margin-top: 0.5em;
	margin-left: 2em;
	height: 0%;
	color: transparent;
	position: absolute;
	font-size: 0px;
}

.Open:hover p{
	font-size: clamp(9px, 1vw, 16px);
	margin: 0px;
	position: relative;
    color: black;
    background-color: transparent;
} 

.Open:hover h3 {
    background-color: transparent;
}

/*INICIO*/
/*SERVICOS*/
.ServiciosImg{
	width: 28vw; 
	min-width: 150px;
	height: 100%;
	background-size: 100% 100%;
	border-radius: 20%; 
	display: flex; 
	justify-content: left;
}

.ServiciosImg div{
	width: 100%; 
	height: 100%;
	background-size: 100% 100%;
	border-radius: 20%; 
	padding-top: clamp(10px, 1vw, 20px);
	padding-left: clamp(10px, 1vw, 25px);
	text-align: center;
}

.ServiciosImg p{
	width: 95%;
	color: transparent;
}

.ServiciosImg h1{
	width: 95%;
	color:rgba(240, 255, 255, 0.532);
}

.ServiciosImg:hover div{
	width: 100%; 
	height: 100%; 
	background: linear-gradient(to left, rgba(228, 111, 15, 0.5), rgba(255, 191, 139, 0.5));
	border-radius: 20%;
	padding-top: clamp(10px, 1vw, 20px);
	padding-left: clamp(10px, 1vw, 25px);
	text-align: center;
}

.ServiciosImg:hover p{
	width: 95%;
	line-height: 2;
	color: white; 
}

.ServiciosImg:hover h1{
	width: 95%;
	line-height: 1;
	margin-bottom: 1em;
	color: white; 
}

.navtext{
	padding-left: 0vw; 
	padding-right: 0vw; 
	font-size: clamp(12px, 2vw, 25px);
	color: black;
	text-decoration: none;
}

/*Ids*/
#resumen{
	height: 37vw; 
	width: 100%;
	min-height: 300px;
	background: linear-gradient(to bottom, rgba(228, 111, 15, 1), rgba(82, 44, 13, 0.2)); 
	background-size: 100% 100%;
	border-bottom-left-radius: 2%; 
	border-bottom-right-radius: 3%;
	margin: 0px;
	padding: 1px  0px 0px 0px;
}

#filtros{
	Position: fixed; 
	top: 160px; 
	left: 3.5em; 
	background: linear-gradient(to bottom, #FFCB9D, #997A5E);
	border: 2px solid rgba(86, 86, 86, 0.263);
	border-radius: 12px;
}

#filtros h4{
	margin: 10px 1em;
}