@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding: 0;
	--negro: #36454F;
	--blanco: #fafcfb;
	--rojo: #FF3C35;
	--rojo2: #FF5757;
	--naranja1: #FF593E;
	--naranja2: #FF3C35;
	--naranja3: #FF6942;
	--naranja4: #FF8A4C;
	--gris: #e9ecef;
	--azul: #00949e;
	
	--width: calc(100% - 48px);
	--maxWidth: 1200px;
	--med: 36px;
}

body {
	font-family: 'Inter';
	font-weight: normal;
	color: var(--negro);
	background: var(--blanco);
	line-height:1.4;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 5.1em;
}
h2 {
	line-height:1;
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 2.1em;
}
h3 {
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 1em;
}
h4 {
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 2.1vh;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Inter Bold';
	/*font-size:1.11em;*/
	font-size:2.25vh;
	border-radius: 0 !important;
	cursor: pointer !important;
	border: none;
	transition: all 0.6s ease-in-out;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p, ul {
	font-size:1em;
}
p b,
p em {
	font-family: 'Inter Bold';
	font-weight: normal;
}

::selection {
	color: var(--blanco);
	background: var(--rojo);
}
::-moz-selection {
	color: var(--blanco);
	background: var(--rojo);
}

/* --------------------------- full --------------------------- */

#superContainer {
    height: 100%;
    position: relative;
	-ms-touch-action: none; 
}
.section {
    position: relative;
}
.slide, .slidesContainer {
    height: 100% !important;
    display: block;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height:100%;
}
#fullpage {
	overflow:hidden;
}

.section,
.section .slide,
.section .tableCell{
    height: auto !important;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}

/* --------------------------- css --------------------------- */

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	background: var(--blanco);
	transition: all ease-in-out 0.6s;
	border-bottom: solid 1px var(--gris);
	z-index: 99;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

header .inter div:nth-child(2),
header .inter ul {
	padding: 9px 0;
}
header .inter div img {
	height: 48px;
	margin: 21px 0;
	transition: all 0.6s ease-in-out;
}
header .inter .menu {
	position: relative;
	display: flex;
	gap: 30px;
	justify-content: flex-end;
}
header .inter .menu a {
	font-size: 0.9em;
	position: relative;
	text-transform: capitalize;
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--rojo);
	position: absolute;
	left: 50%;
	bottom:-6px;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter .menu a:hover::after,
header .inter .menu a.active::after {
	width: 100%;
}
header .inter .menu a:hover,
header .inter .menu a.active {
	color: var(--verde);
}

header .inter ul {
	list-style-type: none;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

.btn-menu {
	width: 42px;
	height:42px;
	background: var(--blanco) !important;
	position: relative;
	display: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--negro);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--negro);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* active */
.btn-menu.active span {
	background: none;
}
.btn-menu.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.btn-menu.active span::after {
	bottom:0;
	transform: rotate(-45deg);
}
header.active .btn-menu {
	width: 24px;
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	color: var(--blanco);
	background: var(--negro);
	padding: 141px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.3em; /* ? */
	display: block;
	margin: 0 0 30px;
	color: var(--blanco);
	position: relative;
	opacity: 0.6;
}
#openmenu a.active {
	color: var(--naranja4);
	opacity: 1;
}
#openmenu a::after {
	content: '';
	width: 12px;
	height:12px;
	background: var(--rosa);
	position: absolute;
	top: 50%;
	left:12px;
	transform: translate(0,-50%);
	border-radius: 50px;
	transition: all 0.6s ease-in-out;
	opacity: 0;
}
#openmenu a.active::after {
	opacity: 1;
}
#openmenu div:last-child {
	direction: flex;
	padding: 24px 0 0;
}
#openmenu div:last-child a {
	font-size: 0.9em;
	margin: 0 9px;
	display: inline-block !important;
	opacity: 1;
}
#openmenu div:first-child a {
	font-family: 'Inter Bold';
	text-transform: uppercase;
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	top: -100%;
	left:0;
	background-image: linear-gradient(to right, var(--rojo), var(--naranja3));
	animation: gone 1.2s;
	pointer-events: none !important;
	z-index: 66;
}
@-webkit-keyframes gone {
	0% {
		top: 0;
	}
	42% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}
@-moz-keyframes gone {
	0% {
		top: 0;
	}
	42% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}
@keyframes gone {
	0% {
		top: 0;
	}
	42% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}

.section {
	position: relative;
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}

.bg-gris {
	background: var(--gris);
	z-index: 3;
}
.bg-azul {
	background: var(--azul);
	z-index: 3;
}

.btn {
	width: auto;
	font-family: 'Inter';
	font-size: 0.9em;
	padding:12px 30px;
	position: relative;
	display: inline-block;
	border: solid 1px var(--rojo2);
	border-radius: 6px !important;
}
.btn:hover {
	color: var(--blanco);
	background: var(--naranja2);
}
.btn.btnRojo {
	color: var(--blanco);
	background: var(--rojo2);
}
.btn.btnRojo:hover {
	color: var(--blanco);
	background: var(--negro);
}

.btns {
	position: relative;
	display: flex;
	gap: 18px;
}

#portada {
	padding:120px 0 0;
	position: relative;
	display: flex;
	gap: 30px;
	align-items: center;
	overflow: hidden;
}
#portada > div {
	width: 50%;
	position: relative;
}
figure {
	overflow: hidden;
}
#portada h1 {
	margin: 0 0 42px;
	animation-duration: 1.5s;
	animation-delay: 1.2s;
}
#portada p {
	animation-duration: 1.5s;
	animation-delay: 1.5s;
}
#portada .btns {
	margin: 42px 0 0;
	animation-duration: 1.5s;
	animation-delay: 1.8s;
}

#portada .imagen {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
#portada .imagen img {
	max-width: 36%;
	margin: 0 0 -6px;
	transition: all 0.6s ease-in-out;
	animation-duration: 1.5s;
	z-index: 3;
}
#portada .imagen img:hover {
	transform: scale(1.2);
}
#portada .imagen img:nth-child(1),
#portada .imagen img:nth-child(3) {
	position: absolute;
	bottom: 0;
	z-index: 1;
}
#portada .imagen img:nth-child(1) {
	left: 0;
	animation-delay: 1.5s;
}
#portada .imagen img:nth-child(2) {
	animation-delay: 1.2s;
}
#portada .imagen img:nth-child(3) {
	right: 0;
	animation-delay: 1.8s;
}

#portaGiro {
	position: absolute;
	top:  24%;
	right:0;
	animation-duration: 1.5s;
	animation-delay: 2.4s;
	pointer-events: none;
	z-index: 0;
}
.giro {
	font-family: 'Inter';
	font-size: 0.6em;
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
	width: 120px;
	height:0;
	padding:0 0 120px;
	border-radius: 50%;
	color: var(--rojo);
	animation: spinZ 20s linear infinite;
	text-align: center;
}
.giro span {
	position: absolute;
	display: inline-block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-transform: uppercase;
	font-size: 0.9em;
	transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}
@keyframes spinZ {
	0% {
		transform: rotateZ(360deg);
	}
	100% {
		transform: rotateZ(0deg);
	}
}

.tit {
	padding:90px 0 42px;
}
.tit.cntr {
	text-align: center;
}
.tit h2 {
	animation-duration: 1.5s;
}
.tit h2.blco {
	color: var(--blanco);
}

.puntos {
	position: relative;
	display: flex;
	gap: 60px;
	margin: 30px auto 90px;
	overflow: hidden;
}
.puntos .punto {
	width: 25%;
	text-align: center;
	color: var(--naranja1);
	display: flex;
	flex-direction: column;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.puntos .punto:nth-child(2) {
	color: var(--naranja2);
	animation-delay: 1.2s;
}
.puntos .punto:nth-child(3) {
	color: var(--naranja3);
	animation-delay: 1.8s;
}
.puntos .punto:nth-child(4) {
	color: var(--naranja4);
	animation-delay: 2.4s;
}
.puntos .punto h3 {
	text-transform: uppercase;
	margin: 0 0 30px;
}
.puntos .punto > p {
	margin: 0 0 42px;
}
.puntos .punto > img {
	width: 50%;
	margin: auto auto 0;
}
.puntos .punto > circle {
	width: 42px;
	height:0;
	padding:0 0 42px;
	position: relative;
	border-radius: 50%;
	margin: auto auto 0;
	background: var(--naranja1);
}
.puntos .punto:nth-child(2) > circle {
	background: var(--naranja2);
}
.puntos .punto:nth-child(3) > circle {
	background: var(--naranja3);
}
.puntos .punto:nth-child(4) > circle {
	background: var(--naranja4);
}
.puntos .punto > circle img {
	width: calc(100% - 18px);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

#owl {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel {
	width: 100%;
	max-width: calc(100vw - 60px);
	position:relative;
	display:block;
	z-index: 3;
	cursor: grab;
	margin: 48px auto;
	text-align: center;
	overflow: hidden;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}
.owl-carousel .item {
	width: 100%;
	margin: 0 auto;
	padding:30px 20%;
	position: relative;
	color: var(--blanco);
	text-align: left;
	z-index: 1;
}
.owl-carousel .item h3 {
	font-size: 1.5em;
	font-family: 'Inter';
	margin: 0 0 30px;
}
.owl-carousel .owl-item.active h3 {
	animation: fadeIn ease-in-out 1.5s 0.3s both;
}
.owl-carousel .owl-item.active p {
	animation: fadeInUp ease-in-out 1.5s 0.3s both;
}

nav {
	width: 48px;
	position: absolute;
	top: 50%;
	right:0;
	transform: translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	z-index: 9;
}
nav button {
	width: 48px;
	height:0;
	padding:0 0 42px;
	background: var(--negro);
	position: relative;
}
nav button span {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	color: var(--blanco);
}

.cinta {
	color: var(--blanco);
	padding:42px 0 90px;
}
.cinta span {
	font-size: 42px;
}

.barra {
	padding:42px 0;
	text-align: center;
}
.barra.add {
	padding:180px 0 60px;
}
.barra.esp {
	padding:90px 0 0;
}
.barra h2 {
	font-size: 2.4em;
	animation-duration: 1.5s;
}
.barra .descripcion {
	padding:42px 120px;
}
.barra.mns {
	background: var(--naranja4);
}
.barra.mns h2 {
	font-size: 1.8em;
}
.barra.mns h2 big {
	display: block;
	color: var(--blanco);
	margin: 0 0 24px;
}
.barra.error {
	background: var(--rojo);
}
.barra.error figure {
	overflow: visible;
}
.barra.error .alerta {
	color: var(--blanco);
	animation-duration: 1.5s;
}

.portaContacto {
	margin: 42px auto;
	padding:42px;
	background: var(--blanco);
}
.esp > .portaContacto {
	margin:0 auto;
	border: solid 42px var(--gris);
	border-left: none;
	border-right:none;
}
.titulo {
	margin: 0 0 42px;
}
.titulo h2 {
	color: var(--rojo);
}

.cuadros {
	position: relative;
	display: flex;
	gap: 42px;
}
.cuadros form,
.cuadros > div {
	width: 50%;
	animation-duration: 1.3s;
}
.cuadros form div {
	width: 100%;
	position: relative;
	display: flex;
	gap: 24px;
	margin: 18px 0 42px;
}
.cuadros form div input,
.cuadros form div textarea {
	width: 100%;
	font-family: 'Inter';
	font-size: 0.9em;
	border: none;
	border-bottom: solid 1px var(--negro);
	padding:0 0 15px;
	background: none;
	transition: all 0.3s ease-in-out;
}
.cuadros form div input:focus,
.cuadros form div textarea:focus {
	border-color: var(--naranja4);
}
.cuadros form div textarea {
	resize: none;
	min-height: 66px;
}

.cuadros form .send {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
}
.cuadros form .send button {
	display: block;
}
.cuadros form .send div {
	height: 100%;
	position: relative;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	align-items: flex-end;
}
.cuadros form .send div span {
	font-size: 1.3em;
	color: var(--naranja1);
}

.cuadros > div iframe {
	width: 100%;
	height:100%;
	border-radius: 9px;
}

.box {
	position: relative;
}
.boxRojo {
	color: var(--blanco);
	background: var(--rojo2);
}
.box main {
	z-index: 3;
}
.box main .texto {
	padding:90px calc(50% + 42px) 90px 0;
}
.box2 main .texto {
	padding:90px 0 90px calc(50% + 42px);
}
.box main .texto h2 {
	font-size: 2.7em;
	margin: 0 0 60px;
	animation-duration: 1.5s;
}
/*.box main .texto h2.esp {
	text-indent: -60px;
	padding:0 0 0 60px;
}*/
.box main .texto h3 {
	font-size: 2.1em;
	margin: 60px 0 42px;
	animation-duration: 1.5s;
}
.box main .texto figure:first-child h3 {
	margin: 0 0 42px;
}
.box main .texto p {
	animation-duration: 1.5s;
}
.box .imagen {
	width: 50%;
	height:100%;
	position: absolute;
	top:  0;
	right:0;
	overflow: hidden;
	animation-duration: 1.5s;
	animation-delay: 0.9s;
	z-index: 1;
}
.box .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.box #portaGiro {
	transform: translateY(-50%);
	z-index: 9;
}

.box2 .imagen {
	right: 50%;
}

.box ul {
	list-style: none;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.box ul li {
	margin: 0 0 30px;
	padding:0 0 0 60px;
	position: relative;
}
.box ul li::after {
	font-family: 'icomoon';
	content: "\e906";
	font-size: 30px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: var(--naranja1);
}
.box ul li:last-child {
	margin: 0;
}

.bloques {
	padding:90px 120px;
	display: flex;
	gap: 42px 0;
	flex-wrap: wrap;
	justify-content: space-between;
}
.bloques a {
	width: calc(50% - 21px);
	padding:60px;
	color: var(--blanco);
	background: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	animation-duration: 1.5s;
}
.bloques a::after,
.bloques a::before {
	content: '';
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	background: var(--negro);
	z-index: -3;
}
.bloques a::before {
	background: var(--rojo2);
	transition: all 0.6s ease-in-out;
	z-index: -1;
}
.bloques a:nth-child(1)::before,
.bloques a:nth-child(4n)::before,
.bloques a:nth-child(4n+1)::before {
	background: var(--naranja3);
}
.bloques a:hover::before {
	height:0;
}

.valores {
	position: relative;
	display: flex;
	gap: 60px;
	margin: 60px auto 30px;
	overflow: hidden;
	flex-wrap: wrap;
	justify-content: center;
}
.valores .valor {
	width: calc(33.3% - 54px);
	text-align: center;
	color: var(--naranja1);
	display: flex;
	flex-direction: column;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.valores .valor:nth-child(2n) {
	animation-delay: 0.9s;
}
.valores .valor:nth-child(2n+1) {
	animation-delay: 1.2s;
}
.valores .valor:nth-child(2) {
	color: var(--naranja1);
}
.valores .valor:nth-child(3) {
	color: var(--naranja2);
}
.valores .valor:nth-child(4) {
	color: var(--naranja3);
}
.valores .valor:nth-child(5) {
	color: var(--naranja4);
}

.valores .valor img {
	width: 42px;
	display: block;
	margin: 0 auto;
}
.valores .valor h3 {
	display: block;
	margin: 30px auto;
	padding:6px 9px;
	color: var(--blanco);
	background: var(--rojo);
	text-transform: uppercase;
}
.valores .valor:nth-child(2) h3 {
	background: var(--naranja1);
}
.valores .valor:nth-child(3) h3 {
	background: var(--naranja2);
}
.valores .valor:nth-child(4) h3 {
	background: var(--naranja3);
}
.valores .valor:nth-child(5) h3 {
	background: var(--naranja4);
}

footer {
	background-image: linear-gradient(to right, var(--rojo), var(--naranja3));
	padding:60px 0;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto 24px;
	text-align: center;
}
footer .inter img {
	width: 300px;
	margin: 0 auto 60px;
}
footer .inter > h4 {
	color: var(--blanco);
	margin: 0 0 18px;
}
footer .inter > a {
	font-size: 0.75em;
	display: block;
	color: var(--blanco);
	margin: 0 0 18px;
}
footer .inter > a:hover {
	text-decoration: underline;
}
footer .inter:last-child {
	margin: 48px auto 0;
	display: flex;
	justify-content: space-between;
}
footer .inter:last-child p {
	color: var(--blanco);
	font-size: 0.75em;
}
footer .inter:last-child p a {
	font-size: 1.5em;
	color: var(--blanco);
	margin: 0 0 0 6px;
}
footer .inter:last-child .redes {
	position: relative;
	display: flex;
	gap: 12px;
}
footer .inter:last-child .redes a {
	color: var(--blanco);
	font-size: 1.2em;
}

@media screen and (max-width:666px) {
	
	html {
		scroll-padding: 30px;
		--med: 30px;
	}
	
	p {
		font-size: 0.9em;
	}
	
	h1 {
		font-size: 1.9em;
	}
	h2 {
		font-size: 1.6em;
	}
	
	h3 {
		font-size: 1.3em;
	}
	
	header .inter div img {
		height: 36px;
		margin: 24px 0 21px;
	}
	header .menu a {
		display: none;
	}
	.btn-menu {
		display: inline-block;
	}
	
	.btn {
		font-size: 0.84em;
		padding:9px 24px;
	}

	#portada {
		padding:150px 0 0;
		gap: 0;
		flex-wrap: wrap;
	}
	#portada > div {
		width: 100%;
	}
	#portada h1 {
		margin: 0 0 30px;
	}
	#portada .btns {
		margin: 30px 0 0;
	}

	#portada .texto {
		z-index: 33;
	}
	#portada .imagen {
		margin: -24px 0 0;
	}
	#portada .imagen img {
		margin: 0 0 -3px;
	}

	#portaGiro {
		top: 18%;
	}
	.giro {
		font-size: 0.48em;
		width: 99px;
		padding:0 0 99px;
	}
	.giro span {
		font-size: 0.9em;
	}

	.tit {
		padding:75px 0 36px;
	}

	.puntos {
		gap: 90px;
		margin: 36px auto 75px;
		flex-wrap: wrap;
	}
	.puntos .punto {
		width: 100%;
	}
	.puntos .punto:nth-child(2),
	.puntos .punto:nth-child(3),
	.puntos .punto:nth-child(4) {
		animation-delay: 0.6s;
	}
	.puntos .punto h3 {
		margin: 0 0 21px;
	}
	.puntos .punto > p {
		margin: 0 0 36px;
	}
	.puntos .punto > circle {
		width: 36px;
		padding:0 0 36px;
	}

	.owl-carousel {
		margin: 30px auto;
	}
	.owl-carousel .item {
		padding:24px 30px;
	}
	.owl-carousel .item h3 {
		font-size: 1.3em;
		margin: 0 0 24px;
		opacity: 0.9;
	}

	nav {
		width: calc(100vw - 54px);
		top:  100%;
		right:100%;
		transform: translate(100%,100%);
		justify-content: flex-end;
	}

	.cinta {
		padding:42px 0 60px;
		margin: -30px auto 0;
	}

	.barra {
		padding:39px 0;
	}
	.barra.add {
		padding:150px 0 60px;
	}
	.barra.esp {
		padding:75px 0 0;
	}
	.barra h2 {
		font-size: 1.5em;
	}
	.barra .descripcion {
		padding:39px 18px;
	}

	.portaContacto {
		margin: 24px auto;
		padding:24px;
		background: var(--blanco);
	}
	.esp > .portaContacto {
		border: solid 30px var(--gris);
		border-left: none;
		border-right:none;
	}
	.titulo {
		width: 100%;
		margin: 0 0 30px;
	}

	.cuadros {
		gap: 30px;
		flex-wrap: wrap;
	}
	.cuadros form,
	.cuadros > div {
		width: 100%;
	}
	.cuadros form div {
		width: 100%;
		position: relative;
		display: flex;
		gap: 30px;
		margin: 18px 0 30px;
		flex-wrap: wrap;
	}

	.cuadros form .send {
		justify-content: center;
		flex-wrap: wrap;
	}
	.cuadros form .send div {
		gap: 24px;
		justify-content: center;
		padding:24px 0 0;
	}

	.cuadros > div {
		height: 69vh;
	}
	
	.box {
		display: flex;
		flex-wrap: wrap;
	}
	.box main {
		order: 2;
	}
	.box main.esp {
		order: 1;
	}
	.box main .texto {
		padding:75px 0;
	}
	.box2 main .texto {
		padding:75px 0;
	}
	.box main .texto h2 {
		font-size: 1.8em;
		margin: 0 0 42px;
	}
	/*.box main .texto h2.esp {
		text-indent: -48px;
		padding:0 0 0 48px;
	}*/
	.box main .texto h3 {
		font-size: 1.5em;
		margin: 42px 0 39px;
	}
	.box main .texto figure:first-child h3 {
		margin: 0 0 39px;
	}

	.box .imagen {
		width: 100vw;
		height:42vh;
		position: relative;
		display: block;
		order: 1;
	}

	.box #portaGiro {
		transform: translateY(-50%);
		order: 1;
	}

	.box2 .imagen {
		right: 0;
	}

	.box ul li {
		padding:0 0 0 48px;
	}
	.box ul li::after {
		font-size: 24px;
	}

	.bloques {
		padding:75px 18px;
		justify-content: center;
	}
	.bloques a {
		width: 100%;
		padding:24px 39px;
		font-size: 0.9em;
	}

	.valores {
		position: relative;
		display: flex;
		gap: 60px;
		margin: 60px auto 30px;
		overflow: hidden;
		flex-wrap: wrap;
		justify-content: center;
	}
	.valores .valor {
		width: 100%;
		text-align: center;
		color: var(--naranja1);
		display: flex;
		flex-direction: column;
		animation-duration: 1.5s;
		animation-delay: 0.6s;
	}

	.valores .valor h3 {
		font-size: 1em;
		margin: 24px auto;
	}

	footer .inter img {
		width: 180px;
		margin: 0 auto 42px;
	}
	footer .inter > a {
		font-size: 0.81em;
	}
	footer .inter:last-child {
		justify-content: center;
		flex-wrap: wrap;
		gap: 30px;
	}
	footer .inter:last-child .redes {
		gap: 24px;
	}
	
}