@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*
font-family: "Montserrat", sans-serif;
*/
/* general */
.color-fondo {
	background-color: #F8F8F8;
}
.barraVerde {
	background: var(--color-verde-claro);
	color: var(--color-verde-claro);
	width: 140px;
	height: 4px;
	margin: 0 0 0 0;
	border: none;
}
.font-size25, .font-size31, .font-size11 {
	color: var(--color-aguamarina);
	text-transform: uppercase;
	text-align: center;
	display: block;
	width: 100%;
}
.font-size25 {
	font-size: lamp(1.125rem, 0.979rem + 0.778vi, 1.563rem);
}
.font-size31 { 
	font-size: clamp(1.563rem, 1.438rem + 0.667vi, 1.938rem);
	margin-bottom: 9px;
}
.font-size11 {
	color: #444;
	font-size: 11px;
}
/* SECCION HERO */
#hero {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin: 0 0 39px 0;
}
#slider {
	background: var(--color-gris-claro);
	width: 64.05638214565388%; /* w: 818px; */
	height: auto;
	aspect-ratio: 409 / 245;
}
#slider li {
	display: flex;
	width: 100%;
	height: auto;
	overflow: hidden;
	border: solid 1px var(--color-negro1A);
	border-radius: 15px;
	position: relative;
	z-index: 1;
}
#slider li img {
	position: relative;
}
#slider li section {
	width: 395px;
	margin: 9.315%;
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
}
#slider li section h1, #slider li section h2 {
	color: var(--color-negro);
	text-transform: uppercase;
	filter: drop-shadow(0 0 3px #F1F1F177) drop-shadow(1px 1px 3px #F1F1F177) drop-shadow(-1px -1px 3px #F1F1F177);
}
#slider li section h1 {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.875rem, 0.525rem + 1.6vi, 2.375rem);
	line-height: clamp(1.688rem, 0.337rem + 1.6vi, 2.188rem);
	margin: 0 0 2px 0;
}
#slider li section h2 {
	font-family: "Open Sans", sans-serif;
	font-size: clamp(1.313rem, 0.75rem + 0.667vi, 1.5rem);
	line-height: clamp(1.563rem, 1rem + 0.667vi, 1.75rem);
	font-weight: 500;
	margin: 0 0 17px 0;
}
#slider li section p {
	color: #4D4D4D;
	font-family: "Roboto Condensed", sans-serif;
	font-size: .875rem;
	line-height: 18px;
	margin: 14px 0 0 0;
}
#slider li section a {
	background: var(--color-verde-claro);
	color: var(--color-blanco);
	font-family: "Roboto Condensed", sans-serif;
	font-size: .875rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 172px;
	height: 37px;
	border-radius: 6px;
	margin-top: 5%;
	/*
	position:absolute;
	bottom: 128px;
	*/
}
#slider li section a:hover {
	letter-spacing: 1px;
}

#heroCol {
	width: 34.455755677368835%; /* w: 440px */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#heroCol a {
	background-color: var(--color-gris-claro);
	color: var(--color-negro);
	border: solid 1px var(--color-negro1A);
	border-radius: 15px;
}
#heroCol a:hover {
	background-color: #F4ECC1;
}
#heroCol a section {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	filter: drop-shadow(0 0 3px #F1F1F188) drop-shadow(1px 1px 3px #F1F1F188) drop-shadow(-1px -1px 3px #F1F1F188);
}
#heroCol a:first-child section {
	max-width: 260px;
}
#heroCol a:last-child section {
	max-width: 190px;
}
#heroCol a h3, #heroCol a h4 {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
}
#heroCol a h3 {
	font-size: clamp(1.25rem, 1.083rem + 0.889vi, 1.75rem); /* 28 -> 20 */
}
#heroCol a h4 {
	font-size: 18px;
}
.heroParrafito {
	font-family: "Roboto Condensed", sans-serif;
	font-size: .875rem;
	width: 90%;
}
.heroColfont20, .heroColfont16 {
	text-transform: uppercase;
}
.heroColfont20 {
	font-size: 20px;
}
.heroColfont16 {
	font-size: 16px;
}

/* SECCION BLOQUES */
#bloqueSoluciones {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	margin: 23px 0 75px 0;
}
.blockSol {
	color: var(--color-negro);
	font-size: 1rem;
	line-height: 1rem;
	display: block;
	width: 143px;
	margin: 0 0 10px 0;
}
.blockSol section {
	background: var(--color-blanco);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 143px;
	aspec-ratio: 1 / 1;
	margin: 0 0 16px 0;
	border: solid 1px #666;
	border-radius: 6px;
	overflow: hidden;
	transition: all ease-in-out 500ms;
}
.blockSol section img {
	transform: scale(.6);
	transition: all ease-in-out 500ms;
}
.blockSol p {
	text-align: center;
	display: block;
}
.blockSol:hover section {
	transition: all ease-in-out 500ms;
}
.blockSol:hover section {
	border-color: var(--color-amarillo);
}
.blockSol:hover section img {
	transform: scale(.9);
}

/* SECCION FICHAS */
#bannerHome {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	padding: 33px 0;
}
#bannerHome section {
	background: gold;
	border-radius: 10px;
	overflow: hidden;
}
#bannerHome section:first-of-type {
	width: 36.336%;
}
#bannerHome section:last-of-type {
	width: 60.846%;
}
/* SECCION LISTAS DIV */
#homeListas {
	display: flex;
	justify-content: space-between;
	margin: 36px 0 35px 0;
}
#homeListas h4 {
	font-size: 1.1875rem;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	width: auto;
	height: 45px;
	padding: 0 0 11px 0;
	margin: 0 0 35px 0;
	border-bottom: solid 5px var(--color-amarillo);
}
#homeListas section { 
	width: 20.282%;
}
.homeLista { 
	font-family: "Roboto Condensed", sans-serif;
	background: #F8F8F8;
	display: flex;
	margin: 0 0 19px 0;
}
.homeLista:hover section:last-of-type p:first-of-type {
	color: var(--color-rojo);
}
.homeLista section:first-of-type {
	background: var(--color-blanco);
	width: 70px !important;
	height: 70px;
	padding: 10px;
	margin: 0 9px 0 0;
	border: solid 1px #b3b3b3;
	border-radius: 6px;	
}
.homeLista section:last-of-type {
	width: calc(100% - 79px) !important;
	padding: 5px 0 0 0;
}
.homeLista section:last-of-type p:first-of-type {
	color: var(--color-negro);
	font-size: .75rem;
	font-weight: 700;
	margin: 0 0 4px 0;
}
.homeLista section:last-of-type p:last-of-type {
	color: #0071bc;
	font-size: .6875rem;
}

/*  SECCION LISTAS TEXTOS */
#homeListasTextos { 
	color: var(--color-negro);
	font-size: .875rem;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1250px;
	margin: 0 auto 40px auto;
	padding: 4.229% 0 6.422% 0;
	border-top: solid 1px var(--color-gris9);
	border-bottom: solid 1px var(--color-gris9);
}
#homeListasTextos h3 {
	font-size: 1.1875rem;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	height: 27px;
	margin: 0 0 16px 0;
}
#homeListasTextos a {
	color: var(--color-negro);
	display: inline-block;
}
#homeListasTextos a:hover {
	color: var(--color-rojo);
}
#homeListasTextos section {
	width: 23%;
}

/* SECCION PARTNERS */
#partners {
	width: 100%;
	max-width: 1117px;
	margin: 16px auto 0 auto;
	border-top: solid 1px #D6D6D6;
}
#partners section {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: nowrap;
	padding: 24px 5px;
	border-bottom: solid 1px #D6D6D6;
}

/* RESPONSIVOS */
@media only screen and (max-width: 1720px) {
	#homeListas section {
		width: 22%;
	}
}
@media only screen and (max-width: 1750px) {
	#bloqueSoluciones {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.blockSol {
		margin: 0 clamp(10px, 1.7%, 17px) 10px 0;
	}
}
@media only screen and (max-width: 1650px) {
	#slider li section {
		margin: 30px;
	}
	#partners section {
		flex-wrap: wrap;
	}
	#partners section img {
		margin: 10px 30px;
	}
}
@media only screen and (max-width: 1350px) {
	#slider li section {
		width: auto;
	}
	#slider li section h1 {
		font-size: clamp(1.25rem, 0.905rem + 1.151vi, 1.875rem);
		line-height: clamp(1.25rem, 0.905rem + 1.151vi, 1.875rem);
	}
	#slider li section h2 {
		font-size: clamp(1.125rem, 1.021rem + 0.345vi, 1.313rem);
		line-height: clamp(1.125rem, 1.021rem + 0.345vi, 1.313rem);
	}
	#homeListas {
		flex-wrap: wrap;
	}
	#homeListas section {
		width: calc(50% - 20px);
		margin-top: 20px;
	}
	#homeListasTextos {
		padding: 6.229% 0 6.422% 0
	}
	#homeListasTextos li {
		margin: 0 0 5px 0;
	}
}
@media only screen and (max-width: 1200px) {
	#hero {
		flex-wrap: wrap;
	}
	#slider, #heroCol {
		width: 100%;
	}
	#slider li section {
		margin: 9.315%;
	}
	#heroCol {
		flex-direction: row;
		margin: 14px 0 0 0;
	}
	#heroCol a {
		width: calc(50% - 7px);
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	#homeListasTextos {
		flex-wrap: wrap;
		padding-bottom: 0;
	}
	#homeListasTextos section {
		width: 47%;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 1000px) {
	#bannerHome {
		flex-wrap: wrap;
	}
	#bannerHome section:first-of-type, #bannerHome section:last-of-type {
		width: 100%;
	}
	#bannerHome section:first-of-type {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 800px) {
	 #bloqueSoluciones {
		 justify-content: center;
		 margin: 23px 0 45px 0;
	  }
	.blockSol {
		margin: 0 clamp(10px, 2%, 15px) 30px  clamp(10px, 2%, 15px);
	}
	.blockSol section {
		margin: 0 0 10px 0
	}
}

@media only screen and (max-width: 600px) {
	#homeListas {
		margin: 20px 0 35px 0;
	}
	#homeListas h4 {
		height: 60px;
	}
}
@media only screen and (max-width: 550px) {
	#heroCol {
		flex-direction: column;
		margin: 7px 0 0 0;
	}
	#heroCol a {
		width: 100%;
		margin: 7px 0;
	}
	#homeListas section, #homeListasTextos section {
		width: 100%;
	}
}
@media only screen and (max-width: 500px) {
	#slider li section {
		margin: 30px;
	}
	#slider li section p br {
		display: none;
	}
}
@media only screen and (max-width: 450px) {
	#slider {
		aspect-ratio: auto;
		margin-bottom: 30px;
	}
	#slider li section h2 {
		margin: 0 0 10px 0;
	}
	#slider li section p {
		margin: 7px 0 0 0;
	}
	#slider li section a {
		margin-top: 7px;
	}
	 .blockSol {
		margiun: 0 5px 30px 5px;
	}
}

