/**
 * Med Healing Tours — Hero nativo (FASE 4.2.1)
 *
 * Slider de 3 videos. Encapsulado bajo .mht-home / .mht-hero.
 * Overlay/oro: estimación visual del PDF. Ver PHASE-4-2-1-VIDEO-SLIDER.md.
 */

.mht-home {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	background: #0a1a1e;
}

body.home.mht-has-native-header,
body.front-page.mht-has-native-header {
	background: #0a1a1e;
}

.mht-home *,
.mht-home *::before,
.mht-home *::after {
	box-sizing: inherit;
}

.mht-hero {
	--mht-hero-gold: #e5c158;
	--mht-hero-white: #ffffff;
	--mht-hero-font-display: "Poly", "Georgia", serif;
	--mht-hero-font-ui: "Noto Sans", "Segoe UI", sans-serif;
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	overflow: hidden;
	color: var(--mht-hero-white);
	background: #0a1a1e;
}

.mht-video-slider,
.mht-hero__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.mht-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.65s ease, visibility 0s linear 0.65s;
}

.mht-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
	transition: opacity 0.65s ease;
}

@media (prefers-reduced-motion: reduce) {
	.mht-hero__slide {
		transition: none;
	}
}

.mht-hero__media,
.mht-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mht-hero__media {
	z-index: 0;
	overflow: hidden;
	background: #0a1a1e;
}

.mht-hero__video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.mht-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(
			180deg,
			rgba(8, 18, 24, 0.38) 0%,
			rgba(8, 18, 24, 0.28) 42%,
			rgba(8, 18, 24, 0.52) 100%
		);
	pointer-events: none;
}

.mht-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 160px 7% 140px;
	text-align: center;
}

.mht-hero__title {
	margin: 0;
	font-family: var(--mht-hero-font-display);
	font-weight: 400;
	font-style: italic;
	font-size: clamp(1.85rem, 3.55vw, 3.55rem);
	line-height: 1.22;
	letter-spacing: 0.01em;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.mht-hero__line {
	display: block;
}

.mht-hero__line--gold {
	color: var(--mht-hero-gold);
}

.mht-hero__line--white {
	color: var(--mht-hero-white);
	margin-top: 0.12em;
}

.mht-hero__subtitle {
	margin: 1.35em 0 0;
	max-width: 36em;
	font-family: var(--mht-hero-font-ui);
	font-weight: 400;
	font-size: clamp(0.92rem, 1.15vw, 1.125rem);
	line-height: 1.45;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.mht-hero__arrow {
	position: absolute;
	top: 52%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	transform: translateY(-50%);
}

.mht-hero__arrow svg {
	display: block;
	width: 22px;
	height: 22px;
}

.mht-hero__arrow:hover,
.mht-hero__arrow:focus-visible {
	border-color: var(--mht-hero-gold);
	color: var(--mht-hero-gold);
}

.mht-hero__arrow--prev {
	left: 2.4%;
}

.mht-hero__arrow--next {
	right: 2.4%;
}

.mht-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 78px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
}

.mht-hero__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.mht-hero__dot.is-active {
	background: #ffffff;
	border-color: #ffffff;
}

.mht-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 44px;
	transform: translateX(-50%);
	text-decoration: none;
}

.mht-hero__scroll-mouse {
	display: block;
	width: 18px;
	height: 28px;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	border-radius: 10px;
	position: relative;
}

.mht-hero__scroll-wheel {
	position: absolute;
	top: 5px;
	left: 50%;
	width: 2px;
	height: 6px;
	margin-left: -1px;
	border-radius: 1px;
	background: #ffffff;
	animation: mht-hero-wheel 1.6s ease-in-out infinite;
}

@keyframes mht-hero-wheel {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(8px);
	}
}

/* --- páginas 4–5 --- */
.mht-wrap {
	width: min(1240px, 88%);
	margin: 0 auto;
}

.mht-section-title {
	margin: 0;
	color: #003e4a;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2rem, 2.6vw, 2.3rem);
	line-height: 1.15;
	text-align: center;
}

.mht-section-title--left {
	text-align: left;
}

.mht-section-title span {
	display: block;
}

.mht-section-title-gold {
	color: #cba554;
}

.mht-section-title-teal {
	color: #3b8e9e;
}

.mht-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.6rem;
	padding: 0.95rem 1.7rem;
	border: 1px solid #cba554;
	border-radius: 2px;
	background: transparent;
	color: #cba554;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.28s ease, color 0.28s ease;
}

.mht-btn:hover,
.mht-btn:focus-visible {
	background: #cba554;
	color: #ffffff;
}

.mht-btn--solid {
	background: #cba554;
	color: #003e4a;
}

.mht-btn--solid:hover,
.mht-btn--solid:focus-visible {
	background: #e5c158;
}

.mht-specialties {
	padding: 3.4rem 0 3.2rem;
	overflow-x: hidden;
	background: #3b8e9e;
	color: #ffffff;
}

.mht-specialties__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.32em;
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.55rem, 2.2vw, 2.05rem);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-align: center;
}

.mht-specialties__title-gold {
	color: #e5c158;
}

.mht-specialties__title-white {
	color: #ffffff;
}

.mht-specialties__underline {
	display: block;
	width: 2.75rem;
	height: 2px;
	margin: 0.7rem auto 1.85rem;
	background: #e5c158;
}

.mht-specialties__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
}

.mht-specialty-card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 18px;
	background: #2f7482;
	color: inherit;
	text-decoration: none;
	transition: box-shadow 0.35s ease;
}

.mht-specialty-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(0);
	transform: scale(1);
	transition: filter 0.35s ease, transform 0.35s ease;
}

.mht-specialty-card__overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 48%;
	background: linear-gradient(180deg, rgba(0, 30, 36, 0) 0%, rgba(0, 28, 34, 0.82) 100%);
	pointer-events: none;
	transition: inset 0.35s ease, height 0.35s ease, background 0.35s ease;
}

.mht-specialty-card__panel {
	position: absolute;
	right: 0.85rem;
	bottom: 0.95rem;
	left: 0.85rem;
	z-index: 3;
	text-align: left;
	transition: top 0.35s ease, bottom 0.35s ease, transform 0.35s ease, text-align 0.35s ease;
}

.mht-specialty-card__title {
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.05rem, 1.35vw, 1.32rem);
	line-height: 1.18;
}

.mht-specialty-card__title span {
	display: block;
}

.mht-specialty-card__title span:first-child {
	color: #e5c158;
}

.mht-specialty-card__title span:last-child {
	color: #ffffff;
}

.mht-specialty-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	max-height: 0;
	margin-top: 0;
	overflow: hidden;
	padding: 0 0.85rem;
	border: 1px solid #e5c158;
	border-radius: 4px;
	background: rgba(0, 28, 34, 0.18);
	color: #e5c158;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease, padding 0.35s ease, background-color 0.28s ease, color 0.28s ease;
}

.mht-specialty-card__arrow {
        display: inline-block;
        transition: transform 0.18s ease-out;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
}

.mht-specialty-card:hover {
	box-shadow: 0 18px 28px rgba(255, 255, 255, 0.16), 0 14px 24px rgba(229, 193, 88, 0.14);
}

.mht-specialty-card:hover img {
	filter: blur(5px);
	transform: scale(1.06);
}

.mht-specialty-card:hover .mht-specialty-card__overlay {
	inset: 0;
	height: auto;
	background: rgba(20, 55, 62, 0.28);
}

.mht-specialty-card:hover .mht-specialty-card__panel {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	text-align: center;
}

.mht-specialty-card:hover .mht-specialty-card__cta {
	max-height: 3rem;
	margin-top: 0.95rem;
	padding-top: 0.48rem;
	padding-bottom: 0.48rem;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mht-specialty-card:hover .mht-specialty-card__cta:hover {
	background: #e5c158;
	color: #ffffff;
}

.mht-wellness-path {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	min-height: min(38rem, 78vh);
	overflow: hidden;
	background: #FAF6ED;
}

.mht-wellness-path__content {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 4.2rem 8%;
	background-color: #FAF6ED;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='96' viewBox='0 0 320 96'%3E%3Cg fill='none' stroke='%23cba554' stroke-width='1.05' opacity='0.28'%3E%3Cpath d='M0 16 Q40 4 80 16 T160 16 T240 16 T320 16'/%3E%3Cpath d='M0 32 Q40 20 80 32 T160 32 T240 32 T320 32'/%3E%3Cpath d='M0 48 Q40 36 80 48 T160 48 T240 48 T320 48'/%3E%3Cpath d='M0 64 Q40 52 80 64 T160 64 T240 64 T320 64'/%3E%3Cpath d='M0 80 Q40 68 80 80 T160 80 T240 80 T320 80'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 320px 96px;
}

.mht-wellness-path__inner {
	max-width: 28.5rem;
	text-align: left;
}

.mht-wellness-path__title {
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.7rem, 2.5vw, 2.35rem);
	line-height: 1.18;
}

.mht-wellness-path__title span {
	display: block;
}

.mht-wellness-path__title-gold {
	color: #DFBD6C;
}

.mht-wellness-path__title-teal {
	color: #4E8783;
}

.mht-wellness-path__accent {
	display: block;
	width: 5.5 rem;
	height: 2px;
	margin: 0.95rem 0 1.45rem;
	background: #DFBD6C;
}

.mht-wellness-path__text {
	color: #8C847C;
}

.mht-wellness-path__text p {
	margin: 0 0 1rem;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.65;
}

.mht-wellness-path__text p:last-child {
	margin-bottom: 0;
}

.mht-wellness-path__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1.45rem;
	padding: 0.72rem 1.15rem 0.72rem 1.25rem;
	border-radius: 5px;
        background: #DFBD6C;
box-shadow: 0 4px 18px rgba(223, 189, 108, 0.35);
	color: #ffffff;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.mht-wellness-path__cta svg {
        transition: transform 0.18s ease-out;
	width: 0.95rem;
	height: 0.95rem;
	flex: 0 0 auto;
}

.mht-wellness-path__cta:hover,
.mht-wellness-path__cta:focus-visible {
	background: #E5C878;
	color: #ffffff;
}

.mht-wellness-path__media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: #2f7482;
}

.mht-wellness-path__media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
}

.mht-colombia {
	padding: 5rem 0;
	background: #003e4a;
	color: #ffffff;
	text-align: center;
}

.mht-colombia__title {
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(2rem, 3.6vw, 3.35rem);
	line-height: 1.15;
	color: #e5c158;
}

.mht-colombia__title span {
	display: block;
}

.mht-colombia__lead {
	margin: 1.25rem auto 0;
	max-width: 36rem;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: clamp(0.95rem, 1.2vw, 1.1rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

/*
 * "Tu proceso de transformación" — canvas de referencia proporcional.
 * .mht-process__canvas fija aspect-ratio 1920/1465 (proporción real de
 * proceso.png) y actúa como contenedor de consulta (container-type:
 * inline-size). Todo elemento interno se posiciona con top/left en %
 * de ese canvas (nunca del viewport) y su tipografía usa unidades
 * `cqw` (relativas al ancho del propio canvas), de modo que la
 * composición completa escala de forma proporcional en cualquier
 * tamaño de pantalla sin recalcular valores por breakpoint.
 */
.mht-process {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #003e4a;
}

.mht-process__canvas {
	position: relative;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 1920 / 1465;
	overflow: hidden;
	container-type: inline-size;
	container-name: mht-process;
}

.mht-process__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mht-process__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 20, 26, 0.28) 0%, rgba(0, 20, 26, 0.05) 30%, rgba(0, 20, 26, 0.22) 100%);
	pointer-events: none;
}

.mht-process__title {
	position: absolute;
	top: 4.5%;
	left: 50%;
	z-index: 2;
	margin: 0;
	transform: translateX(-50%);
	white-space: nowrap;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.05rem, 2.55cqw, 2.35rem);
	line-height: 1.2;
	text-align: center;
}

.mht-process__title,
.mht-process__title span,
.mht-process__title-gold,
.mht-process__title-white {
	font-style: normal !important;
}

.mht-process__title span {
	display: inline;
}

.mht-process__title-gold {
	color: #e5c158;
}

.mht-process__title-white {
	color: #ffffff;
	margin-left: 0.35em;
}

.mht-process__accent {
	position: absolute;
	top: 10.8%;
	left: 50%;
	z-index: 2;
	display: block;
	width: 6cqw;
	max-width: 2.75rem;
	height: 2px;
	transform: translateX(-50%);
	background: #e5c158;
}

.mht-process__line {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.mht-process__path {
	fill: none;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mht-process__path--gold {
	stroke: #e5c158;
	filter: drop-shadow(0 0 6px rgba(229, 193, 88, 0.55));
}

.mht-process.is-travel-on .mht-process__path--gold {
	stroke: rgba(255, 255, 255, 0.88);
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.mht-process__travel {
	pointer-events: none;
}

.mht-process__travel-path {
	fill: none;
	stroke: #e5c158;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0;
}

.mht-process__travel-path.is-ready {
	opacity: 1;
}

.mht-process__hover {
	pointer-events: none;
}

.mht-process__hover-path {
	fill: none;
	stroke: #e5c158;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 6px rgba(229, 193, 88, 0.55));
	opacity: 0;
	transition: opacity 150ms ease;
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
	.mht-process__line:has(.mht-process__hit-path--12:hover) .mht-process__hover-path--12,
	.mht-process__line:has(.mht-process__hit-path--23:hover) .mht-process__hover-path--23,
	.mht-process__line:has(.mht-process__hit-path--34:hover) .mht-process__hover-path--34 {
		opacity: 1;
	}
}

.mht-process__hover-path.is-on {
	opacity: 1;
}

.mht-process__hit {
	pointer-events: auto;
}

.mht-process__hit-path {
	fill: none;
	stroke: transparent;
	stroke-width: 24;
	stroke-linecap: butt;
	stroke-linejoin: miter;
	filter: none;
	pointer-events: stroke;
}

@media (prefers-reduced-motion: reduce) {
	.mht-process__hover-path {
		transition: none;
	}

	.mht-process__node--1,
	.mht-process__node--1-ring,
	.mht-process__node--2,
	.mht-process__node--2-ring,
	.mht-process__node--3,
	.mht-process__node--3-ring,
	.mht-process__node--4,
	.mht-process__node--4-ring {
		animation: none;
		transform: none;
	}

	.mht-process__step {
		animation: none;
		transform: none;
	}
}


.mht-process__path--white {
	stroke: rgba(255, 255, 255, 0.88);
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.mht-process__node {
	fill: #ffffff;
	stroke: rgba(0, 30, 36, 0.35);
	stroke-width: 2;
}

.mht-process__node--1 {
	fill: #ffffff;
	stroke: #e5c158;
	stroke-width: 2;
	filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

.mht-process__node--1-ring {
	fill: rgba(229, 193, 88, 0.18);
	stroke: #e5c158;
	stroke-width: 4;
	filter: drop-shadow(0 0 7px rgba(229, 193, 88, 0.65)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
}

.mht-process__node--1,
.mht-process__node--1-ring,
.mht-process__node--2,
.mht-process__node--2-ring,
.mht-process__node--3,
.mht-process__node--3-ring,
.mht-process__node--4,
.mht-process__node--4-ring {
	transform-box: fill-box;
	transform-origin: center;
}

.mht-process__node--2-ring,
.mht-process__node--3-ring,
.mht-process__node--4-ring {
	fill: rgba(229, 193, 88, 0.18);
	stroke: #e5c158;
	stroke-width: 4;
	filter: drop-shadow(0 0 7px rgba(229, 193, 88, 0.65)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
	opacity: 0;
}

.mht-process.is-travel-on .mht-process__node--1 {
	fill: #ffffff;
	stroke: rgba(0, 30, 36, 0.35);
	filter: none;
}

.mht-process.is-travel-on .mht-process__node--1-ring {
	opacity: 0;
}

.mht-process.is-travel-on .mht-process__node--1.is-lit,
.mht-process__node--2.is-lit,
.mht-process__node--3.is-lit,
.mht-process__node--4.is-lit {
	fill: #ffffff;
	stroke: #e5c158;
	stroke-width: 2;
	filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
	transform: scale(1.22);
}

.mht-process.is-travel-on .mht-process__node--1-ring.is-lit,
.mht-process__node--2-ring.is-lit,
.mht-process__node--3-ring.is-lit,
.mht-process__node--4-ring.is-lit {
	fill: rgba(229, 193, 88, 0.18);
	stroke: #e5c158;
	stroke-width: 4;
	filter: drop-shadow(0 0 7px rgba(229, 193, 88, 0.65)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
	opacity: 1;
	transform: scale(1.22);
}

.mht-process.is-travel-on .mht-process__node--1.is-arrive,
.mht-process__node--2.is-arrive,
.mht-process__node--3.is-arrive,
.mht-process__node--4.is-arrive {
	animation: mht-node-core-arrive 540ms ease-in-out 1 forwards;
}

.mht-process.is-travel-on .mht-process__node--1-ring.is-arrive,
.mht-process__node--2-ring.is-arrive,
.mht-process__node--3-ring.is-arrive,
.mht-process__node--4-ring.is-arrive {
	animation: mht-node-ring-arrive 540ms ease-in-out 1 forwards;
}

.mht-process.is-travel-on .mht-process__node--1.is-leave,
.mht-process__node--2.is-leave,
.mht-process__node--3.is-leave,
.mht-process__node--4.is-leave {
	animation: mht-node-core-leave 480ms ease-in-out 1 forwards;
}

.mht-process.is-travel-on .mht-process__node--1-ring.is-leave,
.mht-process__node--2-ring.is-leave,
.mht-process__node--3-ring.is-leave,
.mht-process__node--4-ring.is-leave {
	animation: mht-node-ring-leave 480ms ease-in-out 1 forwards;
}

@keyframes mht-node-core-arrive {
	0% {
		transform: scale(1);
		fill: #ffffff;
		stroke: rgba(0, 30, 36, 0.35);
		filter: none;
	}

	58% {
		transform: scale(1.22);
		fill: #ffffff;
		stroke: rgba(0, 30, 36, 0.35);
		filter: none;
	}

	100% {
		transform: scale(1.22);
		fill: #ffffff;
		stroke: #e5c158;
		filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
	}
}

@keyframes mht-node-ring-arrive {
	0% {
		transform: scale(1);
		opacity: 0;
		fill: rgba(229, 193, 88, 0.18);
		stroke: #e5c158;
		filter: none;
	}

	58% {
		transform: scale(1.22);
		opacity: 0;
		fill: rgba(229, 193, 88, 0.18);
		stroke: #e5c158;
		filter: none;
	}

	100% {
		transform: scale(1.22);
		opacity: 1;
		fill: rgba(229, 193, 88, 0.18);
		stroke: #e5c158;
		filter: drop-shadow(0 0 7px rgba(229, 193, 88, 0.65)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
	}
}

@keyframes mht-node-core-leave {
	0% {
		transform: scale(1.22);
		fill: #ffffff;
		stroke: #e5c158;
		filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
	}

	52% {
		transform: scale(0.92);
		fill: #ffffff;
		stroke: #e5c158;
		filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
	}

	100% {
		transform: scale(1);
		fill: #ffffff;
		stroke: rgba(0, 30, 36, 0.35);
		filter: none;
	}
}

@keyframes mht-node-ring-leave {
	0% {
		transform: scale(1.22);
		opacity: 1;
		fill: rgba(229, 193, 88, 0.18);
		stroke: #e5c158;
		filter: drop-shadow(0 0 7px rgba(229, 193, 88, 0.65)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
	}

	52% {
		transform: scale(0.92);
		opacity: 1;
		fill: rgba(229, 193, 88, 0.18);
		stroke: #e5c158;
		filter: drop-shadow(0 0 7px rgba(229, 193, 88, 0.65)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
	}

	100% {
		transform: scale(1);
		opacity: 0;
		fill: rgba(229, 193, 88, 0.18);
		stroke: #e5c158;
		filter: none;
	}
}


.mht-process__step {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 30%;
	max-width: 15.5rem;
}

.mht-process__step {
	pointer-events: none;
}

.mht-process.is-travel-on .mht-process__step {
	opacity: 0;
	transform: scale(0.96);
	transform-origin: left top;
}

.mht-process.is-travel-on .mht-process__step.is-arrive {
	animation: mht-step-arrive 540ms ease-in-out 1 forwards;
}

.mht-process.is-travel-on .mht-process__step.is-lit {
	opacity: 1;
	transform: scale(1.06);
	transform-origin: left top;
}

.mht-process.is-travel-on .mht-process__step.is-leave {
	animation: mht-step-leave 480ms ease-in-out 1 forwards;
}

@keyframes mht-step-arrive {
	0% {
		opacity: 0;
		transform: scale(0.96);
	}

	100% {
		opacity: 1;
		transform: scale(1.06);
	}
}

@keyframes mht-step-leave {
	0% {
		opacity: 1;
		transform: scale(1.06);
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}


.mht-process__step--4 {
	top: 15.5%;
	left: 27%;
}

.mht-process__step--3 {
	top: 28.5%;
	left: 63.5%;
}

.mht-process__step--2 {
	top: 41%;
	left: 22%;
}

.mht-process__step--1 {
	top: 54.5%;
	left: 66%;
}

.mht-process__number {
	color: #e5c158;
	font-family: Georgia, "Times New Roman", serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.75rem, 5.2cqw, 4.8rem);
	line-height: 1;
}

.mht-process__text {
	margin: 0.3em 0 0;
	color: #ffffff;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: clamp(0.56rem, 1.5cqw, 1rem);
	font-weight: 600;
	line-height: 1.32;
}

.mht-process__text span {
	display: block;
}

.mht-process__cta {
	position: absolute;
	bottom: 6%;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	transform: translateX(-50%);
	padding: 0.55em 1.3em;
	border: 1px solid #e5c158;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2px);
	color: #e5c158;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: clamp(0.55rem, 1.05cqw, 0.78rem);
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background-color 0.28s ease, color 0.28s ease;
}

.mht-process__cta:hover,
.mht-process__cta:focus-visible {
	background: #e5c158;
	color: #ffffff;
}

.mht-accompaniment {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #f0ece6;
	color: #003e4a;
}

.mht-accompaniment__media {
	margin: 0;
	min-height: 34rem;
	overflow: hidden;
}

.mht-accompaniment__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mht-accompaniment__copy {
	display: flex;
	align-items: center;
	background-color: #ffffff;
	padding-top: 3.5rem;
	padding-right: 6%;
	padding-bottom: 3.5rem;
	padding-left: clamp(64px, 13%, 120px);
}

.mht-accompaniment__copy-inner {
	width: 100%;
	max-width: 38rem;
}

.mht-accompaniment__accent {
	display: block;
	width: 2.35rem;
	height: 2px;
	margin: 0.95rem 0 1.6rem;
	background: #cba554;
}

.mht-accompaniment__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mht-accompaniment__list li {
	display: grid;
	grid-template-columns: 1.4rem 1fr;
	gap: 0.9rem;
	align-items: start;
	margin: 0 0 1.3rem;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 1rem;
	color: #4d4d4d;
	line-height: 1.6;
}

.mht-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.4rem;
	height: 1.4rem;
	margin-top: 0.2em;
	border: 1.5px solid #cba554;
	border-radius: 4px;
	color: #cba554;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
}

.mht-accompaniment__list strong {
	font-weight: 700;
	color: #005a63;
}

.mht-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	overflow: hidden;
	border-radius: 50%;
	background: #003e4a;
}

.mht-icon img {
	width: 1.85rem;
	height: 1.85rem;
	object-fit: contain;
}

.mht-why {
	position: relative;
}

.mht-why__canvas {
	position: relative;
	overflow: hidden;
	min-height: 34rem;
}

.mht-why__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mht-why__canvas::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 55, 63, 0.38);
	pointer-events: none;
}

.mht-why__inner {
	position: relative;
	z-index: 2;
	max-width: 920px;
	margin: 0 auto;
	padding: 5.5rem 6% 4.5rem;
	text-align: center;
}

.mht-why__title {
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.8rem, 2.6vw, 2.3rem);
	line-height: 1.2;
}

.mht-why__title span {
	display: inline;
}

.mht-why__title-gold {
	color: #e5c158;
}

.mht-why__title-white {
	color: #ffffff;
	margin-left: 0.35em;
}

.mht-why__accent {
	display: block;
	width: 2.35rem;
	height: 2px;
	margin: 1rem auto 3rem;
	background: #e5c158;
}

.mht-why__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 3rem;
	row-gap: 1.9rem;
	text-align: left;
}

.mht-why__col {
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mht-why__item {
	display: flex;
	align-items: flex-start;
	gap: 1.1rem;
}

.mht-why__number {
	flex: 0 0 auto;
	color: #e5c158;
	font-family: Georgia, "Times New Roman", serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(3.4rem, 4.4vw, 4.3rem);
	line-height: 1;
}

.mht-why__text {
	margin: 0;
	padding-top: 0.4rem;
	color: #ffffff;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.55;
}

.mht-why__text span {
	display: block;
}

.mht-why__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.6rem;
	padding: 0.55rem 1.15rem;
	border: 1px solid #e5c158;
	border-radius: 3px;
	background: transparent;
	color: #e5c158;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background-color 0.28s ease, color 0.28s ease;
}

.mht-why__cta-arrow {
        transition: transform 0.18s ease-out;
	display: inline-block;
	margin-left: 0.3em;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.mht-why__cta:hover,
.mht-why__cta:focus-visible {
	background: #e5c158;
	color: #ffffff;
}

.mht-referente {
	padding: 4.6rem 0 4.2rem;
	background-color: #f7f3ec;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='36' viewBox='0 0 240 36'%3E%3Cpath d='M0 18 Q30 6 60 18 T120 18 T180 18 T240 18' fill='none' stroke='%23EFE6D2' stroke-width='0.7' opacity='0.9'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 240px 36px;
}

.mht-referente__title {
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.7rem, 2.55vw, 2.35rem);
	line-height: 1.2;
	text-align: center;
}

.mht-referente__title span {
	display: block;
}

.mht-referente__title-gold {
	color: #cba554;
}

.mht-referente__title-teal {
	color: #3b8e9e;
}

.mht-referente__accent {
	display: block;
	width: 2.5rem;
	height: 2px;
	margin: 1.05rem auto 2.8rem;
	background: #cba554;
}

.mht-referente__grid {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 1.15rem;
}

.mht-referente__card {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 0;
	min-height: 16.8rem;
	padding: 2rem 1.05rem 1.7rem;
	border-radius: 20px;
	background: #004851;
	text-align: center;
	transform-origin: center center;
	transition: transform 0.28s ease;
}

.mht-referente__card:nth-child(even) {
	background: #16626F;
}

.mht-referente__card:hover,
.mht-referente__card:focus-visible {
	z-index: 2;
	transform: translateY(-10px) scale(1.05);
}

.mht-referente__icon {
	display: block;
	width: 5.1rem;
	height: 5.1rem;
	margin: 0 auto 1.2rem;
	object-fit: contain;
}

.mht-referente__card--center .mht-referente__icon {
	width: 5.85rem;
	height: 5.85rem;
	margin-bottom: 1.45rem;
}

.mht-referente__text {
	margin: 0;
	color: #ffffff;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 0.95rem;
	line-height: 1.42;
}

.mht-referente__text span {
	display: block;
}

@media (max-width: 1100px) {
	.mht-specialties__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mht-wellness-path__content {
		padding: 3.4rem 7%;
	}

	.mht-accompaniment {
		grid-template-columns: 1fr;
	}

	.mht-accompaniment__media {
		min-height: 24rem;
	}

	.mht-accompaniment__copy {
		padding: 3rem 7%;
	}

	.mht-why__inner {
		padding: 4.5rem 7% 3.8rem;
	}

	.mht-why__columns {
		column-gap: 2rem;
	}

	.mht-referente {
		padding: 3.8rem 0 3.4rem;
	}

	.mht-referente__grid {
		flex-wrap: wrap;
	}

	.mht-referente__card {
		flex: 1 1 calc(50% - 1rem);
		min-height: 15.5rem;
		max-width: 20rem;
	}

	.mht-referente__card--center {
		flex: 1 1 calc(50% - 1rem);
		max-width: 20rem;
		min-height: 15.5rem;
		margin: 0;
	}
}

@media (max-width: 799px) {
	.mht-wellness-path {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
	}

	.mht-wellness-path__content {
		padding: 3.2rem 8% 2.6rem;
	}

	.mht-wellness-path__media {
		min-height: 22rem;
		height: 58vw;
		max-height: 28rem;
	}

}

@media (max-width: 699px) {
	.mht-process__step {
		width: 34%;
	}

	.mht-process__cta {
		bottom: 4%;
	}

	.mht-specialties {
		padding: 3.5rem 0;
	}

	.mht-specialties__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 0.9rem;
	}

	.mht-specialty-card {
		aspect-ratio: 6 / 7;
		max-width: 26rem;
		margin: 0 auto;
	}

	.mht-accompaniment__media {
		min-height: 20rem;
	}

	.mht-accompaniment__copy {
		padding: 2.6rem 8%;
	}

	.mht-why__canvas {
		min-height: 0;
	}

	.mht-why__inner {
		padding: 3.6rem 8% 3.2rem;
	}

	.mht-why__columns {
		grid-template-columns: 1fr;
		row-gap: 1.8rem;
	}

	.mht-why__col {
		gap: 1.6rem;
	}

	.mht-referente {
		padding: 3.2rem 0 3rem;
	}

	.mht-referente__grid {
		flex-direction: column;
		align-items: stretch;
	}

	.mht-referente__card,
	.mht-referente__card--center {
		flex: none;
		width: 100%;
		max-width: 24rem;
		min-height: 0;
		margin: 0 auto;
		padding: 1.5rem 1.2rem;
	}

	.mht-colombia {
		padding: 3.4rem 0;
	}
}

@media (max-width: 1023px) {
	.mht-hero__content {
		padding: 150px 12% 130px;
	}

	.mht-hero__title {
		font-size: clamp(1.55rem, 5vw, 2.4rem);
	}

	.mht-hero__arrow {
		width: 42px;
		height: 42px;
		top: auto;
		bottom: 118px;
		transform: none;
	}

	.mht-hero__arrow--prev {
		left: 18px;
	}

	.mht-hero__arrow--next {
		right: 18px;
	}
}

@media (max-width: 599px) {


      .mht-hero {
		height: auto;
		min-height: 480px;
		max-height: 100dvh;
		aspect-ratio: 3 / 4;
	}
	.mht-hero__content {
		padding: 140px 8% 150px;
	}

	.mht-hero__title {
		font-size: clamp(1.4rem, 6.4vw, 1.9rem);
	}

	.mht-hero__subtitle {
		font-size: 0.9rem;
		letter-spacing: 0.03em;
	}

	.mht-hero__dots {
		bottom: 72px;
	}

	.mht-hero__scroll {
		bottom: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mht-hero__scroll-wheel {
		animation: none;
	}
}

.mht-destinos {
	position: relative;
	overflow: hidden;
	padding: 4.4rem 0 5rem;
	background: linear-gradient(90deg, #002f36 0%, #0a5860 42%, #3aa8ad 100%);
	color: #ffffff;
}

.mht-destinos__inner {
	width: min(1240px, 92%);
	margin: 0 auto;
}

.mht-destinos__title {
	margin: 0;
	font-family: "Poly", Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.7rem, 2.6vw, 2.35rem);
	line-height: 1.2;
	text-align: center;
}

.mht-destinos__title-gold {
	color: #e5c158;
}

.mht-destinos__title-white {
	color: #ffffff;
	margin-left: 0.35em;
}

.mht-destinos__accent {
	display: block;
	width: 2.4rem;
	height: 2px;
	margin: 0.95rem auto 2.6rem;
	background: #e5c158;
}

.mht-destinos__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
	gap: 1.5rem;
	align-items: center;
}

.mht-destinos__map-col {
	position: relative;
}

.mht-destinos__map-note {
	position: absolute;
	top: 8%;
	right: 2%;
	z-index: 2;
	margin: 0;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.78rem;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
	text-align: left;
}

.mht-destinos__map-note span {
	display: block;
}

.mht-destinos__map {
	position: relative;
	width: 100%;
	max-width: 28rem;
	margin: 0 auto;
}

.mht-destinos__map-img {
	display: block;
	width: 100%;
	height: auto;
	mix-blend-mode: lighten;
	pointer-events: none;
}

.mht-destinos__marker {
	position: absolute;
	z-index: 3;
	width: 14px;
	height: 14px;
	padding: 0;
	border: 0;
	background: transparent;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.mht-destinos__pin {
	display: block;
	width: 14px;
	height: 14px;
	border: 2px solid #e5c158;
	border-radius: 50%;
	background: #cba554;
	box-shadow: 0 0 0 3px rgba(0, 30, 36, 0.45);
	transition: box-shadow 0.25s ease, background 0.25s ease;
}

.mht-destinos__marker.is-active .mht-destinos__pin {
	background: #e5c158;
	box-shadow: 0 0 0 7px rgba(10, 107, 115, 0.7);
}

.mht-destinos__marker-label {
	position: absolute;
	top: 50%;
	left: calc(100% + 6px);
	display: none;
	padding: 0.22rem 0.55rem;
	border-radius: 3px;
	background: #0a6b73;
	color: #ffffff;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transform: translateY(-50%);
	pointer-events: none;
}

.mht-destinos__marker.is-active .mht-destinos__marker-label {
	display: block;
}

.mht-destinos__carousel {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 28rem;
}

.mht-destinos__stage {
	position: relative;
	flex: 1;
	height: 26rem;
	overflow: hidden;
}

.mht-destinos__card {
	position: absolute;
	top: 50%;
	left: 8%;
	width: 15.4rem;
	height: 22.4rem;
	overflow: hidden;
	border-radius: 18px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) scale(0.78) translateX(78%);
	transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
	cursor: pointer;
}

.mht-destinos__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(0);
	transition: filter 0.35s ease;
}

.mht-destinos__card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 18, 22, 0.16);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.mht-destinos__card-copy {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: 2.4rem 1rem 1.1rem;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 20, 24, 0.82) 70%);
}

.mht-destinos__card-copy h3 {
	margin: 0 0 0.35rem;
	color: #e5c158;
	font-family: "Poly", Georgia, serif;
	font-size: 1.35rem;
	font-weight: 400;
}

.mht-destinos__card-copy p {
	margin: 0;
	color: #ffffff;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.72rem;
	line-height: 1.4;
}

.mht-destinos__card-cta {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	padding: 0.5rem 0.9rem;
	border: 1px solid #e5c158;
	border-radius: 3px;
	background: rgba(0, 30, 36, 0.55);
	color: #e5c158;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: opacity 0.35s ease, background-color 0.28s ease, color 0.28s ease;
}

.mht-destinos__card.is-active:hover img,
.mht-destinos__card.is-next:hover img {
	filter: blur(8px);
}

.mht-destinos__card.is-active:hover::before,
.mht-destinos__card.is-next:hover::before {
	opacity: 1;
}

.mht-destinos__card.is-active:hover .mht-destinos__card-cta,
.mht-destinos__card.is-next:hover .mht-destinos__card-cta {
	opacity: 1;
	pointer-events: auto;
}

.mht-destinos__card-cta:hover {
	background: #e5c158;
	color: #ffffff;
}

.mht-destinos__card.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-50%) scale(1) translateX(0);
	box-shadow:
		0 12px 26px rgba(0, 0, 0, 0.26),
		0 16px 32px rgba(229, 193, 88, 0.16),
		0 10px 24px rgba(255, 255, 255, 0.18);
}

.mht-destinos__card.is-active::after {
	content: "";
	position: absolute;
	right: 14%;
	bottom: -2px;
	left: 14%;
	height: 14px;
	pointer-events: none;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.42) 0%, rgba(229, 193, 88, 0.12) 45%, rgba(255, 255, 255, 0) 75%);
	filter: blur(6px);
}

.mht-destinos__card.is-next {
	z-index: 1;
	opacity: 0.72;
	pointer-events: auto;
	filter: saturate(0.85);
	transform: translateY(-50%) scale(0.8) translateX(92%);
}

.mht-destinos__arrow {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #e5c158;
	cursor: pointer;
}

.mht-destinos__arrow svg {
	width: 1.7rem;
	height: 1.7rem;
}

.mht-destinos__carousel .mht-destinos__arrow {
	width: 48px;
	height: 48px;
}

.mht-destinos__carousel .mht-destinos__arrow svg {
	width: 32px;
	height: 32px;
}

.mht-destinos__carousel .mht-destinos__arrow svg path {
	stroke-width: 1.9;
}

.mht-destinos-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem 4%;
}

.mht-destinos-modal[hidden] {
	display: none;
}

.mht-destinos-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 18, 22, 0.62);
}

.mht-destinos-modal__dialog {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: min(980px, 92vw);
	max-height: 86vh;
	overflow: hidden;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.mht-destinos-modal__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 32rem;
	object-fit: cover;
}

.mht-destinos-modal__copy {
	position: relative;
	overflow: auto;
	padding: 2.1rem 2.2rem 1.8rem;
	background: #ffffff;
	color: #2c4a4e;
}

.mht-destinos-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #e5c158;
	color: #ffffff;
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
}

.mht-destinos-modal__city {
	margin: 0 0 0.35rem;
	color: #cba554;
	font-family: "Poly", Georgia, serif;
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	font-weight: 400;
}

.mht-destinos-modal__subtitle {
	margin: 0 0 1rem;
	color: #003e4a;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
}

.mht-destinos-modal__body p {
	margin: 0 0 0.75rem;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.82rem;
	line-height: 1.55;
	color: #3d5558;
}

.mht-destinos-modal__section-title {
	margin: 1rem 0 0.4rem;
	color: #cba554;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.86rem;
	font-weight: 700;
}

.mht-destinos-modal__list {
	margin: 0 0 0.7rem;
	padding: 0 0 0 1.1rem;
	color: #3d5558;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.82rem;
	line-height: 1.5;
}

.mht-destinos-modal__list li::marker {
	color: #0a6b73;
}

.mht-destinos-modal__cta {
	margin: 1.1rem 0 0;
	color: #cba554;
	font-family: "Poly", Georgia, serif;
	font-size: 1.05rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.35;
}

.mht-destinos-modal__arrow {
	position: relative;
	z-index: 3;
	margin: 0 0.4rem;
}

.mht-destinos-modal__dots {
	position: relative;
	z-index: 3;
	display: flex;
	gap: 0.45rem;
	margin-top: 1rem;
}

.mht-destinos-modal__dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #e5c158;
	cursor: pointer;
}

.mht-destinos-modal__dot.is-active {
	background: #ffffff;
}

body.mht-destinos-modal-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.mht-destinos__layout {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	.mht-destinos__map-note {
		position: static;
		margin: 0 0 0.6rem;
		text-align: center;
	}

	.mht-destinos__map {
		max-width: 22rem;
	}

	.mht-destinos__carousel {
		min-height: 24rem;
	}

	.mht-destinos-modal__dialog {
		grid-template-columns: 1fr;
		max-height: 90vh;
		overflow: auto;
	}

	.mht-destinos-modal__media img {
		min-height: 16rem;
	}
}

@media (max-width: 699px) {
	.mht-destinos {
		padding: 3.2rem 0 3.4rem;
	}

	.mht-destinos__stage {
		height: 22rem;
	}

	.mht-destinos__card {
		width: 13.2rem;
		height: 19.2rem;
		left: 6%;
	}

	.mht-destinos__card.is-next {
		transform: translateY(-50%) scale(0.78) translateX(78%);
	}

	.mht-destinos-modal {
		padding: 1.2rem 3%;
	}

	.mht-destinos-modal__copy {
		padding: 1.5rem 1.2rem 1.4rem;
	}

	.mht-destinos-modal__arrow {
		display: none;
	}
}

.mht-team {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 34rem;
	background: #ffffff;
}

.mht-team__media {
	min-height: 34rem;
	overflow: hidden;
}

.mht-team__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.mht-team__copy {
	display: flex;
	align-items: center;
	background: #ffffff;
	padding: 3.4rem clamp(2rem, 8%, 5.5rem) 3.4rem clamp(2.2rem, 7%, 4.8rem);
}

.mht-team__copy-inner {
	max-width: 32rem;
}

.mht-team__name {
	margin: 0;
	color: #d2a856;
	font-family: "Poly", Georgia, "Times New Roman", serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.15rem, 2.6vw, 2.5rem);
	line-height: 1.15;
}

.mht-team__accent {
	display: block;
	width: 90px;
	height: 2px;
	margin: 0.75rem 0 0.85rem;
	background: #d2a856;
}

.mht-team__role {
	margin: 0 0 1.2rem;
	color: #3b8b99;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 1.0625rem;
	font-weight: 400;
}

.mht-team__text p,
.mht-team__more-content p {
	margin: 0 0 1.5rem;
	color: #777777;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.97rem;
	font-weight: 400;
	line-height: 1.5;
}

.mht-team__text p:last-child,
.mht-team__more-content p:last-child {
	margin-bottom: 0;
}

.mht-team__text strong,
.mht-team__more-content strong {
	font-weight: 600;
	color: #777777;
}

.mht-team__more-content {
	max-height: 0;
	margin: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease, visibility 0.3s ease;
}

.mht-team__more-content.is-open {
	max-height: 28rem;
	margin-top: 1.5rem;
	opacity: 1;
	visibility: visible;
}

.mht-team .mht-team__more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.4rem;
	padding: 10px 14px;
	border: 1.5px solid #d2a856;
	border-radius: 6px;
	background: #ffffff;
	color: #d2a856;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.28s ease, color 0.28s ease;
}

.mht-team__more-icon {
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
	color: inherit;
}

.mht-team .mht-team__more:hover,
.mht-team .mht-team__more:focus,
.mht-team .mht-team__more:focus-visible,
.mht-team .mht-team__more:active {
	background: #d2a856 !important;
	background-color: #d2a856 !important;
	color: #ffffff !important;
	box-shadow: none;
	outline: none;
}

.mht-team__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #d2a856;
	transform: translateY(-50%);
	cursor: pointer;
}

.mht-team__arrow svg {
	width: 34px;
	height: 34px;
}

.mht-team__arrow--prev {
	left: 10px;
}

.mht-team__arrow--next {
	right: 10px;
}

@media (max-width: 1100px) {
	.mht-team {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.mht-team__media {
		min-height: 26rem;
		height: 58vw;
		max-height: 32rem;
	}

	.mht-team__copy {
		padding: 2.6rem 10% 3rem;
	}

	.mht-team__arrow--prev {
		left: 6px;
	}

	.mht-team__arrow--next {
		right: 6px;
	}
}


/* --- Modal de asesoría del Home (duplicado independiente de #mht-bienestar-talk) --- */
body.mht-home-talk-open {
	overflow: hidden;
}

.mht-home-talk[hidden] {
	display: none !important;
}

.mht-home-talk:not([hidden]) {
	position: fixed;
	inset: 0;
	z-index: 40000;
	overflow: visible;
}

.mht-home-talk__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 36, 44, 0.5);
}

.mht-home-talk__panel {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: 100%;
	align-items: stretch;
	box-sizing: border-box;
	width: 840px;
	max-width: calc(100vw - 5.5rem);
	height: 540px;
	max-height: calc(100vh - 4.25rem);
	overflow: visible;
	border-radius: 1.35rem;
	background: #ffffff;
	box-shadow: 0 18px 48px rgba(0, 18, 24, 0.32);
	transform: translate(-50%, -50%);
}

.mht-home-talk__panel > button.mht-home-talk__close {
	appearance: none !important;
	-webkit-appearance: none !important;
	position: absolute !important;
	top: -14px !important;
	right: -14px !important;
	left: auto !important;
	bottom: auto !important;
	z-index: 9999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: start !important;
	justify-self: end !important;
	box-sizing: border-box !important;
	flex: 0 0 44px !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	max-width: 44px !important;
	max-height: 44px !important;
	overflow: visible !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #e5c778 !important;
	box-shadow: none !important;
	color: #ffffff !important;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 22px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	cursor: pointer;
}

.mht-home-talk__media {
	position: relative;
	min-width: 0;
	min-height: 0;
	align-self: stretch;
	overflow: hidden;
	border-radius: 1.35rem 0 0 1.35rem;
	background: #12343c;
}

.mht-home-talk__media img {
	position: absolute !important;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center 58%;
}

.mht-home-talk__form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
	min-width: 0;
	padding: clamp(0.9rem, 1.8vw, 1.2rem) clamp(1.1rem, 2.4vw, 1.55rem) clamp(0.85rem, 1.5vw, 1.05rem);
	overflow: auto;
	border-radius: 0 1.35rem 1.35rem 0;
}

.mht-home-talk h2.mht-home-talk__title {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	color: #5e9894;
	font-family: "Poly", Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.1vw, 1.58rem);
	font-style: normal;
	font-weight: 400;
	font-synthesis: none;
	line-height: 1.12;
	text-align: left;
	text-transform: none;
}

.mht-home-talk__title span {
	display: block;
	font-style: normal;
}

.mht-home-talk__title-gold {
	color: #d9b76a;
}

.mht-home-talk__title-teal {
	color: #5e9894;
}

.mht-home-talk__accent {
	display: block;
	width: 60px;
	height: 2px;
	margin: 0.35rem 0 0.7rem;
	background: #e5c778;
}

.mht-home-talk__text {
	margin: 0 0 0.9rem;
	color: #a9c0c2;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.45;
}

.mht-home-talk__field {
	display: grid;
	grid-template-columns: 28px 1fr;
	column-gap: 10px;
	align-items: center;
	width: 100%;
	min-height: 42px;
	margin: 0 0 14px;
	padding: 0;
	border: none;
	background: transparent;
	color: #5e9894;
}

.mht-home-talk__field--area {
	align-items: start;
	min-height: 42px;
	padding: 0;
}

.mht-home-talk__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 29px;
	min-width: 29px;
	height: 29px;
	margin: 0;
	color: #5e9894;
	font-size: 29px;
	line-height: 1;
}

.mht-home-talk__field--area .mht-home-talk__icon {
	margin-top: 6px;
}

.mht-home-talk__icon svg {
	display: block;
	width: 29px !important;
	height: 29px !important;
	max-width: 29px !important;
	flex-shrink: 0;
}

.mht-home-talk__field input,
.mht-home-talk__field textarea {
	width: 100% !important;
	min-width: 0;
	height: auto !important;
	min-height: 0 !important;
	margin: 0;
	padding: 6px 0 8px !important;
	border: none !important;
	border-bottom: 1px solid #84b9b4 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #a9c0c2 !important;
	font-family: "Noto Sans", "Segoe UI", sans-serif;
	font-size: 13px !important;
	font-weight: 400;
	line-height: 1.3;
	text-transform: none;
	resize: none;
}

.mht-home-talk__field textarea {
	height: auto !important;
	min-height: 42px !important;
}

.mht-home-talk__field input:focus,
.mht-home-talk__field textarea:focus {
	outline: none;
	box-shadow: none !important;
}

.mht-home-talk__field input::placeholder,
.mht-home-talk__field textarea::placeholder {
	color: #a9c0c2 !important;
	font-size: 13px !important;
	font-weight: 400;
	opacity: 1;
	text-transform: none;
}

.mht-home-talk__submit {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	align-self: center;
	gap: 0.35rem;
	width: auto !important;
	min-width: 0 !important;
	max-width: 100%;
	height: auto !important;
	min-height: 0 !important;
	margin: 1.75rem auto 0 !important;
	padding: 0.48em 1.2em !important;
	border: 0 !important;
	border-radius: 50px !important;
	background: #277a82 !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #d2ac67 !important;
	font-family: "Poly", Georgia, "Times New Roman", serif;
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-transform: none !important;
	cursor: pointer;
}

.mht-home-talk__submit:hover,
.mht-home-talk__submit:focus-visible {
	background: #1f656c !important;
	color: #d2ac67 !important;
}

@media (max-width: 900px) and (min-width: 640px) {
	.mht-home-talk__panel {
		width: min(840px, calc(100vw - 3.5rem));
		height: min(540px, calc(100vh - 4.25rem));
	}

	.mht-home-talk h2.mht-home-talk__title {
		font-size: 1.42rem;
	}
}

@media (max-width: 639px) {
	.mht-home-talk:not([hidden]) {
		overflow: auto;
	}

	.mht-home-talk__panel {
		top: 1.25rem;
		left: 50%;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto;
		width: min(22.5rem, calc(100vw - 1.5rem));
		height: auto;
		max-height: none;
		margin: 0 0 1.5rem;
		transform: translate(-50%, 0);
	}

	.mht-home-talk__close {
		top: -0.55rem;
		right: -0.35rem;
	}

	.mht-home-talk__media {
		height: 11.5rem;
		min-height: 11.5rem;
		border-radius: 1.35rem 1.35rem 0 0;
	}

	.mht-home-talk__media img {
		object-position: center 52%;
	}

	.mht-home-talk__form {
		padding: 1rem 1.15rem 1.1rem;
		border-radius: 0 0 1.35rem 1.35rem;
	}

	.mht-home-talk h2.mht-home-talk__title {
		font-size: 1.38rem;
	}
}

@media (max-height: 560px) and (min-width: 640px) {
	.mht-home-talk:not([hidden]) {
		overflow: auto;
	}

	.mht-home-talk__panel {
		top: 50%;
		transform: translate(-50%, -50%);
	}
}

