@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: 99px;
	--negro: #333333;
	--blanco: #ffffff;
	--gris: #676668;
	--grisClaro: #f1f1f1;
	--morado: #592b89;
	--azul: #23c8cc;
	--rosa: #dd128b;
	--amarillo: #e5c230;
	--verde: #25D366;
	--width: calc(100% - 60px);
	--maxWidth: 1110px;

	--rosa1: #f8c8e6;
	--rosa2: #f294ca;
	--rosa3: #d9459c;
}

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

h1 {
	line-height: 1;
	font-family: 'Conthrax';
	font-weight: normal;
	font-size: 2.7em;
}

h2 {
	line-height: 1;
	font-family: 'Conthrax';
	font-weight: normal;
}

h3 {
	line-height: 1;
	font-family: 'Conthrax';
	font-weight: normal;
	font-size: 1.5em;
}

a {
	font-size: 1em;
	text-decoration: none;
	color: var(--negro);
	cursor: pointer;
}

a:active {
	outline: none;
	border: none;
}

button {
	font-family: 'Poppins';
	font-size: 1em;
	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.1em;
}

p b {
	font-family: 'Poppins Bold';
	font-weight: normal;
}

em {
	font-style: normal;
}

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

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

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

.btn {
	font-size: 14px;
	padding: 3px 18px;
	border: solid 1px;
	border-radius: 24px !important;
	background: none;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	z-index: 3;
}

.btn::before,
.btn::after {
	content: '';
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.btn::before {
	width: 100%;
	z-index: -2;
}

.btn::after {
	width: 0;
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
	transition: all ease-in-out 0.6s;
}

.btn:hover::after {
	width: 100%;
	z-index: -1;
}

.btn span {
	font-size: 1.2em;
	margin: 0 6px 0 0;
	transition: all ease-in-out 0.3s;
	z-index: 3;
}

.btn em {
	white-space: nowrap;
	z-index: 3;
}

.btnRosa {
	color: var(--blanco);
	border-color: var(--rosa);
}

.btnRosa:hover {
	border-color: var(--azul);
}

.btnRosa::before {
	background: var(--rosa);
}

.btnRosa::after {
	background: var(--azul);
}

.btnRosa2 {
	color: var(--rosa);
}

.btnRosa2:hover {
	color: var(--blanco);
	border-color: var(--azul);
}

.btnRosa2::after {
	background: var(--azul);
}

.btnBlanco2 {
	color: var(--rosa);
}

.btnBlanco2:hover {
	color: var(--blanco);
	border-color: var(--azul);
}

.btnBlanco2::after {
	background: var(--azul);
}

.btnRosa3 {
	border-color: var(--rosa);
}

.btnRosa3::before {
	background: var(--rosa);
}

.btnRosa3::after {
	background: var(--morado);
}

.btnBlanco {
	color: var(--azul);
	border-color: var(--azul);
}

.btnBlanco:hover {
	color: var(--blanco);
}

.btnBlanco::before {
	background: var(--blanco);
}

.btnBlanco::after {
	background: var(--azul);
}

.btnAzul {
	color: var(--blanco);
	border-color: var(--azul);
}

.btnAzul:hover {
	color: var(--azul);
}

.btnAzul::before {
	background: var(--azul);
}

.btnAzul::after {
	background: var(--blanco);
}

.btnAzul2 {
	color: var(--azul);
	border-color: var(--azul);
}

.btnAzul2:hover {
	color: var(--blanco);
}

.btnAzul2::before {
	background: var(--blanco);
}

.btnAzul2::after {
	background: var(--azul);
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--blanco);
	transition: all ease-in-out 0.6s;
	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: 66px;
	margin: 9px 0;
	transition: all 0.6s ease-in-out;
}

header .inter div.menu a:hover,
header .inter div.menu a.active {
	color: var(--rosa);
}

header .inter ul {
	list-style-type: none;
	overflow: hidden;
}

header .inter ul li {
	float: left;
}

header .inter ul li {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	margin: 0 0 0 30px;
}

header .inter ul li:hover>a,
header .inter ul li>a.active {
	color: var(--rosa);
}

header .inter ul li.dropdown {
	display: inline-block;
	cursor: pointer;
}

header .inter ul li.dropdown span {
	margin: 0 0 0 6px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background: var(--blanco);
	padding: 0;
	min-width: 150px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 99;
}

.dropdown-content a {
	font-size: 0.9em;
	color: var(--negro);
	padding: 9px 12px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background: var(--grisClaro);
}

.dropdown-content a.active {
	color: var(--rosa);
}

.dropdown:hover .dropdown-content {
	display: block;
}

header .inter .barraGris {
	width: 100%;
	padding: 12px 0;
	background: var(--gris);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	z-index: 6;
}

header .inter .barraGris::before,
header .inter .barraGris::after {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--gris);
	position: absolute;
	top: 0;
	z-index: -1;
}

header .inter .barraGris::before {
	right: 0;
	transform: translateX(-100%);
}

header .inter .barraGris::after {
	left: 0;
	transform: translateX(100%);
}

header .inter .barraGris a {
	font-size: 1.2em;
	color: var(--blanco);
	margin: 0 0 0 18px;
}

header .inter .barraGris .btn {
	color: var(--azul);
	border-color: var(--azul);
	background: none;
}

header .inter .barraGris .btn .btnRosa {
	color: var(--blanco);
	border-color: var(--rosa);
	background: none;
}

header .inter .barraGris .btn:hover::after {
	background: var(--blanco);
}

header .inter .barraGris a:last-child .btn {
	color: var(--blanco);
}

header .inter .barraGris a:last-child .btn:hover {
	border-color: var(--morado);
}

header .inter .barraGris a:last-child .btn::before {
	background: var(--azul);
}

header .inter .barraGris a:last-child .btn::after {
	background: var(--morado);
}

/* active */
header.active .inter div img {
	height: 48px;
	margin: 7px 0;
}

#btn-whats {
	position: fixed;
	right: 15px;
	bottom: 24px;
	z-index: 99;
}

#btn-whats button {
	width: 48px;
	height: 48px;
	background: var(--verde);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	border-radius: 50% !important;
	position: relative;
}

#btn-whats button span {
	font-size: 24px;
	color: var(--blanco);
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

#openmenu {
	width: 100vw;
	height: 100vh;
	position: fixed;
	display: block;
	top: 0;
	left: 100%;
	transition: all 0.6s ease-in-out;
	background: var(--gris);
	padding: 170px 15px 24px;
	text-align: center;
	z-index: 66;
}

#openmenu.active {
	left: 0;
}

.d-none {
	display: none;
}

#openmenu a {
	font-size: 1.5em;
	display: block;
	margin: 0 0 12px;
	color: var(--blanco);
	position: relative;
	opacity: 0.6;
}

#openmenu a.active {
	color: var(--azul);
	opacity: 1;
}

#openmenu a::after {
	content: '';
	width: 12px;
	height: 12px;
	background: var(--rojo);
	position: absolute;
	top: 50%;
	left: 30px;
	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 {
	margin: 0 9px;
	display: inline-block !important;
	opacity: 1;
}

.btn-menu {
	width: 42px;
	height: 42px;
	background: var(--grisClaro);
	position: relative;
	display: none;
	border-radius: 50% !important;
}

.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);
}

#cortina {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--blanco);
	animation: gone 1.2s;
	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;
	}
}

/* slide */
#slider {
	width: var(--width);
	max-width: var(--maxWidth);
	height: auto !important;
	position: relative;
	margin: 0 auto;
	display: block;
	padding: 0 0 90px;
}

#slider .owl-carousel {
	width: 100%;
	max-width: 100vw;
	margin: 0;
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 3;
}

#slider .owl-carousel.add {
	margin: 210px 0 0;
}

.owl-carousel div {
	float: left;
}

.owl-carousel .item {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	z-index: 6;
}

.owl-carousel .item .box {
	width: 50%;
	position: relative;
}

.owl-carousel .item .box img {
	width: 100%;
}

.owl-carousel .item .box h1 {
	color: var(--morado);
	margin: 0 0 42px;
}

.owl-carousel .item .box p {
	width: calc(100% - 60px);
}

.owl-carousel .item .box ul {
	padding: 0 0 0 18px;
	list-style: none;
}

.owl-carousel .item .box ul li {
	margin: 0 0 9px;
	position: relative;
}

.owl-carousel .item .box ul li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--rosa);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-18px, -50%);
}

.owl-carousel .item .box ul li:last-child {
	margin: 0;
}

.owl-carousel .item .box .btn {
	margin: 42px 0 0;
	color: var(--blanco);
}

.custom-control {
	width: 100%;
	margin: 30px auto 0;
	position: absolute;
	bottom: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
}

.custom-control button {
	width: 15px !important;
	height: 15px !important;
	margin: 0 12px;
	padding: 0;
	background: none;
	-webkit-border-radius: 50% !important;
	border-radius: 50% !important;
	transition: all ease-in-out 0.3s;
	border: solid 1px var(--rosa);
	position: relative;
	pointer-events: all;
}

.custom-control button:hover,
.custom-control button.active {
	background: var(--rosa);
}

.custom-control .prev,
.custom-control .next {
	cursor: pointer;
	font-size: 18px;
	margin: 0 12px;
	vertical-align: middle;
}

/*.custom-control div {
	position: absolute;
	left: calc(50% + 30px);
	cursor: pointer;
	transform: translateY(-6px);
	z-index: 3;
}
.custom-control div span {
	width: 120px;
	height:2px;
	background: var(--rosa);
	display: block;
	z-index: 3;
}
.custom-control div span::after {
	content: '';
	width: 15px;
	height:15px;
	border: solid 2px var(--rosa);
	border-width: 2px 2px 0 0;
	position: absolute;
	top:  50%;
	right:3px;
	transform: translate(0,-50%)rotate(45deg);
}
.custom-control div span::before {
	content: '';
	width: 100%;
	height:30px;
	position: absolute;
	top: -15px;
	left:0;
	z-index: -1;
}*/

.carrusel {
	width: 100%;
	max-width: 100vw;
	margin: 0;
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 3;
}

.carrusel div {
	float: left;
}

.carrusel .itemServicio {
	width: calc(50% - 12px);
	/*width: calc(100% - 12px);*/
	position: relative;
	margin: 0 12px 24px 0;
}

.carrusel .itemServicio .foto,
.carrusel .itemServicio .texto {
	width: 100%;
	position: relative;
}

.carrusel .itemServicio .foto {
	height: 0;
	padding: 0 0 49%;
	overflow: hidden;
}

.carrusel .itemServicio .foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	z-index: 1;
}

.carrusel .itemServicio .foto .etiqueta {
	background: var(--morado);
	left: 0;
	bottom: 0;
	z-index: 3;
}

.carrusel .itemServicio .foto .etiqueta span {
	color: var(--blanco);
}

.carrusel .itemServicio .texto {
	padding: 30px;
	text-align: left;
	border: solid 1px var(--morado);
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background: var(--blanco);
}

.carrusel .itemServicio .texto h2 {
	color: var(--morado);
	margin: 0 0 30px;
}

.carrusel .itemServicio .texto p {
	margin: 0 0 30px;
}

.carrusel .itemServicio .texto.rosado h2 {
	color: var(--rosa);
}

.no-index #slider {
	min-height: auto;
	margin: 0 auto 48px;
}

.no-index .owl-carousel div {
	float: none;
}

p.textoDescripcion {
	width: 100%;
	margin: 30px 0 0;
	column-count: 2;
	column-gap: 12px;
}

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

main h1 {
	font-size: 2.4em;
}

.barraMorada {
	width: 100%;
	padding: 60px 0;
	color: var(--blanco);
	background: var(--morado);
	position: relative;
	display: block;
}

.barraRosa {
	width: 100%;
	padding: 60px 0;
	color: var(--blanco);
	background: var(--rosa);
	position: relative;
	display: block;
}

.datos {
	display: flex;
	align-items: flex-start;
}

.dato {
	width: 25%;
	display: flex;
	align-items: center;
}

.dato h2 em {
	color: var(--amarillo);
}

.dato div span {
	font-size: 3.6em;
	color: var(--rosa);
	margin: 0 24px 0 0;
}

.dato div h3 {
	margin: 0 0 18px;
}

.bk-grisClaro {
	background: var(--grisClaro);
}

.bk-grisClaro::after,
.bk-grisClaro::before {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--grisClaro);
	position: absolute;
	top: 0;
	z-index: -1;
}

.bk-grisClaro::after {
	left: 0;
	transform: translate(-100%);
}

.bk-grisClaro::before {
	right: 0;
	transform: translate(100%);
}

.bk-grisClaro.sinFondo {
	background: none;
}

.bk-grisClaro.sinFondo::after,
.bk-grisClaro.sinFondo::before {
	display: none;
}

.bk-morado {
	background: var(--morado);
}

.bk-morado::after,
.bk-morado::before {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--morado);
	position: absolute;
	top: 0;
	z-index: -1;
}

.bk-morado::after {
	left: 0;
	transform: translate(-100%);
}

.bk-morado::before {
	right: 0;
	transform: translate(100%);
}

.bk-amarillo {
	background: var(--amarillo);
}

.bk-amarillo::after,
.bk-amarillo::before {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--amarillo);
	position: absolute;
	top: 0;
	z-index: -1;
}

.bk-amarillo::after {
	left: 0;
	transform: translate(-100%);
}

.bk-amarillo::before {
	right: 0;
	transform: translate(100%);
}

.box {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.box .flotado {
	position: sticky !important;
	top: 150px;
}

.especial-rosa {
	padding: 75px 0;
}

.especial-rosa::after,
.especial-rosa::before {
	content: '';
	width: 50vw;
	height: 390px;
	background: var(--rosa);
	position: absolute;
	top: 0;
	z-index: -1;
}

.especial-rosa::after {
	left: 50%;
	transform: translate(-100%);
}

.especial-rosa::before {
	right: 50%;
	transform: translate(100%);
}

.especial-rosa .box .flotado {
	width: calc(33.3% - 15px);
}

.especial-rosa h1 {
	width: 50%;
	color: var(--amarillo);
	margin: 0 0 48px;
}

.especial-rosa .box .contenido {
	width: calc(66.6% - 15px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.especial-rosa .box .contenido .servicio {
	width: calc(50% - 12px);
	position: relative;
	margin: 0 12px 24px 0;
}

.especial-rosa .box .contenido .servicio .foto,
.especial-rosa .box .contenido .servicio .texto {
	width: 100%;
	position: relative;
}

.especial-rosa .box .contenido .servicio .foto {
	height: 0;
	padding: 0 0 49%;
	overflow: hidden;
}

.especial-rosa .box .contenido .servicio .foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	z-index: 1;
}

.especial-rosa .box .contenido .servicio .foto .etiqueta {
	background: var(--morado);
	left: 0;
	bottom: 0;
	z-index: 3;
}

.especial-rosa .box .contenido .servicio .foto .etiqueta span {
	color: var(--blanco);
}

.especial-rosa .box .contenido .servicio .texto {
	padding: 30px;
	text-align: left;
	border: solid 1px var(--morado);
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background: var(--blanco);
}

.especial-rosa .box .contenido .servicio .texto h2 {
	color: var(--morado);
	margin: 0 0 30px;
}

.especial-rosa .box .contenido .servicio .texto p {
	margin: 0 0 30px;
}

.especial-rosa .box .contenido .servicio .texto.rosado h2 {
	color: var(--rosa);
}

.especial-gris {
	padding: 75px 0;
}

.especial-gris::after,
.especial-gris::before {
	content: '';
	width: 50vw;
	height: 480px;
	background: var(--grisClaro);
	position: absolute;
	top: 0;
	z-index: -1;
}

.especial-gris::after {
	left: 50%;
	transform: translate(-100%);
}

.especial-gris::before {
	right: 50%;
	transform: translate(100%);
}

.especial-gris .box .flotado {
	width: calc(50% - 15px);
	padding: 0 60px;
}

.especial-gris h1 {
	width: 50%;
	color: var(--morado);
	margin: 0 0 48px;
}

.especial-gris .box .contenido {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.especial-gris .box .contenido .grafico {
	width: calc(50% - 12px);
	height: 0;
	padding: 0 0 calc(50% - 12px);
	position: relative;
	margin: 0 12px 24px 0;
	border-radius: 30px;
	background: var(--rosa);
	overflow: hidden;
}

.especial-gris .box .contenido .grafico img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.5;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.especial-gris .box .contenido .grafico:hover img {
	transform: translate(-50%, -50%) scale(1.2);
}

.especial-gris .box .contenido .grafico button {
	width: 100%;
	height: 100%;
	position: absolute;
	background: none;
	z-index: 3;
}

.especial-gris .box .contenido .grafico button span {
	font-size: 3em;
	color: var(--blanco);
}

#nosotros {
	width: 100%;
	position: relative;
	background: var(--grisClaro);
	margin: 60px 0 0;
}

#nosotros img {
	width: 100%;
	opacity: 0.3;
	z-index: 1;
}

#nosotros .box {
	width: var(--width);
	max-width: var(--maxWidth);
	position: absolute;
	left: 50%;
	bottom: 75px;
	transform: translateX(-50%);
	z-index: 3;
}

#nosotros .box h1 {
	width: 50%;
	color: var(--rosa);
	margin: 0 0 48px;
}

#nosotros .box p {
	width: 33.3%;
}

.barra {
	width: 100%;
	position: relative;
	text-align: center;
	background: var(--grisClaro);
	overflow: hidden;
	padding: 90px 0;
}

.barra h1 {
	width: 50%;
	max-width: 600px;
	color: var(--rosa);
	margin: 0 auto 60px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.barra .btn {
	margin: 0 auto;
}

.barra img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -12%);
	opacity: 0.3;
	z-index: 1;
}

#testimonios {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 90px auto 0;
	position: relative;
	z-index: 1;
}

#testimonios .contenedor {
	width: 100vw;
	display: flex;
	gap: 15px;
	overflow-x: auto;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

#testimonios .contenedor::-webkit-scrollbar {
	display: none;
}

#testimonios .contenedor .box {
	background: none !important;
	position: relative;
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
}

#testimonios .contenedor .box div:first-child {
	color: var(--morado);
	padding: 0;
}

#testimonios .contenedor .box h2 {
	font-size: 2.4em;
}

.gal_item {
	width: 390px;
	align-items: center;
	display: flex;
	flex: 0 0 390px;
	scroll-snap-align: start;
	background: var(--grisClaro);
	border-radius: 30px;
	flex-wrap: wrap;
}

.gal_item .cliente {
	width: calc(100% - 60px);
	margin: 30px auto;
	position: relative;
	display: flex;
	align-items: center;
}

.gal_item .cliente .imagen {
	width: 60px;
	height: 60px;
	position: relative;
	margin: 0 24px 0 0;
	border-radius: 50%;
	overflow: hidden;
}

.gal_item .cliente .imagen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.gal_item .cliente h3 {
	font-size: 1.2em;
	color: var(--rosa);
}

.gal_item:last-child {
	width: 50vw;
	background: none;
}

.gal_item p {
	width: calc(100% - 60px);
	margin: 0 auto;
}

.gal_item .estrellas {
	width: calc(100% - 60px);
	margin: 30px auto;
	display: flex;
	justify-content: flex-start;
}

.gal_item .estrellas span {
	font-size: 1.2em;
	margin: 0 12px 0 0;
	color: var(--amarillo);
}

div.etiqueta {
	width: 54px;
	height: 54px;
	position: absolute;
}

div.etiqueta span {
	font-size: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.centrado {
	padding: 75px 0;
	text-align: center;
}

.centrado h1 {
	margin: 0 0 48px;
	color: var(--morado);
}

.centrado h2 {
	font-size: 1.2em;
}

#alianzas .centrado h2 {
	color: var(--rosa);
}

.centrado span {
	font-size: 3.6em;
}

.centrado .btn span {
	font-size: 1.2em;
}

.porta-botones {
	width: 100%;
	margin: 42px 0 0;
	display: flex;
}

.centrado .porta-botones {
	justify-content: center;
}

.porta-botones .btn {
	margin: 0 24px 0 0;
}

.centrado .porta-botones .btn {
	margin: 0 12px;
}

.portabtn .btn {
	margin: -30px auto 0;
}

.izquierda {
	padding: 60px 0;
}

.izquierda h1 {
	margin: 0 0 48px;
	color: var(--morado);
}

.porta-ubi {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.porta-ubi div {
	width: calc(50% - 12px);
}

.porta-ubi div:last-child {
	display: flex;
	justify-content: flex-end;
}

.des .descripcion {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.des .descripcion div {
	width: calc(50% - 15px);
	position: relative;
}

.des .descripcion div.texto {
	padding: 0 60px;
}

.des .descripcion div:last-child {}

.des .descripcion div img {
	width: 100%;
	border-radius: 60px;
}

.des .descripcion div.texto h2 {
	color: var(--rosa);
	margin: 0 0 24px;
}

.des .descripcion:nth-child(2n) div {
	order: 2;
}

.des .descripcion:nth-child(2n) div:last-child {
	order: 1;
}

.fondo-gris {
	background: var(--grisClaro);
}

.fondo-azul {
	background: var(--azul);
}

.fondo-morado {
	background: var(--morado);
}

.bk-blanco {
	padding: 90px 0;
}

.bk-blanco .descripcion {
	align-items: flex-start;
}

.bk-blanco h1 {
	color: var(--morado);
	margin: 0 0 30px;
}

.bk-blanco h3 {
	font-size: 1.2em;
	color: var(--rosa);
}

.info {
	width: 100%;
	position: relative;
}

.info tr td {
	width: 50%;
	padding: 24px 0 0;
	vertical-align: top;
}

.info ul {
	list-style: none;
}

.info ul li {
	margin: 0 0 6px;
	position: relative;
}

.info ul li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--rosa);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-18px, -50%);
}

.elemento {
	position: sticky !important;
	top: 150px;
}

.centra .btn {
	margin: 30px auto 0;
}

.tablas {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 45px 0 30px;
}

.tablas div {
	width: calc(25% - 15px);
	color: var(--blanco);
	background: var(--rosa);
	padding: 30px 30px 45px;
	border-radius: 30px;
}

.tablas div h2 {
	margin: 24px 0 0;
}

.linea {
	width: 100%;
	position: relative;
	display: flex;
	margin: 45px 0;
}

.linea div {
	width: 25%;
}

.linea div h2,
.linea div span {
	color: var(--rosa);
}

.linea div h2 {
	min-height: 2em;
	margin: 30px auto;
	padding: 0 12px;
}

.linea div p {
	position: relative;
	padding: 30px 18px 0;
}

.linea div p::before {
	content: '';
	width: 100%;
	height: 1px;
	border-top: dashed 1px var(--morado);
	position: absolute;
	top: 0;
	left: 0;
}

.linea div p::after {
	content: '';
	width: 15px;
	height: 15px;
	background: var(--morado);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.bk-morado {
	color: var(--blanco);
}

.bk-morado h1 {
	color: var(--amarillo);
}

.alianzas {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding: 30px 0;
}

.alianzas img {
	width: calc(16% - 12px);
	margin: 0 9px;
}

.equipo {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 48px 0 0;
}

.equipo .profe {
	width: calc(33.3% - 90px);
	position: relative;
	text-align: left;
	margin: 0 0 48px;
}

.equipo .profe .foto,
.equipo .profe .texto {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
}

.equipo .profe .texto .btn {
	margin: 0 15px 0 0;
}

.equipo .profe .foto img {
	width: 100%;
	margin: 0 0 -5px;
	border-radius: 30px;
	border-bottom-left-radius: 0;
}

.equipo .profe .foto div.etiqueta {
	background: var(--rosa);
	left: 0;
	bottom: 0;
	z-index: 1;
}

.equipo .profe .texto h2 {
	width: 100%;
	font-size: 1.5em;
	margin: 24px 0;
}

.blogs {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 45px 0 30px;
	flex-wrap: wrap;
}

.blogs .blog {
	width: calc(25% - 15px);
	color: var(--blanco);
	background: var(--morado);
	border-radius: 30px;
	position: relative;
	margin-top: 2%;
}

.blogs .blog img {
	width: 100%;
	border-top-left-radius: 30px;
}

.blogs .blog div.etiqueta {
	background: var(--azul);
	top: 0;
	right: 0;
}

.blogs .blog .texto {
	width: 100%;
	padding: 24px;
	text-align: center;
}

.blogs .blog .texto h3 {
	color: var(--amarillo);
	margin: 18px auto;
}

.blogs .blog .texto p {
	color: var(--azul);
}

.blogs .blog .texto button {
	margin: 24px auto 12px;
}

.caja {
	padding: 75px 0;
}

.caja h1 {
	margin: 0 0 48px;
	color: var(--morado);
}

.caja h2 {
	font-size: 1.2em;
}

.caja span {
	font-size: 3.6em;
}

.caja .btn span {
	font-size: 1.2em;
}

.caja .foto .etiqueta {
	width: 54px;
	height: 54px;
	position: absolute;
	background: var(--azul);
	top: 0;
	left: 0;
}

.caja .foto .etiqueta span {
	color: var(--blanco);
}

.servicios {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.servicios .servicio {
	width: calc(33.3% - 12px);
	position: relative;
	margin: 0 0 24px;
}

.servicios .servicio:first-child,
.servicios .servicio:nth-child(4n),
.servicios .servicio:nth-child(4n+1) {
	width: calc(33.3% - 12px);
}

.servicios .servicio .foto,
.servicios .servicio .texto {
	width: 100%;
	position: relative;
}

.servicios .servicio .foto {
	height: 0;
	padding: 0 0 100%;
	overflow: hidden;
}

.servicios .servicio:first-child .foto,
.servicios .servicio:nth-child(4n) .foto,
.servicios .servicio:nth-child(4n+1) .foto {
	padding: 0 0 100%;
}

.servicios .servicio .foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	z-index: 1;
}

.servicios .servicio .foto .etiqueta {
	background: var(--morado);
	left: 0;
	bottom: 0;
	z-index: 3;
}

.servicios .servicio .foto .etiqueta span {
	color: var(--blanco);
}

.servicios .servicio .texto {
	padding: 30px;
	text-align: left;
	border: solid 1px var(--morado);
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background: var(--blanco);
}

.servicios .servicio .texto h2 {
	color: var(--morado);
	margin: 0 0 30px;
}

.planes {
	padding: 180px 0 60px;
	display: flex;
	justify-content: space-between;
}

.plan {
	width: calc(25% - 12px);
	padding: 30px;
	border-radius: 15px;
	background: var(--grisClaro);
}

.plan span {
	font-size: 3.3em;
}

.plan h1 {
	font-size: 1.5em;
	margin: 24px 0 30px;
}

.plan h1 span {
	font-size: 1em;
}

.plan h3 {
	font-size: 1em;
	margin: -18px 0 30px;
}

.plan p {
	margin: 0 0 15px;
}

.plan ul,
.plan p {
	font-size: 0.9em;
}

.plan ul {
	list-style: none;
	margin: 0 0 24px;
	padding: 0 0 0 24px;
}

.plan ul li {
	position: relative;
	margin: 0 0 12px;
}

.plan ul li:last-child {
	margin: 0;
}

.plan ul li::before {
	content: '';
	width: 6px;
	height: 15px;
	border: solid var(--azul);
	border-width: 0 2px 2px 0;
	position: absolute;
	top: 50%;
	left: -21px;
	transform: translateY(-50%) rotate(45deg);
}

.icon-plus {
	position: relative;
}

.icon-plus::after {
	font-size: 0.6em;
	content: '+';
	font-weight: bolder;
	position: absolute;
	bottom: 6%;
	right: 15%;
	color: var(--amarillo);
	z-index: 3;
}

.p-gratuito {
	background: var(--rosa1);
}

.p-gratuito span {
	color: var(--morado);
}

.p-gratuito h1 {
	color: var(--rosa);
}

.p-profe {
	background: var(--rosa2);
}

.p-profe span,
.p-profe h3 {
	color: var(--morado);
}

.p-profe h1 {
	color: var(--rosa);
}

.p-profePlus {
	color: var(--blanco);
	background: var(--rosa3);
}

.p-profePlus span,
.p-profePlus h3 {
	color: var(--azul);
}

.p-profePlus h1 {
	color: var(--blanco);
}

.p-profePlus h1 em {
	color: var(--amarillo);
}

.p-escuela {
	color: var(--blanco);
	background: var(--rosa);
}

.p-escuela span,
.p-escuela h3 {
	color: var(--azul);
}

.p-escuela h1 {
	color: var(--blanco);
}

#portada {
	width: 100%;
	height: 42vh;
	position: relative;
	margin: 160px 0 0;
	overflow: hidden;
	background: var(--negro);
}

#portada img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.6;
	z-index: 1;
}

#portada h1 {
	color: var(--azul);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

#plantilla {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#plantilla .filtro {
	width: calc(25% - 15px);
	padding: 30px 30px 30px 0;
	position: relative;
	z-index: 9;
}

#plantilla .filtro::after {
	content: '';
	width: 50vw;
	height: calc(100% + 30px);
	background: var(--grisClaro);
	border-bottom-right-radius: 24px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

#plantilla .filtro div {
	margin: 30px 0;
}

#plantilla .filtro div.flotado {
	margin: 0;
	position: sticky;
	top: 150px;
	z-index: 9;
}

#plantilla .filtro div h2 {
	margin: 0 0 18px;
}

#plantilla .filtro div.listado button {
	width: 100%;
	padding: 6px;
	border-bottom: solid 2px var(--negro);
	text-align: left;
	background: none;
}

#plantilla .filtro div button:hover,
#plantilla .filtro div button.active {
	color: var(--rosa);
	border-color: var(--rosa);
}

#plantilla form.buscar {
	width: 100%;
	position: relative;
}

#plantilla form.buscar input {
	width: 100%;
	padding: 12px 24px;
	border-radius: 24px;
	border: solid 1px var(--blanco);
	transition: all 0.3s ease-in-out;
}

#plantilla form.buscar input:focus {
	border-color: var(--morado);
}

#plantilla form.buscar button {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	background: none;
	transition: all 0.3s ease-in-out;
	z-index: 3;
}

#plantilla button.pestana {
	width: 42px !important;
	height: 42px !important;
	color: var(--blanco);
	background: var(--morado);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(100%, -50%);
	display: none;
}

#plantillas .wl-carousel {
	display: flex;
	flex-wrap: wrap;
}

#plantilla button.pestana span {
	font-size: 1.5em;
}

.contenido-tienda {
	width: calc(75% - 15px);
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.superior {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0;
	padding: 0 0 15px;
	background: var(--blanco);
	position: sticky !important;
	top: 138px;
	z-index: 9;
}

.superior em {
	font-family: 'Poppins Bold';
}

.superior .cuenta select {
	display: none;
}

.superior select {
	font-size: 1em;
	background: none;
	border: none;
}

.superior .vista {
	padding: 9px 30px;
	border-radius: 30px;
	background: var(--grisClaro);
}

.superior .vista span {
	font-size: 1.5em;
}

.superior .vista a:nth-child(2) {
	margin: 0 0 0 15px;
}

.superior .vista span:hover,
.superior .vista span.selected {
	color: var(--azul);
}

#tienda {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* cuadros */
#tienda.cuadros .servicio {
	width: calc(33.3% - 12px);
	position: relative;
	margin: 0 0 24px;
}

#tienda.cuadros .servicio .foto,
#tienda.cuadros .servicio .texto {
	width: 100%;
	position: relative;
}

#tienda.cuadros .servicio .foto {
	height: 0;
	padding: 0 0 100%;
	overflow: hidden;
}

#tienda .servicio .foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

#tienda.cuadros .servicio .foto img {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

#tienda.cuadros .servicio .texto {
	padding: 30px;
	border: solid 1px var(--morado);
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	text-align: center;
}

#tienda.cuadros .servicio .texto h2 {
	font-size: 1.2em;
	color: var(--rosa);
	margin: 0 0 30px;
}

#tienda.cuadros .servicio .texto p {
	margin: 0 0 30px;
}

#tienda.cuadros .servicio .texto .btn {
	margin: 0 auto;
}

/* lista */
#tienda.lista .servicio {
	width: 100%;
	position: relative;
	margin: 0 0 12px;
	display: flex;
}

#tienda.lista .servicio .foto,
#tienda.lista .servicio .texto {
	width: 100%;
	position: relative;
}

#tienda.lista .servicio .foto {
	width: 120px;
	overflow: hidden;
}

#tienda.lista .servicio .foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	z-index: 1;
}

#tienda.lista .servicio .texto {
	padding: 15px 30px;
	border: solid 1px var(--morado);
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#tienda.lista .servicio .texto h2 {
	width: 25%;
	font-size: 1.2em;
	color: var(--rosa);
}

#tienda.lista .servicio .texto p {
	width: 50%;
}

#tienda.lista .servicio .texto .btn {
	position: relative;
}

/* carrito */
.resumen {}

.resumen .contenido-tienda {
	margin: 48px auto;
}

.resumen #tienda.lista .servicio .texto {
	padding: 18px 30px;
}

#total {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

#total h2 {
	width: 100%;
	text-align: right;
	margin: 12px 0;
	color: var(--azul);
}

#total p {
	width: 100%;
	text-align: right;
	font-size: 1.5em;
}

#total .btn {
	margin: 12px 0 0;
}

.no-index #blog {
	padding: 180px 0 0;
}

#blog .servicios .servicio .texto p {
	margin: 0 0 30px;
}

#blog .superior {
	background: var(--grisClaro);
	padding: 12px 0 15px;
}

.fondo-azul .item,
.fondo-azul .item .descripcion h1 {
	color: var(--blanco);
}

.descripcion form {
	width: calc(100% - 30px);
	position: relative;
	margin: 30px 0 0;
}

.descripcion form input,
.descripcion form textarea,
.descripcion form select {
	width: 100%;
	font-family: 'Poppins';
	font-size: 1em;
	margin: 0 0 15px;
	padding: 12px 0;
	color: var(--gris);
	background: none;
	border: none;
	border-bottom: solid 1px var(--blanco);
	transition: all 0.3s ease-in-out;
}

.descripcion form input:focus,
.descripcion form textarea:focus,
.descripcion form select:focus {
	border-color: var(--morado);
}

.descripcion form textarea {
	margin: 15px 0;
	padding: 12px;
	border: solid 1px var(--blanco);
	min-height: 120px;
	resize: none;
}

.descripcion form .doble {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.descripcion form .doble input {
	width: calc(50% - 12px);
}

.descripcion form .btn {
	margin: 12px 0 0 !important;
}

#mapa {
	width: 100vw;
	height: 60vh;
	border: none;
	margin: 0 0 -6px;
}

main.tit {
	margin: 160px auto 0;
}

main.tit h1 {
	margin: 0;
}

main.tit h1.blnco {
	color: var(--blanco);
}

form.cuadro {
	width: var(--width);
	max-width: 480px;
	margin: 0 auto 60px;
	padding: 30px;
	position: relative;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 15px;
}

form.cuadro div {
	width: 100%;
	position: relative;
	color: var(--azul);
	display: flex;
	align-items: center;
	margin: 0 0 15px;
}

form.cuadro div label {
	width: 12%;
}

form.cuadro div label span {
	font-size: 1.5em;
}

form.cuadro div input {
	width: 88%;
	font-family: 'Poppins';
	font-size: 1em;
	color: var(--azul);
	background: none;
	border: none;
	border-bottom: solid 1px var(--azul);
	transition: all 0.6s ease-in-out;
	padding: 0 0 3px;
}

form.cuadro div input:focus {
	border-color: var(--rosa);
}

form.cuadro .enviar {
	width: 100%;
	position: relative;
	display: block;
	text-align: center;
}

form.cuadro .enviar .btn {
	margin: 30px auto;
}

form.cuadro .enviar a {
	font-size: 0.8em;
	color: var(--azul);
	text-decoration: underline;
	display: block;
	margin: 0 auto;
}

#carrito {
	width: 48px;
	height: 48px;
	background: var(--rosa);
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	cursor: pointer;
	border-top-left-radius: 12px !important;
	border-bottom-left-radius: 12px !important;
	box-shadow: 6px 6px 3px 0px rgba(0, 0, 0, 0.31);
	-webkit-box-shadow: 6px 6px 3px 0px rgba(0, 0, 0, 0.31);
	-moz-box-shadow: 6px 6px 3px 0px rgba(0, 0, 0, 0.31);
	z-index: 99;
}

#carrito span {
	font-size: 27px;
	color: var(--blanco);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

footer {
	color: var(--blanco);
	background: var(--negro);
	padding: 48px 0 30px;
}

footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .inter>div {
	width: calc(25% - 15px);
	margin: 0 0 24px;
}

footer .inter div img {
	width: 33.3%;
}

footer .inter div a {
	display: block;
	color: var(--blanco);
	margin: 0 0 12px;
}

footer .inter div a h3 {
	font-size: 1.2em;
	color: var(--rosa);
}

nav {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 24px 0;
}

nav a {
	margin: 0 9px;
	color: var(--negro);
}

nav a.active,
nav a:hover {
	color: var(--rosa);
}

@media screen and (max-width:666px) {

	html {
		scroll-padding: 99px;
		--width: calc(100% - 36px);
		--maxWidth: 1110px;
	}

	h1 {
		font-size: 1.8em;
	}

	h3 {
		font-size: 1.2em;
	}

	p,
	ul {
		font-size: 1em;
	}

	.btn {
		padding: 3px 13px;
	}

	header .inter div img {
		height: 60px;
	}

	header .inter div.menu {
		display: none;
	}

	header .inter ul {
		display: none;
	}

	header .inter .barraGris {
		justify-content: space-between;
	}

	header .inter .barraGris a {
		font-size: 1.1em;
		margin: 0;
	}

	header .inter .barraGris .btn span {
		margin: 0;
	}

	header .inter .barraGris .btn em {
		display: none;
	}

	header.active .inter div img {
		height: 45px;
	}

	.btn-menu {
		display: block;
	}

	/* slide */
	#slider {
		width: var(--width);
		max-width: var(--maxWidth);
		min-height: calc(100vh - 240px);
		position: relative;
		margin: 0 auto;
		display: block;
	}

	#slider .owl-carousel {
		width: 100%;
		max-width: 100vw;
		margin: 0;
		position: relative;
		display: block;
		overflow: hidden;
		z-index: 3;
	}

	#slider .owl-carousel.add {
		margin: 170px 0 0;
	}

	.owl-carousel .item {
		flex-wrap: wrap;
	}

	.owl-carousel .item .box {
		width: 100%;
		order: 2;
		padding: 0 0 60px;
	}

	.owl-carousel .item .box:last-child {
		order: 1;
		padding: 0 0 30px;
	}

	.owl-carousel .item .box h1 {
		margin: 0 0 30px;
	}

	.owl-carousel .item .box p {
		width: 100%;
	}

	.owl-carousel .item .box .btn {
		margin: 30px 0 0;
	}

	.custom-control {
		bottom: 24px;
		justify-content: flex-end;
	}

	.custom-control button {
		margin: 0 0 0 21px;
	}

	.custom-control .prev,
	.custom-control .next {
		display: none;
	}

	.carrusel .itemServicio {
		width: 100%;
	}

	.carrusel .itemServicio .foto {
		padding: 0 0 60%;
	}

	.no-index #slider {
		margin: 0 auto 30px;
	}

	p.textoDescripcion {
		margin: 0;
		column-count: 1;
	}

	main h1 {
		font-size: 1.8em;
	}

	.barraMorada {
		padding: 48px 0;
	}

	.datos {
		flex-wrap: wrap;
	}

	.dato {
		width: 100%;
		margin: 0 0 24px;
		justify-content: flex-end;
		text-align: center;
	}

	.dato:last-child {
		margin: 0;
	}

	.dato h2 {
		margin: 0 auto 15px;
	}

	.dato div span {
		font-size: 3em;
		margin: 0 24px 0 0;
	}

	.dato div:last-child {
		text-align: left;
	}

	.dato div h3 {
		margin: 0 0 15px;
	}

	.box {
		flex-wrap: wrap;
	}

	.box .flotado {
		position: relative !important;
		display: block;
		top: 0;
		margin: 0 0 30px;
	}

	.especial-rosa {
		padding: 48px 0;
	}

	.especial-rosa::after,
	.especial-rosa::before {
		height: 390px;
	}

	.especial-rosa .box .flotado {
		width: 100%;
	}

	.especial-rosa h1 {
		width: 100%;
		margin: 0 0 30px;
	}

	.especial-rosa .box .contenido {
		width: 100%;
	}

	.especial-rosa .box .contenido .servicio {
		width: 100%;
		margin: 0 0 24px;
	}

	.especial-rosa .box .contenido .servicio .foto {
		padding: 0 0 60%;
	}

	.especial-rosa .box .contenido .servicio .foto img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		z-index: 1;
	}

	.especial-rosa .box .contenido .servicio .foto .etiqueta {
		background: var(--morado);
		left: 0;
		bottom: 0;
		z-index: 3;
	}

	.especial-rosa .box .contenido .servicio .foto .etiqueta span {
		color: var(--blanco);
	}

	.especial-rosa .box .contenido .servicio .texto {
		padding: 30px;
		text-align: left;
		border: solid 1px var(--morado);
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
		background: var(--blanco);
	}

	.especial-rosa .box .contenido .servicio .texto h2 {
		color: var(--morado);
		margin: 0 0 30px;
	}

	.especial-rosa .box .contenido .servicio .texto p {
		margin: 0 0 30px;
	}

	.especial-rosa .box .contenido .servicio .texto.rosado h2 {
		color: var(--rosa);
	}

	.especial-gris {
		padding: 48px 0;
	}

	.especial-gris::after,
	.especial-gris::before {
		height: 480px;
	}

	.especial-gris .box .flotado {
		width: 100%;
		padding: 0;
	}

	.especial-gris h1 {
		width: 100%;
		margin: 0 0 30px;
	}

	.especial-gris .box .contenido {
		width: 100%;
	}

	.especial-gris .box .contenido .grafico {
		margin: 0 12px 12px 0;
		border-radius: 324px;
	}

	#nosotros {
		margin: 48px 0 0;
	}

	#nosotros img {
		width: 101%;
		height: 101%;
		object-fit: cover;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0.2;
		z-index: 1;
	}

	#nosotros .box {
		width: var(--width);
		padding: 30px 24px;
		position: relative;
		left: 0;
		bottom: 0;
		transform: translateX(0);
	}

	#nosotros .box h1 {
		width: 100%;
		margin: 0 0 39px;
	}

	#nosotros .box p {
		width: 100%;
		position: relative;
	}

	.barra {
		padding: 60px 0;
	}

	.barra h1 {
		width: calc(100% - 60px);
		margin: 0 auto 48px;
	}

	.barra img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}

	#testimonios {
		width: calc(100% - 30px);
		margin: 42px auto 0;
		overflow: hidden;
	}

	#testimonios .contenedor .box {
		display: none;
	}

	.gal_item:first-child {
		display: none;
	}

	.gal_item {
		width: 210px;
		flex: 0 0 210px;
	}

	.gal_item:last-child {
		width: 15vw;
	}

	.gal_item .cliente {
		width: 100%;
	}

	.gal_item h2 {
		font-size: 1.5em;
	}

	.gal_item .cliente h3 {
		font-size: 1em;
	}

	div.etiqueta {
		width: 48px;
		height: 48px;
	}

	div.etiqueta span {
		font-size: 27px;
	}

	.centrado {
		padding: 60px 0;
	}

	.centrado h1 {
		margin: 0 0 42px;
	}

	.centrado span {
		font-size: 3.3em;
	}

	.porta-botones {}

	.porta-botones .btn {
		margin: 0 21px 0 0;
	}

	.texto .porta-botones {
		padding: 42px 0 0;
	}

	.porta-ubi {
		flex-wrap: wrap;
	}

	.porta-ubi div {
		width: 100%;
	}

	.porta-ubi div:last-child {
		margin: 24px 0 0;
		justify-content: flex-start;
	}

	.des .descripcion {
		flex-wrap: wrap;
	}

	.des .descripcion div {
		width: 100%;
		margin: 0 0 24px;
	}

	.des .descripcion div.texto {
		padding: 0;
		margin: 0 0 24px;
	}

	.des .descripcion div img {
		border-radius: 48px;
	}

	.des .descripcion:nth-child(2n) div {
		order: 1;
	}

	.des .descripcion:nth-child(2n) div:last-child {
		order: 2;
		margin: 0 0 24px;
	}

	.bk-blanco {
		padding: 60px 0;
	}

	.bk-blanco h1 {
		margin: 0 0 24px;
	}

	.info tr td:first-child {
		width: calc(50% - 15px);
	}

	.info tr td:last-child {
		width: calc(50% + 15px);
		padding: 24px 0 0 24px;
	}

	.tablas {
		margin: 30px 0 24px;
		flex-wrap: wrap;
	}

	.tablas div {
		width: 100%;
		padding: 24px 24px 30px;
		border-radius: 24px;
		margin: 0 0 15px;
	}

	.tablas div:last-child {
		margin: 0;
	}

	.linea {
		margin: 30px 0;
		flex-wrap: wrap;
	}

	.linea div {
		width: 100%;
		margin: 0 0 30px;
	}

	.linea div:last-child {
		margin: 0;
	}

	.linea div h2 {
		min-height: auto;
		margin: 24px auto;
	}

	.linea div p {
		padding: 24px 0 0;
	}

	.alianzas {
		justify-content: space-between;
		padding: 24px 0;
	}

	.alianzas img {
		width: calc(50% - 15px);
		margin: 0 0 12px;
	}

	.equipo {
		justify-content: center;
		margin: 30px 0 0;
	}

	.equipo .profe {
		width: calc(100% - 60px);
	}

	.equipo .profe .foto img {
		border-radius: 24px;
		border-bottom-left-radius: 0;
	}

	.equipo .profe .texto h2 {
		font-size: 1.2em;
	}

	.blogs {
		margin: 30px 0 24px;
		flex-wrap: wrap;
	}

	.blogs .blog {
		width: 100%;
		border-radius: 24px;
		margin: 0 0 30px;
	}

	.blogs .blog:last-child {
		margin: 0;
	}

	.blogs .blog img {
		border-top-left-radius: 24px;
	}

	.caja {
		padding: 48px 0;
	}

	.caja h1 {
		margin: 0 0 30px;
	}

	.caja span {
		font-size: 3em;
	}

	.servicios .servicio,
	.servicios .servicio:first-child,
	.servicios .servicio:nth-child(4n),
	.servicios .servicio:nth-child(4n+1) {
		width: 100%;
	}

	.servicios .servicio .foto,
	.servicios .servicio:first-child .foto,
	.servicios .servicio:nth-child(4n) .foto,
	.servicios .servicio:nth-child(4n+1) .foto {
		padding: 0 0 75%;
	}

	.planes {
		flex-wrap: wrap;
	}

	.plan {
		width: 100%;
		margin: 0 0 30px;
	}

	.planes .plan:last-child {
		margin: 0;
	}

	#portada {
		height: 33vh;
		margin: 150px 0 0;
	}

	#plantilla {
		transition: all 0.3s ease-in-out;
	}

	#plantilla .filtro {
		width: 50vw;
		z-index: 69;
		display: none;
	}

	#plantilla .filtro::after {
		display: none;
	}

	#plantilla button.pestana {
		display: block;
	}

	.contenido-tienda {
		width: var(--width);
		margin: 0 auto;
	}

	.superior {
		margin: 15px 0 0;
		top: 130px;
		flex-wrap: wrap;
	}

	.superior em {
		display: none;
	}

	.superior .cuenta select {
		display: block;
	}

	.superior select {
		font-size: 0.9em;
	}

	.superior .vista {
		padding: 6px 18px;
		border-radius: 18px;
	}

	.superior .vista span {
		font-size: 1.2em;
	}

	.superior .vista a:nth-child(2) {
		margin: 0 0 0 12px;
	}

	#tienda.cuadros .servicio {
		width: 100%;
	}

	#tienda.cuadros .servicio .foto {
		padding: 0 0 60%;
	}

	#tienda.lista .servicio .foto {
		width: 120px;
	}

	#tienda.lista .servicio .texto {
		padding: 15px;
		border-top-right-radius: 24px;
		border-bottom-right-radius: 24px;
		justify-content: space-between;
		align-items: flex-start;
	}

	#tienda.lista .servicio .texto h2 {
		width: calc(50% - 9px);
		font-size: 0.9em;
	}

	#tienda.lista .servicio .texto p {
		font-size: 0.7em;
		width: 50%;
	}

	#tienda.lista .servicio .texto .btn {
		position: absolute;
		right: 12px;
		bottom: 12px;
	}

	#tienda.lista .servicio .texto .btn em {
		display: none;
	}

	.resumen #tienda.lista .servicio .texto {
		flex-wrap: wrap;
	}

	.resumen #tienda.lista .servicio .texto h2 {
		width: 100%;
	}

	.resumen #tienda.lista .servicio .texto p {
		font-size: 1.2em;
		margin: 9px 0 0;
	}

	#total {
		justify-content: flex-start;
	}

	#total h2 {
		text-align: left;
	}

	#total p {
		font-size: 1.3em;
		text-align: left;
	}

	.no-index #blog {
		padding: 171px 0 0;
	}

	.descripcion form {
		width: 100%;
	}

	.descripcion form input,
	.descripcion form textarea,
	.descripcion form select {
		margin: 0 0 12px;
		padding: 9px 0 12px;
	}

	.descripcion form textarea {
		padding: 12px;
	}

	.descripcion form .doble {
		flex-wrap: wrap;
	}

	.descripcion form .doble input {
		width: 100%;
	}

	#mapa {
		height: 72vh;
	}

	main.tit {
		margin: 140px auto 0;
	}

	form.cuadro div label {
		width: 48px;
	}

	form.cuadro div input {
		width: calc(100% - 48px);
	}

	#carrito {
		top: 90%;
	}

	footer {
		padding: 30px 0 24px;
	}

	footer .inter div {
		width: calc(50% - 12px);
	}

	footer .inter div a {
		font-size: 0.8em;
	}

	footer .inter div a h3 {
		font-size: 1em;
	}

	.alert {
		min-height: 67px;
		width: 100%;
		max-width: 90%;
		border-radius: 12px;
		padding: 16px 22px 17px 20px;
		display: flex;
		align-items: center;
		opacity: .5;
	}

	.alert {
		margin: 0 25px 0 25px;
	}

	.alert .icon__wrapper {
		display: none;
	}
}

.alert {
	min-height: 67px;
	width: 100%;
	max-width: 90%;
	border-radius: 12px;
	padding: 16px 22px 17px 20px;
	display: flex;
	align-items: center;
	opacity: .5;
}

.alert-primary {
	background: #d9459c;
}

.alert .icon__wrapper {
	height: 34px;
	width: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.253);
	display: none;
	align-items: center;
	justify-content: center;
}

.alert .icon__wrapper span {
	font-size: 21px;
	color: #fff;
}

.alert p {
	color: #fff;
	font-family: Verdana;
	margin-left: 10px;
}

.alert p a,
.alert p a:visited,
.alert p a:active {
	color: #fff;
}

.alert .open {
	margin-left: auto;
	margin-right: 5px;
}

.alert .close,
.alert .open {
	color: #fff;
	transition: transform 0.5s;
	font-size: 18px;
	cursor: pointer;
}

.alert .close:hover,
.alert .open:hover {
	transform: scale(1.3);
}