@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;
	--marino: #1A2D4B;
	--blanco: #fafcfb;
	--rojo: #E53C27;
	--amarillo: #F6BD15;
	--gris: #393939;
	--grisClaro: #D9D9D9;
	--verde: #00e676;
	
	--width: calc(100% - 48px);
	--maxWidth: 1200px;
	--med: 36px;
	
	background: var(--marino);
}

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

h1 {
	line-height:1;
	font-family: 'Metropolis';
	font-weight: normal;
	font-size: 2.7em;
}
h2 {
	line-height:1;
	font-family: 'Altone Bold';
	font-weight: normal;
	font-size: 2.1em;
}
h3 {
	font-family: 'Altone Bold';
	font-weight: normal;
	font-size: 1.5em;
}
h4 {
	font-family: 'Altone Bold';
	font-weight: normal;
	font-size: 2.1vh;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--marino);
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Altone 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: 'Altone Bold';
	font-weight: normal;
}

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

/* --------------------------- 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(--marino);
	transform: translateY(-100%);
	transition: all ease-in-out 0.6s;
	z-index: 99;
}
header::after {
	content: '';
	width: 100%;
	height:9px;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
	position: absolute;
	top: 100%;
	left:0;
	z-index: -1;
}
header.active {
	transform: translateY(0);
}
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 img {
	height: 42px;
	margin: 27px 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;
	color: var(--blanco);
	position: relative;
	text-transform: capitalize;
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:3px;
	background: var(--amarillo);
	position: absolute;
	left: 50%;
	bottom:-3px;
	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%;
}

.btn-menu {
	width: 42px;
	height:42px;
	background: none;
	position: relative;
	display: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--amarillo);
	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(--amarillo);
	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(--marino);
	background: var(--amarillo);
	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: 'Altone Bold';
	text-transform: uppercase;
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	top: -100%;
	left:0;
	background: var(--blanco);
	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;
}
.section.add {
	margin: 99px 0 0;
}

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

.bg-marino {
	color: var(--blanco);
	background: var(--marino);
	z-index: 3;
}

.btn {
	width: auto;
	font-family: 'Altone';
	font-size: 0.9em;
	padding:12px 30px;
	position: relative;
	display: inline-block;
	background: var(--amarillo);
	border-radius: 2px !important;
}
.btn:hover {
	color: var(--blanco);
	background: var(--naranja2);
}
.btn span {
	margin: 0 0 0 21px;
	vertical-align:top;
}

.btn.btnRojo {
	color: var(--blanco);
	background: var(--rojo2);
}
.btn.btnRojo:hover {
	color: var(--blanco);
	background: var(--marino);
}

#whats {
	width: calc(100% - 48px);
	position: fixed;
	left: 50%;
	bottom:30px;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
	z-index: 9;
}
#whats a {
	pointer-events: visible;
	position: relative;
}
#whats span {
	font-size: 3em;
	color: var(--blanco);
}
#whats span::after {
	color: var(--verde);
}

#portada {
	position: relative;
	overflow: hidden;
	background: var(--marino);
}
#portada video {
	width: 100vw;
	height:100vh;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	opacity: 0.7;
	z-index: 1;
}
#portada main {
	width: 100vw;
	height:100vh;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	z-index: 3;
}
#portada main img {
	width: calc(100% - 72px);
	max-width: 480px;
	margin: 0 auto 24px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portada main h2 {
	width: 100%;
	font-family: 'Altone';
	text-align: center;
	color: var(--blanco);
	animation-duration: 1.3s;
	animation-delay: 1.8s;
}
#portada main h2 b {
	font-family: 'Altone Bold';
}
#portada main h2 span {
	font-size: 0.6em;
	vertical-align: top;
}

#portada .scroll {
	position: absolute;
	left: calc(50% + 7px);
	bottom:60px;
	transform: translateX(-50%);
	text-align: center;
	z-index: 3;
}
#portada .scroll a {
	border: solid 1px var(--blanco);
	border-radius: 50% !important;
	color: var(--blanco);
	margin: 0 auto;
	padding:12px;
	position: relative;
}
#portada .scroll a::after {
	content: '';
	width: 1px;
	height:54px;
	background: var(--blanco);
	position: absolute;
	left: 19px;
	bottom:0;
	transform: translate(0,100%)
}
#portada .scroll a:hover {
	background: var(--amarillo);
}

.boxes {
	padding:48px 0;
}
.box {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.box:nth-child(2n) {
	animation-delay: 1.2s;
}
.boxes .box {
	position: relative;
	display: flex;
	align-items: stretch;
}
.boxes .box:not(:last-child) {
	margin: 0 0 60px;
}
.boxes .box > div {
	position: relative;
}
.texto,
.imagen {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.boxes .box .texto {
	width: 50%;
	margin:48px 0;
	order: 1;
	padding:30px;
	color: var(--blanco);
	background: var(--marino);
	z-index: 3;
}
.boxes .box .texto h1 {
	position: relative;
	margin: 0 0 42px;
}
.boxes .box .texto h1::before {
	content: '';
	width: 30px;
	height:2px;
	background: var(--amarillo);
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-150%,-50%);
	z-index: 3;
}
.boxes .box .texto h2 {
	font-size: 1.8em;
	position: relative;
	margin: 0 0 30px;
	padding:30px 0 0 30px;
}
.boxes .box .texto h2::before {
	content: '';
	width: 60px;
	height:3px;
	background: var(--blanco);
	position: absolute;
	top: calc(50% + 15px);
	left:0;
	transform: translate(-100%,-50%);
	z-index: 3;
}
.boxes .box .texto p {
	text-align: justify;
	text-justify: inter-word;
}
.boxes .box .texto p:not(:last-child) {
	margin: 0 0 24px;
}
.boxes .box .texto p.mini {
	font-size: 0.9em;
	color: var(--amarillo);
}
.box .btn.link {
	font-size: 1.2em;
	padding:0;
	color: var(--blanco);
	background: none;
	margin: 24px 0 0;
}
.box .btn.link:hover {
	color: var(--amarillo);
}

.boxes ul {
	list-style: none;
	padding:0 0 30px;
}
.boxes ul li {
	position: relative;
	padding:0 0 0 30px;
}
.boxes ul li:not(:last-child) {
	margin: 0 0 12px;
}
.boxes ul li::before {
	content: '';
	width: 3px;
	height:3px;
	background: var(--blanco);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index: 1;
}

.boxes .info {
	margin: 15px 0;
}
.box .info .btn.link {
	margin: 9px 0 0;
}

.boxes .box .texto.blnc {
	color: var(--marino);
	background: var(--blanco);
}

.boxes .box .texto.blnc h1 {
	color: var(--amarillo);
}
.boxes .box .texto.blnc h1::before {
	width: 45px;
	height:3px;
	background: var(--marino);
	transform: translate(-150%,-50%);
}

.boxes .box .imagen {
	width: 50%;
	order: 2;
	z-index: 1;
}
.boxes .box .imagen .fondo {
	width: calc(100% + 96px);
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	transform: translateX(-96px);
	overflow: hidden;
}
.boxes .box .imagen .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.boxes .box:nth-child(2n) .texto {
	order: 2;
}
.boxes .box:nth-child(2n) .imagen {
	order: 1;
}
.boxes .box:nth-child(2n) .imagen .fondo {
	transform: translateX(0);
}

.subtitulo {
	text-align: center;
	padding:30px 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.subtitulo.esp::after {
	content: '';
	width: 60px;
	height:2px;
	background: var(--amarillo);
	position: absolute;
	bottom:0;
	left: 50%;
	transform: translate(-50%,50%);
	z-index: 3;
}
.subtitulo h2 {
	color: var(--amarillo);
}

#contacto .subtitulo {
	text-align: left;
	padding:0 0 42px;
	position: relative;
}
#contacto .subtitulo::after {
	content: '';
	width: 60px;
	height:2px;
	background: var(--amarillo);
	position: absolute;
	bottom:30px;
	left:  0;
	z-index: 3;
}
#contacto .subtitulo h2 {
	color: var(--blanco);
}

.valores {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 90px;
	padding:30px 0 60px;
}
.valores .box {
	width: calc(33.3% - 60px);
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.valores .box:nth-child(2n) {
	animation-delay: 1.2s;
}
.valores .box h3 {
	margin: 0 0 15px;
}
.valores .box p {
	text-align: justify;
	text-justify: inter-word;
}

.titulo {
	padding:60px 0 30px 15px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.titulo h2 {
	position: relative;
}
.titulo h2::before {
	content: '';
	width: 40px;
	height:2px;
	background: var(--marino);
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-150%,-50%);
	z-index: 3;
}
.bg-marino .titulo h2::before {
	background: var(--amarillo);
}

.descripcion {
	margin: 30px auto;
}
.descripcion.extra {
	padding:60px 0;
}
.descripcion p {
	padding:0 25%;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

#contacto .descripcion p {
	padding:0;
}
#contacto .descripcion p.alerta {
	color: var(--rojo);
	animation-delay: 1.5s;
}
#contacto .descripcion p.ok {
	padding:24px;
	color: var(--blanco);
	background: var(--verde);
}
#contacto .descripcion p.ok big {
	display: block;
}

.cajas {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding:30px 0 60px; 
}
.cajas .caja {
	width: calc(33.3% - 16px);
	padding:30px;
	color: var(--marino);
	background: var(--blanco);
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.cajas .caja span {
	font-size: 3.6em;
	color: var(--amarillo);
}
.cajas .caja h3 {
	margin: 9px auto 15px;
}

#sectores {
	padding:90px 0 120px;
	position: relative;
	overflow: hidden;
}
#sectores::after {
	content: '';
	width: 100%;
	height:100%;
	position: absolute;
	background: var(--gris);
	top: 0;
	left:0;
	opacity: 0.6;
	z-index: 1;
}
#sectores > .fondo {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 01;
}
#sectores *:not(.fondo) {
	z-index: 3;
}

.logos {
	display: flex;
	gap: 42px;
	align-items: center;
	padding:60px 0;
	flex-wrap: wrap;
}
.logos img,
.logos h3 {
	width: 16.6%;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.logos h3 {
	font-family: 'Altone';
	font-size: 1.3em;
	text-align: center;
	opacity: 0.9;
}
.logos img:nth-child(2n),
.logos h3:nth-child(2n) {
	animation-delay: 1.2s;
}

#portaContacto {
	background-color: var(--marino);
	background: url("../imgs/contacto.png") no-repeat fixed;
	background-size: cover;
	padding:90px 0;
}
#portaContacto main {
	color: var(--blanco);
}
.formulario {
	width: 100%;
	position: relative;
}
.formulario form {
	width: 50%;
	position: relative;
	margin: 0 auto;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.formulario form div:not(:last-child) {
	margin: 0 0 21px;
}
.formulario form input,
.formulario form textarea {
	width: 100%;
	font-family: 'Altone';
	font-size: 1em;
	padding:21px 24px;
	color: var(--marino);
	background: var(--grisClaro);
	border: solid 1px var(--grisClaro);
	opacity: 0.9;
	transition: all 0.3s ease-in-out;
}
.formulario form input:focus,
.formulario form textarea:focus {
	border-color: var(--amarillo);
	opacity: 1;
}
.formulario form textarea {
	min-height: 120px;
	resize: none;
}
.formulario form .send {
	text-align: center;
}

#contacto {
	display: flex;
	justify-content: space-between;
	padding: 150px 0 60px;
}
#contacto .datos {
	width: calc(33.3% - 30px);
}
#contacto .datos > p {
	padding:30px 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#contacto .datos > a {
	width: 100%;
	position: relative;
	display: flex;
	gap: 24px;
	align-items: flex-start;
	color: var(--blanco);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#contacto .datos > a:not(:last-child) {
	margin: 0 0 30px;
}
#contacto .datos > a span {
	font-size: 1.3em;
}
#contacto .datos > a:hover span {
	color: var(--amarillo);
}
#contacto .formu {
	width: calc(66.6% - 30px);
}
#contacto .formulario form {
	width: 100%;
}
#contacto .formulario form .send {
	text-align: left;
}

#portaMapa {
	width: 100vw;
	position: relative;
}
#portaMapa iframe {
	width: 100%;
	height:60vh;
	margin: 0 0 -6px;
}

.portada {
	padding:120px 0;
	text-align: center;
	overflow: hidden;
	background: var(--marino);
}
.portada main {
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 3;
}
.portada h1 {
	color: var(--blanco);
}
.portada img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	opacity: 0.8;
	z-index: 1;
}

.nosotros {
	padding:60px 0;
	display: flex;
	justify-content: space-between;
}
.nosotros > div {
	position: relative;
}
.nosotros .foda {
	width: calc(66.6% - 30px);
}
.nosotros .foda .box {
	width: calc(100% - 30px);
	color: var(--marino);
	background: var(--blanco);
	margin: 0 0 0 30px;
	padding:72px 60px;
	position: relative;
}
.nosotros .foda .box:not(:last-child) {
	border-bottom: solid 30px var(--marino);
}
.nosotros .foda .box h2 {
	color: var(--amarillo);
	position: relative;
	margin: 0 0 30px;
}
.nosotros .foda .box h2::before {
	content: '';
	width: 60px;
	height:3px;
	background: var(--amarillo);
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-150%,-50%);
	z-index: 3;
}
.nosotros .foda .box p {
	padding:0 0 0 45px;
	text-align: justify;
	text-justify: inter-word;
}
	
.nosotros .vals {
	width: calc(33.3% - 30px);
}
.nosotros .vals > h3 {
	font-size: 1.8em;
	color: var(--amarillo);
	margin: 0 0 30px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.nosotros .vals .box:not(:last-child) {
	margin: 0 0 30px;
}
.nosotros .vals .box p {
	text-align: justify;
	text-justify: inter-word;
}

.team {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 90px;
	align-items: stretch;
}
.team .perfil {
	width: calc(50% - 30px);
	position: relative;
	display: flex;
	align-items: flex-start;
}
.team .perfil .semblanza {
	width: 50%;
	height:100%;
	padding:24px 21px;
	color: var(--blanco);
	background: var(--marino);
	display: flex;
	flex-direction: column;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}
.team .perfil .semblanza p {
	font-size: 0.8em;
	position: relative;
	margin: 0;
	padding:0 0 0 12px;
}
.team .perfil .semblanza p::before {
	content: '';
	width: 3px;
	height:3px;
	background: var(--blanco);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index: 1;
}
.team .perfil .semblanza p:not(:last-child) {
	margin: 0 0 12px;
}
.team .perfil .semblanza .btn {
	width: 100%;
	margin: auto 0 0;
	background: var(--amarillo) !important;
}
.team .box {
	width: 50%;
	position: relative;
}
.team .box > div {
	position: relative;
}
.team .box .imagen {
	width: 100%;
	height:0;
	padding:0 0 150%;
	overflow: hidden;
}
.team .box .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.team .box .texto {
	width: 100%;
	text-align: center;
	padding:18px 15px;
}
.team .box .texto h3 {
	line-height: 0.8;
	margin: 0 0 9px;
}
.team .box .texto h4 {
	font-family: 'Altone';
	color: var(--marino);
}

footer {
	width: 100%;
	color: var(--blanco);
	background: var(--marino);
	padding:60px 0 0;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
footer .inter > div {
	width: calc(25% - 22.5px);
	position: relative;
}
footer .inter > div img {
	width: 180px;
}
footer .inter > div h4 {
	font-size: 0.9em;
	margin: 0 0 12px;
}
footer .inter > div a {
	font-size: 0.8em;
	color: var(--blanco);
	margin: 0 0 12px;
	display: block;
}
footer .inter > div a:hover {
	text-decoration: underline;
}
footer .inter > div a span {
	margin: 0 9px 0 0;
	color: var(--amarillo);
}
footer .inter > div a.active {
	color: var(--amarillo);
}

footer .inter:last-child {
	border-top: solid 1px var(--blanco);
	margin: 30px auto 0;
	padding:30px 0 0;
}
footer .inter:last-child > div {
	width: 100%;
}
footer .inter:last-child > div p {
	font-size: 0.8em;
	position: relative;
	display: flex;
	justify-content: center;
	gap: 12px;
}
footer .inter:last-child > div p a {
	font-size: 1.3em;
}

@media screen and (max-width:666px) {
	
	html {
		scroll-padding: 30px;
		--med: 30px;
	}
	
	p {
		font-size: 0.9em;
	}
	
	h1 {
		font-size: 1.8em;
	}
	h2 {
		font-size: 1.5em;
	}
	
	h3 {
		font-size: 1.2em;
	}
	
	header .inter div img {
		height: 30px;
		margin: 24px 0;
	}
	header .menu a {
		display: none;
	}
	.btn-menu {
		display: inline-block;
	}
	
	.btn {
		font-size: 0.84em;
		padding:9px 24px;
	}
	
	#whats {
		bottom:27px;
	}
	#whats span {
		font-size: 2.7em;
	}
	
	.section.add {
		margin: 84px 0 0;
	}

	#portada main img {
		max-width: 450px;
	}
	
	#portada .scroll {
		left: 21px;
		bottom:42px;
		transform: translateX(0);
	}
	#portada h2 {
		padding:0 15px;
	}

	.boxes {
		flex-wrap: wrap;
	}
	.boxes .box {
		flex-wrap: wrap;
		gap: 0;
	}
	.boxes .box:not(:last-child) {
		margin: 0 0 45px;
	}
	.boxes .box .texto {
		width: 100%;
		margin:-30px 0 0;
		order: 2;
		padding:24px 21px;
	}
	.boxes .box .texto h2 {
		font-size: 1.5em;
		padding:24px 0 0 24px;
	}
	.boxes .box .texto p.mini {
		font-size: 0.8em;
	}
	.box .btn.link {
		font-size: 1.1em;
		margin: 21px 0 0;
	}

	.boxes ul {
		padding:0 0 24px;
	}
	.boxes ul li {
		padding:0 0 0 24px;
	}
	.boxes .box .imagen {
		width: 100%;
		height:42vh;
		order: 1;
	}

	.boxes .box:nth-child(2n) .texto {
		order: 2;
	}
	.boxes .box:nth-child(2n) .imagen {
		order: 1;
	}

	.subtitulo {
		padding:24px 0;
	}

	#contacto .subtitulo {
		padding:0 0 39px;
	}
	
	.valores {
		gap: 42px 0;
		padding:30px 0 42px;
	}
	.valores .box {
		width: 100%;
	}
	.valores .box:nth-child(2n) {
		animation-delay: 0.9s;
	}

	.titulo {
		padding:48px 0 30px 15px;
	}

	.descripcion.extra {
		padding:48px 0;
	}
	.descripcion p {
		padding:0;
	}
	
	.cajas {
		gap: 21px 0;
		padding:24px 0 48px;
		justify-content: space-between;
	}
	.cajas .caja {
		width: calc(50% - 9px);
		padding:21px;
	}
	.cajas .caja span {
		font-size: 2.4em;
	}

	#sectores {
		padding:60px 0 90px;
	}

	.logos {
		gap: 24px 0;
		padding:48px 0;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.logos img,
	.logos h3 {
		width: calc(50% - 12px);
	}
	.logos img:nth-child(2n),
	.logos h3:nth-child(2n) {
		animation-delay: 0.9s;
	}

	#portaContacto {
		padding:81px 0;
	}
	.formulario form {
		width: 100%;
	}
	.formulario form div:not(:last-child) {
		margin: 0 0 18px;
	}
	.formulario form input,
	.formulario form textarea {
		font-size: 0.9em;
		padding:18px 21px;
	}

	#contacto {
		padding: 60px 0 42px;
		flex-wrap: wrap;
		gap: 60px;
	}
	#contacto .datos {
		width: 100%;
		order: 2;
	}
	#contacto .datos > a {
		font-size: 0.9em;
	}
	#contacto .datos > a span {
		font-size: 1.2em;
	}
	#contacto .formu {
		width: 100%;
		order: 1;
	}

	#portaMapa iframe {
		height:72vh;
	}

	.portada {
		padding:72px 0;
	}

	.nosotros {
		padding:48px 0;
		flex-wrap: wrap;
	}
	.nosotros .foda {
		width: 100%;
	}
	.nosotros .foda .box {
		width: 100%;
		margin: 0 0 0 24px;
		padding:48px 30px;
	}
	.nosotros .foda .box {
		border-bottom: solid 30px var(--marino);
	}
	.nosotros .foda .box h2 {
		margin: 30px 0;
	}
	.nosotros .foda .box h2::before {
		transform: translate(-120%,-50%);
	}
	.nosotros .foda .box p {
		padding:0;
	}
	
	.nosotros .vals {
		width: 100%;
	}

	.team {
		gap: 30px 0;
		margin: 0 auto 72px;
		justify-content: space-between;
	}
	.team .perfil {
		width: 100%;
		align-items: flex-start;
	}
	.team .perfil .semblanza {
		padding:18px 12px;
	}
	.team .perfil .semblanza p {
		font-size: 0.7em;
		padding:0 0 0 9px;
	}
	.team .perfil .semblanza p::before {
		left: -3px;
	}
	.team .perfil .semblanza p:not(:last-child) {
		margin: 0 0 9px;
	}

	footer {
		padding:48px 0 120px;
	}
	footer .inter {
		flex-wrap: wrap;
	}
	footer .inter > div {
		width: 100%;
		text-align: center;
	}
	
}