@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: #1D2C4F;
	--blanco: #ffffff;
	--rosa: #E94383;
	--morado: #942382;
	--azul: #2DB3E0;
	--azulFuerte: #215F8D;
	--gris: #F3F3F3;
	--verde: #60D669;
	
	--width: calc(100% - 36px);
	--maxWidth: 1200px;
}

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

h1 {
	line-height:1;
	font-family: 'Aceh Bold';
	font-weight: normal;
	font-size: 3.9em;
}
h2 {
	line-height:1;
	font-family: 'Aceh Bold';
	font-weight: normal;
	font-size: 2.1em;
}
h3 {
	font-size: 1.3em;
	font-weight: bold;
}
h4 {
	font-size: 1.2em;
	font-weight: normal;
}
a {
	font-size: 1.2em;
    text-decoration:none;
	color: var(--azul);
	cursor: pointer;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Aceh';
	font-size: 1.2em;
	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:1.2em;
}
p b {
	font-family: 'Aceh Bold';
	font-weight: normal;
}

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

/* --------------------------- 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;
	transition: all ease-in-out 0.6s;
	background: var(--blanco);
	box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
	z-index: 99;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .inter::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--rosa);
	background-image: linear-gradient(to right, var(--morado), var(--rosa));
	position: absolute;
	left: 0;
	bottom:0;
}

header .inter > div {
	position: relative;
	padding:30px 0;
	justify-content: center;
	transition: all 0.6s ease-in-out;
}
header .inter > div img {
	width: 240px;
	transition: all 0.6s ease-in-out;
}

header .inter ul {
	width: calc(100% - 360px);
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .inter ul > div {
	position: relative;
	display: flex;
	gap: 60px;
	align-items: center;
	justify-content: space-between;
}
header .inter ul a {
	font-family: 'Bai Jamjuree';
	font-size: 0.7em;
	position: relative;
	text-transform: uppercase;
	color: var(--negro);
	background: var(--blanco);
	padding:0 6px;
}
header .inter ul a.active,
header .inter ul a:hover {
	color: var(--azul);
}
header .inter ul a::after {
	content: '';
	width: 0;
	height:2px;
	background: var(--azul);
	position: absolute;
	top: 48%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
	z-index: -1;
}
header .inter ul a.active::after,
header .inter ul a:hover::after {
	width: calc(100% + 24px);
}
header .inter ul button:not(.btn-menu) {
	font-family: 'Bai Jamjuree';
	font-size: 0.8em;
	position: relative;
	color: var(--negro);
	background: var(--blanco);
	padding:6px 12px;
	font-weight: bold;
}
header .inter ul button:not(.btn-menu):hover {
	color: var(--blanco);
	background: var(--azul);
}
header .inter ul button:not(.btn-menu) span {
	margin: 0 6px 0 0;
}

.dropdown {
	list-style: none;
	position: relative;
}
.dropdown-content {
	display: none;
	position: absolute;
	background: var(--blanco);
	min-width: 240px;
	border-top: solid 12px var(--negro);
	transition: all 1.2s ease-in-out;
	z-index: 99;
}
.dropdown-content a {
	font-size: 0.9em !important;
	padding:9px 12px;
	color: var(--negro);
	text-decoration: none;
	display: block;
	text-align: left;
	position: relative;
	transition: all 0.3s ease-in-out !important;
}
header .inter ul > div:first-child .dropdown a::after {
	transform: translate(-50%,14px);
}
header .inter ul > div:first-child .dropdown a.active::after {
	transform: translate(-50%,18px);
}
header.active .inter ul > div:first-child .dropdown a.active::after {
	transform: translate(-50%,19px);
}
.dropdown-content a::after {
	display: none;
}
.dropdown-content a:hover {
	color: var(--rosa) !important;
}
.dropdown-content a.active {
	color: var(--blanco) !important;
	background: var(--rosa);
}
.dropdown:hover .dropdown-content {
	display: block;
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	background: var(--negro);
	padding: 180px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.3em;
	display: block;
	margin: 0 0 24px;
	color: var(--blanco);
	position: relative;
}
#openmenu a.active {
	color: var(--rosa);
	filter: brightness(120%);
}
#openmenu div:last-child {
	direction: flex;
	padding: 24px 0 0;
}
#openmenu div:last-child a {
	font-size: 1.2em;
	color: var(--rosa);
	margin: 9px 18px;
	display: inline-block !important;
}

.btn-menu {
	width: 21px;
	height:21px;
	position: relative;
	display: none;
	margin: 0 0 0 12px;
	background: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--azul);
	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(--azul);
	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);
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	top: 0;
	left:0;
	background: var(--blanco);
	animation: gone 0.9s;
	opacity: 0;
	pointer-events: none !important;
	z-index: 66;
}
@-webkit-keyframes gone {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-moz-keyframes gone {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes gone {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.bg-gris {
	background: var(--gris);
}
.bg-negro {
	color: var(--blanco);
	background: var(--negro);
	position: relative;
}
.bg-negro.esp2 {
	margin: 0 0 42px;
}
.bg-negro.esp::before,
.bg-negro.esp::after {
	content: '';
	width: 100%;
	height:3px;
	background-image: linear-gradient(to right, var(--azul), var(--rosa));
	position: absolute;
	left:0;
}
.bg-negro.esp::before {
	top: 0;
}
.bg-negro.esp::after {
	bottom:0;
}

.btn {
	font-family: 'Bai Jamjuree';
	font-size: 0.9em;
	color: var(--blanco);
	padding:12px 42px;
	position: relative;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}
.btn::before,
.btn::after {
	content: '';
	width: 100%;
	height:100%;
	background: var(--negro);
	position: absolute;
	top: 0;
	left:0;
	transition: all 0.3s ease-in-out;
	z-index: -2;
}
.btn::after {
	background-image: linear-gradient(to right, var(--rosa), var(--negro));
	transform: translateX(-100%);
	z-index: -1;
}
.btn:hover::after {
	transform: translateX(0);
}

#portaWhats {
	position: fixed;
	display: flex;
	justify-content: flex-end;
	left: 50%;
	bottom:18px;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 12;
}
#portaWhats a {
	width: auto;
	font-family: 'Bai Jamjuree';
	font-size: 1.2em;
	color: var(--blanco);
	background: var(--verde);
	padding:12px 18px;
	border-radius: 48px;
	box-shadow: 6px 6px 6px rgba(0,0,0,0.3);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: visible;
	gap: 12px;
}
#portaWhats a span {
	font-size: 1.3em;
}

#portada {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding:180px 0 48px;
	overflow: hidden;
}
#portada > div {
	position: relative;
}
#portada .info {
	width: calc(60% - 60px);
}
#portada .info h1 {
	width: 100%;
	margin: 0 0 30px;
	padding:0 30px 12px 0;
	position: relative;
}
#portada .info h1 em {
	color: var(--rosa);
	font-style: normal;
	background-image: linear-gradient(to right, var(--morado), var(--rosa));
	-webkit-background-image: linear-gradient(to right, var(--morado), var(--rosa));
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
#portada .info h1::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--rosa);
	background-image: linear-gradient(to right, var(--morado), var(--rosa));
	position: absolute;
	left: 0;
	bottom:0;
}
#portada .info p {
	margin: 0 0 30px;
}
.imagen,
.info,
.texto {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portada .imagen {
	width: calc(40% - 30px);
	overflow: hidden;
}
#portada .imagen::before {
	content: '';
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.9));
	z-index: 1;
}
#portada .imagen img {
	width: 100%;
	margin: 0 0 -6px;
	position: relative;
	z-index: 0;
}
#portada .imagen div {
	width: 100%;
	position: absolute;
	left: 0;
	bottom:0;
	padding:0 30px 60px;
	text-align: center;
	z-index: 3;
}
#portada .imagen div::after {
	content: '';
	width: 1px;
	height:42px;
	background-image: linear-gradient(to bottom, var(--morado), var(--rosa));
	position: absolute;
	left: 50%;
	bottom:0;
}
#portada .imagen div span {
	font-size: 1.5em;
	color: var(--rosa);
	margin: 0 auto 9px;
}
#portada .imagen div h3,
#portada .imagen div p {
	font-family: 'Bai Jamjuree';
	letter-spacing: 0.3em;
}
#portada .imagen div h3 {
	font-size: 1em;
}
#portada .imagen div p {
	font-size: 0.7em;
}

.portaBtn {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
}
.portaBtn.esp {
	padding:60px 0;
}

.titulo {
	text-align: center;
	padding:72px 0 48px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.titulo span {
	font-size: 2.4em;
	display: block;
	margin: 0 auto 18px;
	color: var(--rosa);
}
.titulo p {
	width: 100%;
	margin: 24px auto 0;
}

.lista {
	margin: 30px auto 60px;
	padding:0 120px 30px;
	counter-reset: boxes;
}
.box {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.lista .box {
	margin: 0 0 42px;
	position: relative;
	z-index: 3;
}
.lista .box::before {
	counter-increment: boxes;
	content: counter(boxes);
	font-size: 4.8em;
	font-family: 'Aceh Bold';
	color: var(--gris);
	position: absolute;
	top: 0;
	left:60px;
	transform: translateY(-33.3%);
	z-index: -1;
}
.lista .box h3 {
	position: relative;
	margin: 0 0 12px;
	padding:0 0 0 60px;
}
.lista .box h3 > div {
	width: 36px;
	height:36px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left:0;
	transform: translateY(-24%);
	background: var(--azul);
	background-image: linear-gradient(to bottom, var(--azul), var(--azulFuerte));
	display: flex;
	justify-content: center;
	align-items: center;
}
.lista .box h3 > div span {
	color: var(--blanco);
}
.lista .box p {
	width: 100%;
	padding:12px 0 0 132px;
	position: relative;
}
.lista .box p::before {
	content: '';
	width: calc(100% - 120px);
	height:1px;
	background: var(--rosa);
	position: absolute;
	top: 0;
	left:120px;
}
.lista .box p::after {
	content: '';
	width: 1px;
	height:calc(100% - 12px);
	background-image: linear-gradient(to bottom, var(--rosa), var(--azul));
	position: absolute;
	top: 12px;
	left:120px;
}

.caja {
	position: relative;
	display: flex;
	justify-content: flex-end;
	animation-duration: 1.5s;
	animation-delay: 0.9s;
}
.caja > div {
	position: relative;
}
.caja .imagen {
	width: 33.3vw;
	height:100%;
	overflow: hidden;
	position: absolute;
	top: 0;
}
.caja:nth-child(1) .imagen,
.caja:nth-child(2n+1) .imagen {
	right: 0;
}
.caja .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.caja .texto {
	padding:90px calc(33.3% + 42px) 90px 0;
}
.caja .texto h3 {
	font-size: 1.5em;
	padding:0 0 12px 12px;
}
.caja .texto figure {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
.caja .texto figure span {
	font-size: 18px;
	margin: 0 7px;
	color: var(--rosa);
}
.caja .texto figure::before {
	content: '';
	width: 100vw;
	height:1px;
	background: var(--rosa);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.caja:nth-child(1) .texto figure::before,
.caja:nth-child(2n+1) .texto figure::before {
	right: 32px;
}
.caja .texto figure::after {
	content: '';
	width: 30px;
	height:30px;
	border-radius: 50%;
	border: solid 1px var(--rosa);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.caja .texto p {
	padding:12px 0 0 12px;
	position: relative;
}
.caja .texto p::after {
	content: '';
	width: 1px;
	height:calc(100% - 12px);
	background-image: linear-gradient(to right, var(--morado), var(--rosa));
	position: absolute;
	top: 12px;
}
.caja:nth-child(1) .texto p::after,
.caja:nth-child(2n+1) .texto p::after {
	left: 0;
}

.caja:nth-child(2n) {
	justify-content: flex-start;
	text-align: right;
}
.caja:nth-child(2n) .imagen {
	left: 0;
}
.caja:nth-child(2n) .texto {
	padding:90px 0 90px calc(33.3% + 42px);
}
.caja:nth-child(2n) .texto h3 {
	padding:0 12px 12px 0;
}
.caja:nth-child(2n) .texto figure {
	justify-content: flex-start;
}
.caja:nth-child(2n) .texto figure::before {
	left: 32px;
}
.caja:nth-child(2n) .texto p {
	padding:12px 12px 0 0;
}
.caja:nth-child(2n) .texto p::after {
	right:0;
}

.portaCajas .caja:nth-child(1),
.portaCajas .caja:nth-child(2n+1) {
	background: var(--gris);
}
.portaCajas .caja .texto figure::after {
	display: none;
}
.portaCajas .caja:nth-child(1) .texto figure::before,
.portaCajas .caja:nth-child(2n+1) .texto figure::before {
	right: 0;
}
.portaCajas .caja:nth-child(2n) .texto figure::before {
	left: 0;
}
.portaCajas .caja .texto h3 {
	padding:0 0 12px;
}
.portaCajas .caja .texto p {
	padding:12px 0 0;
}
.portaCajas .caja .texto p::after {
	display: none;
}

.portaVideo {
	position: relative;
	display: flex;
	justify-content: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.portaVideo video {
	width: 66.6%;
}

.logos {
	position: relative;
	display: flex;
	margin: 30px auto;
	justify-content: center;
	align-items: center;
	gap: 60px;
}
.logos img {
	width: calc(33.3% - 48px);
	max-width: 270px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.boxes {
	margin: 90px auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px 0;
}
.boxes .box {
	width: 42%;
	position: relative;
	text-align: center;
}
.boxes .box > div {
	width: 39px;
	height:39px;
	border-radius: 50%;
	background: var(--azul);
	background-image: linear-gradient(to bottom, var(--azul), var(--azulFuerte));
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 12px;
}
.boxes .box > div span {
	font-size: 24px;
	color: var(--blanco);
}
.boxes .box h3 {
	width: 100%;
	margin: 0 auto 12px;
	padding:0 0 12px;
	position: relative;
}
.boxes .box h3::after {
	content: '';
	width: 100%;
	height:1px;
	background-image: linear-gradient(to right, var(--rosa), var(--morado));
	position: absolute;
	left: 0;
	bottom:0;
}

#info {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 60px;
}
#info > div {
	position: relative;
}
#info .imagen {
	width: calc(40% - 30px);
}
#info .imagen img {
	width: 100%;
}
#info .texto {
	width: calc(60% - 30px);
	list-style: none;
	position: relative;
	counter-reset: boxes;
}
#info .texto::after {
	content: '';
	width: 1px;
	height:100%;
	background: var(--rosa);
	position: absolute;
	top: 0;
	left:18px;
	z-index: -1;
}
#info .texto li {
	position: relative;
	margin: 0 0 24px;
	padding:0 0 0 120px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#info .texto li::before {
	counter-increment: boxes;
	content: counter(boxes);
	font-size: 4.8em;
	font-family: 'Aceh Bold';
	color: var(--gris);
	position: absolute;
	top: 50%;
	right: calc(100% - 129px);
	transform: translateY(-50%);
	text-align: right;
	z-index: -1;
}
#info .texto li:last-child {
	margin: 0;
}
#info .texto li > div {
	width: 39px;
	height:39px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	background: var(--azul);
	background-image: linear-gradient(to bottom, var(--azul), var(--azulFuerte));
	display: flex;
	justify-content: center;
	align-items: center;
}
#info .texto li > div span {
	font-size: 24px;
	color: var(--blanco);
}
#info .texto li p {
	font-size: 1em;
	position: relative;
}
#info .texto li p::after {
	content: '';
	width: 6px;
	height:6px;
	background: var(--rosa);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:-60px;
	transform: translateY(-50%);
}

.subtitulo {
	padding:60px 0;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.subtitulo h2 {
	font-size: 1.8em;
}

.foda {
	display: flex;
	justify-content:space-between;
	padding:60px 0;
}
.foda .box {
	width: 42%;
	position: relative;
	text-align: center;
}
.foda .box > div {
	width: 39px;
	height:39px;
	border-radius: 50%;
	top: 0;
	left:0;
	background: var(--azul);
	background-image: linear-gradient(to bottom, var(--azul), var(--azulFuerte));
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.foda .box > div span {
	font-size: 24px;
	color: var(--blanco);
}
.foda .box h3 {
	width: 100%;
	font-size: 1.5em;
	margin: 24px auto 0;
}
.foda .box h4 {
	font-family: 'Bai Jamjuree';
	width: 100%;
	margin: 12px auto;
	padding:0 0 12px;
	position: relative;
}
.foda .box h4::after {
	content: '';
	width: 100%;
	height:1px;
	background-image: linear-gradient(to right, var(--morado), var(--rosa), var(--morado));
	position: absolute;
	left: 0;
	bottom:0;
}

blockquote {
	width: 100%;
	padding:42px;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
blockquote p {
	font-family: 'Bai Jamjuree';
}
blockquote span {
	font-weight: bold;
}

.perfil {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding:0 0 60px;
}
.perfil > div {
	position: relative;
}
.perfil .texto {
	width: calc(60% - 30px);
}
.perfil .texto::after {
	content: '';
	width: 1px;
	height:100%;
	background-image: linear-gradient(to bottom, var(--negro), var(--blanco), var(--negro));
	position: absolute;
	top: 0;
	left:4px;
}
.perfil .texto div {
	width: 100%;
	position: relative;
	margin: 0 auto 30px;
	padding:0 0 0 60px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.perfil .texto div h3 {
	position: relative;
	margin: 0 0 9px;
}
.perfil .texto div h3::after {
	content: '';
	width: 9px;
	height:9px;
	background: var(--blanco);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:-60px;
	transform: translateY(-50%);
	z-index: 3;
}
.perfil .texto div ul {
	list-style: none;
	position: relative;
}
.perfil .texto div ul li {
	font-family: 'Bai Jamjuree';
	font-size: 0.81em;
	margin: 0 0 9px;
	padding:0 0 0 60px;
	position: relative;
}
.perfil .texto div ul li::after {
	content: '';
	width: 3px;
	height:3px;
	background: var(--blanco);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:48px;
	transform: translateY(-50%);
}
.perfil .texto div ul li:last-child {
	margin: 0;
}
.perfil .imagen {
	width: calc(40% - 30px);
}
.perfil .imagen img {
	width: 100%;
}

.servicios {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.servicios .titulo {
	padding:42px 0;
}
.servicios > div {
	position: relative;
}
.servicios .texto {
	width: calc(60% - 30px);
}
.servicios .texto .box {
	margin: 0 0 30px;
}
.servicios .texto .box h3 {
	padding:0 0 15px;
	position: relative;
}
.servicios .texto .box h3::after {
	content: '';
	width: 100vw;
	height:1px;
	background: var(--rosa);
	position: absolute;
	right: 0;
	bottom:0;
}
.servicios .texto .box p {
	width: 100%;
	margin: 12px 0 0;
	padding:0 0 0 60px;
	position: relative;		
}
.servicios .texto .box p::after {
	content: '';
	width: 6px;
	height:100%;
	background: var(--blanco);
	position: absolute;
	top: 0;
	left:42px;
}
.servicios .imagen {
	width: calc(40% - 30px);
	overflow: hidden;
}
.servicios .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	margin: 0 0 -6px;
}

.eleccion {
	margin: 60px auto 0;
	padding:0 0 12px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.eleccion h2 {
	max-width: 360px;
	font-size: 3em;
	background-image: linear-gradient(to right, var(--morado), var(--rosa));
	-webkit-background-image: linear-gradient(to right, var(--morado), var(--rosa));
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	position: relative;
}
.eleccion h2 small {
	font-size: 0.6em;
	display: block;
}
.eleccion h2::after {
	content: '';
	width: 50vw;
	height:1px;
	background-image: linear-gradient(to right, var(--rosa), var(--blanco));
	position: absolute;
	left: 0;
	bottom:0;
	transform: translateX(-24%);
}
.eleccion h3 {
	font-family: 'Aceh';
	margin: 15px 0;
}

.barra {
	position: relative;
	display: flex;
	gap: 15px;
	overflow: hidden;
}
.barra:last-child {
	margin: 0 auto 60px;
}
.barra > div {
	height: 162px;
	position: relative;
	color: var(--blanco);
	background: var(--negro);
	margin: 0 0 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 3px 0;
	justify-content: center;
	align-content: center;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.barra > div img {
	width: 102%;
	height:auto;
	position: absolute;
	top: 0;
	left:50%;
	transform: translate(-50%,0);
}
.barra > div img.mid {
	top: 50%;
	transform: translate(-50%,-50%);
}
.barra > div p,
.barra > div h3 {
	width: 100%;
	text-align: center;
}
.barra > div p {
	font-size: 0.9em;
}
.barra > div h3 {
	font-size: 1.8em;
	background-image: linear-gradient(to right, var(--morado), var(--rosa));
	-webkit-background-image: linear-gradient(to right, var(--morado), var(--rosa));
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
.barra > div h3 span {
	font-size: 1.5em;
}
.barra .mitad {
	width: calc(50% - 7.5px);
}
.barra .tercio {
	width: calc(33.3% - 10px);
}
.barra .cuarto {
	width: calc(25% - 11.3px);
}

.preguntas {
	position: relative;
	margin: 0 auto 60px;
	overflow: hidden;
}
.preguntas .box {
	width: 100%;
	margin: 0 0 30px;
}
.preguntas .box h3 {
	width: 100%;
	margin: 0 0 18px;
	padding:0 0 0 48px;
	position: relative;
}
.preguntas .box h3::after {
	content: '';
	width: 9px;
	height:9px;
	background: var(--rosa);
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
}
.preguntas .box p {
	width: 100%;
	padding:0 0 30px 90px;
	position: relative;
}
.preguntas .box p::before {
	content: '';
	width: 6px;
	height:calc(100% - 30px);
	background: var(--blanco);
	position: absolute;
	top: 0;
	left:60px;
}
.preguntas .box p::after {
	content: '';
	width: 100%;
	height:1px;
	background-image: linear-gradient(to right, var(--azul), var(--rosa));
	position: absolute;
	left: 0;
	bottom:0;
}

.titular {
	margin: 60px auto 30px;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.titular::after {
	content: '';
	width: 100%;
	height:1px;
	background-image: linear-gradient(to right, var(--rosa), var(--morado));
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
	z-index: -3;
}
.titular h3 {
	background: var(--blanco);
	padding:0 30px 0 0;
	display: inline-block;
}

.contactar {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.contactar > div {
	position: relative;
}
.contactar .texto {
	width: calc(60% - 30px);
	padding:0 30px 0 0;
}
.contactar .texto h2 {
	letter-spacing: 0.1em;
}
.contactar .texto h2 small {
	font-family: 'Aceh';
	display: block;
}
.contactar .texto form {
	width: 100%;
	position: relative;
	margin: 30px 0;
}
.contactar .texto form > div {
	width: 100%;
	position: relative;
	display: flex;
	gap: 12px;
	margin: 0 0 12px;
}
.contactar .texto form > div p.alerta {
	color: var(--rosa);
	animation-duration: 1.3s;
	animation-delay: 1.5s;
}
.contactar .texto form > div input,
.contactar .texto form > div textarea {
	width: 100%;
	font-family: 'Bai Jamjuree';
	font-size: 1em;
	padding:6px 9px;
	color: var(--negro);
	background: var(--gris);
	border: solid 1px var(--gris);
	transition: all 0.3s ease-in-out;
}
.contactar .texto form > div input:focus,
.contactar .texto form > div textarea:focus {
	border-color: var(--azul);
}
.contactar .texto form > div textarea {
	min-height: 60px;
	resize: none;
}
.contactar .texto form .send {
	margin: 0;
	justify-content: center;
}
.contactar .texto form .send button {
	width: calc(50% - 7.5px);
	color: var(--blanco);
	background: var(--azul);
	transition: all 0.9s ease-in-out;
}
.contactar .texto form#formFolleto .send button {
	background: var(--negro);
}
.contactar .texto form .send button:hover,
.contactar .texto form#formFolleto .send button:hover {
	background-image: linear-gradient(to right, var(--rosa), var(--negro));
}
.contactar .texto > p {
	margin: 30px 0;
}
.contactar .texto .portaBtn .btn {
	width: calc(50% - 7.5px);
	text-align: center;
}
.contactar .imagen {
	width: calc(40% - 30px);
}
.contactar .imagen img {
	width: 100%;
}

.portaMapa {
	margin: 60px auto;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.portaMapa iframe {
	width: 100%;
	height:42vh;
}

footer {
	position: relative;
	padding:0 0 30px;
}
footer::after {
	content: '';
	width: 100%;
	height:30px;
	background-image: linear-gradient(to right, var(--azul), var(--rosa));
	position: absolute;
	left: 0;
	bottom:0;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
}
footer .inter p,
footer .inter a {
	font-size: 0.9em;
	width: 100%;
	display: flex;
	gap: 18px;
	align-items: center;
	align-content: center;
	margin: 0 0 9px;
	color: var(--blanco);
}
footer .inter a p {
	font-size: 1em;
}
footer .parte {
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
footer .parte:nth-child(1) {
	width: 40%;
}
footer .parte:nth-child(1) img {
	width: calc(100% - 90px);
}
footer .parte:nth-child(2) {
	width: 60%;
	color: var(--blanco);
	background: var(--negro);
	padding:30px 0 24px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .parte:nth-child(2)::before {
	content: '';
	width: 90px;
	height:calc(100% + 3px);
	background: var(--negro);
	position: absolute;
	top: 0;
	left:0;
	transform: translateX(-100%);
	clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
footer .parte:nth-child(2)::after {
	content: '';
	width: 100vw;
	height:calc(100% + 3px);
	background: var(--negro);
	position: absolute;
	top: 0;
	left:0;
	z-index: -1;
}
footer .parte:nth-child(2) > div {
	position: relative;
}
footer .parte:nth-child(2) .texto {
	width: calc(60% - 15px);
}
footer .parte:nth-child(2) .imagen {
	width: calc(40% - 15px);
}
footer .parte:nth-child(2) .imagen img {
	width: 100%;
}
footer .inter a {
	position: relative;
	display: flex;
	align-items: stretch;
}
footer .inter a > div {
	width: 30px;
	height:30px;
	background: transparent;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.6s ease-in-out;
}
footer .inter a > div::after {
	content: '';
	width: 30px;
	height:30px;
	background: var(--azul);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
footer .inter a:hover > div::after {
	background: var(--rosa);
}
footer .inter a > div > span {
	position: relative;
	z-index: 3;
}
footer .inter p > span {
	font-size: 1.3em;
	margin: 0 3px;
}
footer .inter line {
	width: 100%;
	height:1px;
	background-image: linear-gradient(to right, var(--azul), var(--rosa));
	margin: 9px 0 15px;
	display: block;
}
footer .inter .links {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
footer .inter .links .link {
	width: 50%;
}
footer .inter .links .link:last-child {
	text-align: right;
}
footer .inter .link {
	display: inline-block;
	opacity: 0.7;
	text-decoration: underline;
}
footer .inter .link:hover {
	color: var(--azul);
}
footer .parte:nth-child(2) .bot {
	width: 100%;
	margin: 9px 0 0;
	display: flex;
	justify-content: space-between;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
footer .parte:nth-child(2) .bot a:last-child {
	text-align: right;
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 30px);
	}
	
	h1 {
		font-size: 2.4em;
	}
	h2 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.2em;
	}
	h4 {
		font-size: 1em;
	}
	p {
		font-size: 1em;
	}
	
	.btn-menu {
		display: block;
	}
	
	header .inter > div {
		padding:21px 0;
	}
	header .inter > div img {
		width: 180px;
	}
	header .inter ul {
		width: auto;
	}
	header .inter ul a {
		display: none;
	}
	
	header .inter ul button:not(.btn-menu) {
		font-size: 0;
	}
	header .inter ul button:not(.btn-menu) span {
		font-size: 24px;
	}
	
	.btn {
		padding:12px 39px;
	}

	#portaWhats a {
		font-size: 0.9em;
		padding:9px 15px;
	}
	#portaWhats a span {
		font-size: 1em;
	}

	#portada {
		flex-wrap: wrap;
		gap: 24px;
		padding:120px 0 30px;
	}
	#portada .info {
		width: 100%;
		order: 2;
	}
	#portada .imagen {
		width: 100%;
		order: 1;
	}
	#portada .imagen div {
		padding:0 12px 48px;
	}
	#portada .imagen div::after {
		height:36px;
	}
	#portada .imagen div h3,
	#portada .imagen div p {
		letter-spacing: 0.2em;
	}

	.portaBtn.esp {
		padding:48px 0;
	}

	.titulo {
		padding:60px 0 36px;
	}
	.titulo span {
		font-size: 2.1em;
		margin: 0 auto 15px;
	}

	.lista {
		margin: 24px auto;
		padding:0 0 9px;
	}
	.lista .box {
		margin: 0 0 39px;
	}
	.lista .box::before {
		left:39px;
	}
	.lista .box h3 {
		padding:0 0 0 54px;
	}
	.lista .box h3 > div {
		width: 30px;
		height:30px;
		transform: translate(-24%,9px);
	}
	.lista .box p {
		width: 100%;
		padding:12px 0 0 72px;
	}
	.lista .box p::before {
		content: '';
		width: calc(100% - 60px);
		left:60px;
	}
	.lista .box p::after {
		left:60px;
	}

	.caja {
		flex-wrap: wrap;
	}
	.caja main {
		order: 2;
	}
	.caja .imagen {
		width: 100vw;
		height:33.3vh;
		position: relative;
		order: 1;
	}
	.caja .texto,
	.caja:nth-child(2n) .texto {
		padding:48px 0;
	}
	.caja .texto h3 {
		font-size: 1.3em;
	}

	.portaVideo video {
		width: 100%;
	}

	.logos {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 24px 0;
	}
	.logos img {
		width: calc(50% - 24px);
	}

	.boxes {
		margin: 72px auto;
		gap: 42px 0;
	}
	.boxes .box {
		width: calc(50% - 12px);
	}
	.boxes .box h3 {
		font-size: 1em;
	}
	.boxes .box p {
		font-size: 0.9em;
	}

	#info {
		margin: 0 auto 48px;
		flex-wrap: wrap;
		gap: 24px;
	}
	#info .imagen {
		width: 100%;;
	}
	#info .texto {
		width: 100%;
	}
	#info .texto li {
		font-size: 0.9em;
		margin: 0 0 18px;
		padding:0 0 0 99px;
	}
	#info .texto li::before {
		right: calc(100% - 108px);
	}
	#info .texto li p {
		font-size: 0.9em;
	}
	#info .texto li p::after {
		left:-48px;
	}

	.subtitulo {
		padding:48px 0;
	}
	.subtitulo h2 {
		font-size: 1.3em;
	}

	.foda {
		padding:48px 0;
	}
	.foda .box {
		width: calc(50% - 12px);
	}
	.foda .box h3 {
		font-size: 1.3em;
	}

	blockquote {
		padding:30px;
	}

	.perfil {
		padding:0 0 48px;
		flex-wrap: wrap;
		gap: 24px;
	}
	.perfil .texto {
		width: 100%;
		order: 2;
	}
	.perfil .texto div {
		margin: 0 auto 27px;
		padding:0 0 0 48px;
	}
	.perfil .texto div h3::after {
		left:-48px;
	}
	.perfil .texto div ul li {
		font-size: 0.7em;
		padding:0 0 0 42px;
	}
	.perfil .texto div ul li::after {
		left:30px;
	}
	.perfil .imagen {
		width: 100%;
		order: 1;
	}
	
	.servicios {
		flex-wrap: wrap;
		gap: 24px;
	}
	.servicios .texto {
		width: 100%;
	}
	.servicios .imagen {
		width: 100%;
	}

	.eleccion {
		margin: 48px auto 0;
	}
	.eleccion h2 {
		font-size: 2.1em;
	}

	.barra {
		flex-wrap: wrap;
	}
	.barra:last-child {
		margin: 0 auto 30px;
	}
	.barra > div {
		margin: 0 0 12px;
	}
	.barra > div img {
		height:102%;
		object-fit: cover;
	}
	.barra > div h3 {
		font-size: 1.5em;
	}
	.barra .mitad,
	.barra .tercio,
	.barra .cuarto {
		width: calc(50% - 7.5px);
	}

	.titular {
		margin: 48px auto 24px;
	}
	.titular h3 {
		padding:0 24px 0 0;
	}

	.contactar {
		flex-wrap: wrap;
		gap: 24px;
	}
	.contactar .texto {
		width: 100%;
		padding:0;
	}
	.contactar .texto h2 {
		letter-spacing: 0.09em;
	}
	.contactar .imagen {
		width: 100%;
	}

	.portaMapa {
		margin: 42px auto;
	}
	.portaMapa iframe {
		height:69vh;
	}
	
	footer .inter {
		flex-wrap: wrap;
	}
	footer .inter p,
	footer .inter a {
		font-size: 0.84em;
	}
	footer .parte:nth-child(1) {
		width: 100%;
		text-align: center;
	}
	footer .parte:nth-child(1) img {
		width: calc(100% - 120px);
		margin: 0 auto 24px;
	}
	footer .parte:nth-child(2) {
		width: 100%;
		padding:30px 24px;
	}
	footer .parte:nth-child(2)::before {
		width: 100vw;
		height:30px;
		clip-path: polygon(100% 0, 100% 100%, 0% 100%);
		top: 0;
		left:-15px;
		transform: translateY(-100%);
	}
	footer .parte:nth-child(2)::after {
		width: 100vw;
		left: -15px;
	}
	footer .parte:nth-child(2) .texto {
		width: 100%;
	}
	footer .parte:nth-child(2) .imagen {
		display: none;
	}
	
}