#portada{
	width: 100%;
	max-width: 1350px;
	margin: 90px 0 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#portada > div{
	width: 50%;
	margin-right: 5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#portada > div > h1{
	color: var(--negro);
    font-size: 2.5em;
    text-align: left;
    font-weight: 700;
    width: 100%;
    margin-bottom: 20px;
}

#portada > div > h1 > span{
	color: var(--naranja);
}

#portada > div > p{
	color: var(--negro);
    font-size: 1.25em;
    text-align: left;
    font-weight: 500;
    line-height: 1.5;
    width: 95%;
    margin-bottom: 20px;
}

#portada > div > p > span{
	font-weight: 700;
}

#portada > div > span{
	border: 2px solid var(--naranja);
	transition: all 0.2s ease;
	padding: 20px 40px;
	box-sizing: border-box;
	border-radius: 5px;
	font-weight: 600;
	color: var(--negro);
	font-size: 1.2em;
	cursor: pointer;
	background: rgba(245, 141, 45, .30);
	text-align: center;
}

#portada > div > span:hover{
	background: rgba(245, 141, 45, .50);
}

#portada > aside{
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#portada > aside > img:first-of-type{
	margin-bottom: 15px;
}

#clientes{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#clientes > h3{
	color: var(--negro);
	font-size: 1.75rem;
	text-align: center;
	max-width: 850px;
	font-weight: 700;
	width: 90%;
}

#clientes > div{
    width: 65%;
    display: flex;
    margin: 35px 0;
    position: static;
}

#clientes > div > div{
	transition-timing-function: linear !important;
	align-items: center;
}

#clientes > div > div > div{
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: .5s;
    transition-property: border, background, transform;
    will-change: transform;
}

.informacion{
	width: 100%;
	max-width: 1350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px 0;
}

.informacion > h2{
	color: var(--negro);
    font-size: 2.5em;
    text-align: center;
    font-weight: 700;
    width: 90%;
    max-width: 750px;
    margin-bottom: 35px;
}

.informacion > h2 > span{
	color: var(--naranja);
}

.informacion > div{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.informacion > div > ul{
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 50%;
	margin-left: 5%;
}

.informacion > div > ul > li{
	width: 95%;
	padding-left: 15px;
	position: relative;
	text-align: left;
	color: var(--negro);
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
}

.informacion > div > ul > li::before{
	content: "\2022 ";
    font-size: 22px;
    width: 10px;
    height: 10px;
    font-weight: 700;
    color: var(--naranja);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    left: 0;
    top: 10px;
}

.informacion > div > ul > li > span{
	font-weight: 700;
}

#cuadros{
	width: 100%;
	max-width: 1350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px 0;
}

#cuadros > h2{
	color: var(--negro);
    font-size: 2.5em;
    text-align: center;
    font-weight: 700;
    width: 90%;
    max-width: 750px;
    margin-bottom: 35px;
}

#cuadros > h2 > span{
	color: var(--naranja);
}

#cuadros > div{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 35px;
}

#cuadros > div > div{
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid var(--naranja);
	border-radius: 25px;
}

#cuadros > div > div > p{
	margin-top: 15px;
	color: var(--negro);
    font-size: 1.05em;
    text-align: center;
    font-weight: 500;
    line-height: 1.15;
    width: 95%;
}

#caracteristicas{
	width: 100%;
	display: grid;
	grid-template-columns: .65fr 1fr;
}

#caracteristicas > aside{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 60px 5%;
	box-sizing: border-box;
	background: var(--gris-fondo);
}

#caracteristicas > aside > a{
	display: flex;
	align-items: center;
	flex-direction: column;
	text-decoration: none;
	margin-bottom: 25px;
	transition: all 0.5s ease;
}

#caracteristicas > aside > a:hover{
	transform: scale(1.015);
}

#caracteristicas > aside > a > img{
	border: 3px solid var(--naranja);
	box-sizing: border-box;
	margin-bottom: 15px;
}

#caracteristicas > aside > a > h5{
	color: var(--blanco);
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.5;
    width: 90%;
    text-align: center;
}

#caracteristicas > aside > span{
	border: 1px solid var(--naranja);
    transition: all 0.2s ease;
    padding: 15px 30px;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: 700;
    color: var(--negro);
    font-size: 1.5em;
    cursor: pointer;
    background: var(--naranja);
    margin-top: 25px;
    text-align: center;
}

#caracteristicas > aside > span:hover{
	background: var(--blanco);
    color: var(--naranja);
}

#caracteristicas > div{
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 60px 5%;
}

#caracteristicas > div > h4{
	color: var(--negro);
  	font-size: 2.5em;
  	font-weight: 700;
  	margin-bottom: 15px;
  	line-height: 1.5;
  	width: 100%;
  	text-align: left;
}

#caracteristicas > div > h4 > span{
	color: var(--naranja);
}

#caracteristicas > div > h3{
	color: var(--negro);
  	font-size: 1.5em;
  	font-weight: 700;
  	margin-bottom: 15px;
  	line-height: 1.5;
  	width: 100%;
  	text-align: left;
}

#caracteristicas > div > ul{
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 30px;
}

#caracteristicas > div > ul > li{
	color: var(--negro);
  	font-size: 1em;
  	font-weight: 500;
  	margin-bottom: 5px;
  	line-height: 1.25;
  	width: 100%;
  	text-align: left;
  	box-sizing: border-box;
  	padding-left: 20px;
  	position: relative;
}
#caracteristicas > div > ul > li::before{
	content: "\02714";
    font-size: .7em;
    font-weight: 700;
    color: var(--naranja);
    position: absolute;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    text-align: center;
    left: 0;
    top: -1px;
}

#caracteristicas > div > ul > li > span{
	font-weight: 700;
}

#indicadores{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px 0;
	max-width: 1350px;
}

#indicadores > h3{
	color: var(--negro);
    font-size: 2.5em;
    text-align: center;
    font-weight: 700;
    width: 90%;
    max-width: 750px;
    margin-bottom: 35px;
}

#indicadores > div{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px;
}

#indicadores > div > div{
	display: flex;
	flex-direction: column;
	align-items: center;
}

#indicadores > div > div > h4,
#indicadores > div > div > p{
	margin-top: 15px;
	color: var(--negro);
    font-size: 1.65em;
    text-align: center;
    font-weight: 700;
    line-height: 1.15;
    width: 90%;
}

#indicadores > div > div > p{
	font-weight: 500;
	font-size: 1.05em;
}

#indicadores > span{
	border: 2px solid var(--naranja);
	transition: all 0.2s ease;
	padding: 20px 40px;
	box-sizing: border-box;
	border-radius: 5px;
	font-weight: 600;
	color: var(--negro);
	font-size: 1.2em;
	cursor: pointer;
	background: rgba(245, 141, 45, .30);
	text-align: center;
	margin-top: 35px;
}

#indicadores > span:hover{
	background: rgba(245, 141, 45, .50);
}

#formulario-contacto{
	width: 100%;
	padding: 45px 0;
	background: rgb(255,255,255);
	background: linear-gradient(315deg, rgba(255,255,255,1) 0%, rgba(254,254,254,1) 41%, rgba(236,236,236,1) 100%);
	display: flex;
	max-width: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#formulario-contacto > h3{
	color: var(--negro);
 	font-size: 2.25em;
 	text-align: center;
 	max-width: 850px;
 	font-weight: 700;
 	margin-bottom: 15px;
 	width: 50%;
}

#formulario-contacto > p{
	color: var(--negro);
 	font-size: 1.5em;
 	text-align: center;
 	font-weight: 500;
 	margin-bottom: 40px;
 	width: 50%;
 	max-width: 615px;
}

#formulario-contacto > form{
	width: 50%;
	display: flex;
	max-width: 500px;
	flex-direction: column;
	align-items: center;
}

#formulario-contacto > form > input{
	width: 100%;
	text-align: left;
	padding: 10px 2.5%;
	box-sizing: border-box;
	border-radius: 7.5px;
	font-size: 1em;
	font-weight: 500;
	color: var(--azul-claro);
	transition: all 0.2s ease;
	border: 1px solid var(--negro);
	margin-bottom: 10px;
	outline: none;
}

#formulario-contacto > form > .verde{
	border: 1px solid #0dcf0d;
}

#formulario-contacto > form > .rojo{
	border: 1px solid #ff3030;
}

#formulario-contacto > form > input::placeholder{
 	color: var(--azul-claro);
 	font-size: 1em;
	font-weight: 500;
	opacity: 1;
	font-family: "OpenSans", serif;
	background: rgba(0, 0, 0, 0);
}

#formulario-contacto > form >  input:focus::placeholder{
 	opacity: 1;
}

#formulario-contacto > form > .positivo{
	border: 3px solid green;
}

#formulario-contacto > form > .negativo{
	border: 3px solid red;
}

#formulario-contacto > form > #form-action{
	width: 100%;
 	text-align: center;
 	padding: 15px 0;
 	background: #b4d7e9;
 	border: 3px solid var(--azul-claro);
 	border-radius: 7.5px;
 	font-weight: 500;
 	color: var(--negro);
 	font-size: 1.1em;
 	transition: all 0.2s ease;
 	cursor: pointer;
 	box-sizing: content-box;
}

#formulario-contacto > form > #form-action:hover{
	background: #6cc3ef;
}

/*Relaciones de aspecto tablet*/
@media screen and (min-width: 750px) and (max-width: 1199px) {
	#portada{
		width: 95%;
		margin-top: 135px;
	}
	#cuadros > div{
		width: 90%;
		grid-template-columns: repeat(2, 1fr);
	}
	#caracteristicas > aside{
		padding: 70px 3%;
	}
	#caracteristicas > aside > img{
		margin-bottom: 70px;
	}
	#indicadores > div{
		width: 90%;
		grid-template-columns: repeat(3, 1fr);
	}
	#formulario-contacto > h3,
	#formulario-contacto > p{
		max-width: none;
		width: 70%;
	}
	
}

/*Relaciones de aspecto movil*/

@media screen and (max-width: 750px) {
	#portada{
		margin-top: 115px;
		width: 95%;
		align-items: center;
		flex-direction: column;
	}
	#portada > div{
		margin-bottom: 35px;
		margin-right: 0;
	}
	#portada > div,
	#portada > aside{
		width: 100%;
	}
	#portada > aside > img:last-of-type{
		display: none;
	}
	#portada > aside > img:first-of-type{
		display: flex;
	}
	.informacion > div{
		flex-direction: column;
		align-items: center;
	}
	.informacion > div > img,
	.informacion > div > ul{
		width: 90%;
	}
	.informacion > div > img{
		margin-bottom: 35px;
	}
	#cuadros > div{
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
	}
	#formulario-contacto{
		width: 100%;
	}
	#caracteristicas{
		grid-template-columns: 1fr;
	}
	#caracteristicas > aside{
		padding: 50px 3%;
	}
	#caracteristicas > aside > img{
		display: none;
	}
	#caracteristicas > aside > img:last-of-type{
		display: flex;
	}
	#indicadores > div{
		width: 90%;
		grid-template-columns: repeat(2, 1fr);
	}
	#formulario-contacto > h3,
	#formulario-contacto > p,
	#formulario-contacto > form{
		max-width: none;
		width: 90%;
	}
}
