/**
 * Home premium v2 — layout narrativo, mobile-first, CRO.
 *
 * Diagnóstico split / columna negra izquierda:
 * - Archivo: template-parts/page/content-page.php (theme hijo, antes del cambio).
 * - Contenedor: #content-wrapper con clases "container flex" (Orbital).
 * - Efecto: display:flex en fila + segundo hijo #secondary.widget-area (widget-pages.php)
 *   cuando orbital_get_option_page('sidebar') está activo → ~50% ancho vacío con fondo --ds-bg.
 * - Corrección: portada sin ese wrapper (front-page.php + rama is_front_lp en content-page.php);
 *   landing PHP: main.ds-lp-app directo sin #content-wrapper.
 */

body.ds-home-premium-v2,
body.ds-premium-page {
	/* Paleta editorial / hospitalidad (referencia internacional DITS, propia para México) */
	--bg-main: #f7f4ef;
	--bg-soft: #efe7dc;
	--surface: #fffdf9;
	--text-main: #1f2430;
	--text-muted: #434a54;
	--text-soft: #5b7a9f;
	--brand-blue: #0d3570;
	--brand-blue-2: #202c58;
	--accent-sand: #e8bf96;
	--border-soft: #d9cbb8;
	--ds-home-y: clamp(4rem, 11vw, 8.5rem);
	--ds-home-x: clamp(1.35rem, 5.5vw, 4rem);
	--ds-home-max: 1180px;
	--ds-home-line: rgba(13, 53, 112, 0.1);
	--ds-bg: var(--bg-main);
	--ds-gold: var(--accent-sand);
	--ds-white: var(--text-main);
	/* Titulares: serif editorial; UI: sans limpia (Manrope + Inter) */
	--font-display: "Cormorant Garamond", "DM Serif Display", ui-serif, Georgia, "Times New Roman", serif;
	--font-body: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ds-font-display: var(--font-display);
	--ds-font-body: var(--font-body);
	background-color: var(--bg-main);
	color: var(--text-main);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ds-home-premium-v2 {
	/* alias histórico: tokens viven en body */
}

/* Shell: sin sidebar, ancho real (legacy .ds-home-wrapper + landing PHP .ds-lp-main) */
.ds-home-premium .ds-home-wrapper,
.ds-lp-main,
.ds-lp-app,
.ds-front-page-fullwidth {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	display: block;
	box-sizing: border-box;
}

.ds-front-page-canvas {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* =============================================================================
   Sistema tipográfico: DM Serif Display + Cormorant + Inter (tokens en body).
   ============================================================================= */

/* =============================================================================
   Landing PHP — acabado final premium (.ds-built-landing)
   ============================================================================= */

.ds-built-landing {
	--ds-bl-gold: #e8bf96;
	--ds-bl-gold-soft: rgba(232, 191, 150, 0.45);
	--ds-bl-ink: #1f2430;
	--ds-bl-ink-2: #202c58;
	--ds-bl-cream: #1f2430;
	--ds-bl-muted: #242a32;
	--text-soft: #5b7a9f;
	--ds-bl-x: clamp(1.1rem, 4.2vw, 2.5rem);
	--ds-bl-y: clamp(2.75rem, 8vw, 5.25rem);
	--ds-bl-max: 1180px;
}

.ds-built-landing .ds-built-landing__root,
.ds-built-landing .ds-lp-root {
	padding: 0;
}

/* —— Hero: composición editorial, overlay radial + lineal, CTAs pill —— */
.ds-bl-hero {
	--ds-bl-nav-h: 56px;
	--ds-hero-white: #ffffff;
	--ds-hero-accent: #8fd4ff;
	--ds-hero-white-soft: rgba(255, 255, 255, 0.94);
	--ds-hero-white-muted: rgba(255, 255, 255, 0.9);
	--ds-hero-gold-1: #e8bf96;
	--ds-hero-gold-2: #f2cfa8;
	--ds-hero-copper: #f0c995;
	--ds-hero-border-soft: rgba(255, 255, 255, 0.2);
	--ds-hero-shadow-gold: 0 14px 40px rgba(0, 0, 0, 0.25);
	--ds-hero-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
	/* Legibilidad máxima: todo blanco sobre overlay oscuro */
	--ds-hero-cream: #ffffff;
	--ds-hero-txt-sh: 0 2px 10px rgba(0, 0, 0, 0.4);
	--ds-hero-txt-sh-mid: 0 2px 12px rgba(0, 0, 0, 0.38);
	--ds-hero-txt-sh-strong: 0 4px 24px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.35);
	--ds-hero-txt-sh-trust: 0 2px 10px rgba(0, 0, 0, 0.4);

	position: relative;
	isolation: isolate;
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--ds-bl-nav-h) + env(safe-area-inset-top, 0)) var(--ds-bl-x)
		calc(3.5rem + env(safe-area-inset-bottom, 0));
	box-sizing: border-box;
	background-color: #f5f0e8;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* FOUC: imagen LCP visible al instante; solo el bloque de copy hace fade-in */
.ds-bl-hero.ds-bl-hero--await-load {
	opacity: 1;
	pointer-events: none;
	transition: none;
}

.ds-bl-hero.ds-bl-hero--await-load .ds-bl-hero__inner {
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
}

.ds-bl-hero.ds-bl-hero--entered {
	pointer-events: auto;
}

.ds-bl-hero.ds-bl-hero--entered .ds-bl-hero__inner {
	opacity: 1;
	transform: none;
	pointer-events: auto;
	transition: opacity 0.42s ease, transform 0.42s ease;
}

.ds-bl-hero--gradient {
	background-image: radial-gradient(ellipse 120% 85% at 50% 12%, rgba(232, 191, 150, 0.2) 0%, transparent 55%),
		linear-gradient(168deg, #f5f0e8 0%, #ede5da 45%, #fffdf9 100%);
}

.ds-bl-hero__bg,
.ds-bl-hero__picture,
.ds-bl-hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ds-bl-hero__picture {
	margin: 0;
	padding: 0;
	line-height: 0;
	pointer-events: none;
}

.ds-bl-hero__poster {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
	/* Sin filter ni scale agresivo: el LCP pinta más rápido y evita capas costosas */
	filter: none;
	transform: scale(1.01);
	transform-origin: center center;
}

.ds-bl-hero__bg {
	background-size: cover;
	background-position: center 28%;
	background-repeat: no-repeat;
	filter: brightness(0.94) contrast(1.03) saturate(1.05);
	transform: scale(1.05);
	transform-origin: center center;
}

.ds-bl-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: brightness(0.94) contrast(1.03) saturate(1.05);
	transform: scale(1.05);
	transform-origin: center center;
}

.ds-bl-hero--has-video .ds-bl-hero__picture {
	z-index: 0;
}

.ds-bl-hero--has-video .ds-bl-hero__video {
	z-index: 1;
}

/* Vídeo diferido: en viewport estrecho solo poster (menos bytes y mejor LCP). */
@media (max-width: 767px) {
	.ds-bl-hero--has-video .ds-bl-hero__video {
		display: none !important;
	}
}

.ds-bl-hero--video-failed .ds-bl-hero__video {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.ds-bl-hero__video,
	.ds-bl-hero__bg,
	.ds-bl-hero__poster {
		transform: scale(1);
	}

	.ds-bl-hero.ds-bl-hero--await-load .ds-bl-hero__inner,
	.ds-bl-hero.ds-bl-hero--entered .ds-bl-hero__inner {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/*
 * Overlay oscuro fuerte: prioridad legibilidad (texto blanco siempre legible).
 */
.ds-bl-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(5, 10, 20, 0.65) 0%, rgba(5, 10, 20, 0.55) 40%, rgba(5, 10, 20, 0.75) 100%);
}

/* Fallback sin vídeo */
.ds-bl-hero--gradient:not(.ds-bl-hero--has-video) .ds-bl-hero__overlay {
	background: linear-gradient(180deg, rgba(5, 10, 20, 0.6) 0%, rgba(5, 10, 20, 0.52) 40%, rgba(5, 10, 20, 0.7) 100%);
}

.ds-bl-hero__inner,
.ds-bl-hero .hero-content {
	position: relative;
	z-index: 2;
	width: min(61.25rem, calc(100% - clamp(1.25rem, 5vw, 2rem)));
	max-width: 61.25rem;
	margin-inline: auto;
	padding-top: clamp(1rem, 3vh, 2rem);
	padding-bottom: clamp(1rem, 3vh, 2rem);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #ffffff;
	isolation: isolate;
}

/*
 * Forzar copy del hero: blanco legible (gana a CSS global del tema).
 * Excepción: ciudad en azul; botones .btn-premium conservan sus propios colores.
 */
.ds-bl-hero__inner :where(p, h1, li, span):not(.btn-premium):not(.btn-premium *):not(.ds-bl-hero__city):not(.hero__city),
.ds-bl-hero .hero-content :where(p, h1, li, span):not(.btn-premium):not(.btn-premium *):not(.ds-bl-hero__city):not(.hero__city) {
	color: #ffffff !important;
}

.ds-bl-hero__inner .ds-bl-hero__lead,
.ds-bl-hero__inner .ds-bl-hero__cta-hint,
.ds-bl-hero__inner .ds-bl-hero__microcopy,
.ds-bl-hero__inner .hero__microcopy,
.ds-bl-hero__inner .ds-bl-hero__eyebrow {
	color: #ffffff !important;
}

.ds-bl-hero__inner .ds-bl-hero__meta,
.ds-bl-hero__inner .ds-bl-hero__meta-bit:not(.ds-bl-hero__city):not(.hero__city),
.ds-bl-hero__inner .ds-bl-hero__meta-bit--emotion {
	color: #ffffff !important;
}

/* Sin animación escalonada en hijos (Lighthouse / compositor; el fade lo lleva .ds-bl-hero--entered). */
.ds-bl-hero__inner > * {
	opacity: 1;
	transform: none;
}

.ds-bl-hero__eyebrow {
	font-family: var(--ds-font-body);
	font-size: 0.75rem;
	line-height: 1.35;
	font-weight: 300;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 1.125rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	display: inline-block;
	text-shadow: var(--ds-hero-txt-sh);
}

.ds-bl-hero__meta {
	margin: 0 0 1rem;
	max-width: 42rem;
	font-family: var(--ds-font-body);
	font-size: clamp(0.75rem, 1.65vw, 0.8125rem);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ffffff;
	text-wrap: balance;
	text-shadow: var(--ds-hero-txt-sh);
}

/* Único acento azul en el bloque meta: nombre de ciudad */
.ds-bl-hero__city,
.hero__city {
	color: #a8dfff !important;
	font-weight: 700;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 0 24px rgba(120, 200, 255, 0.5);
}

.ds-bl-hero__meta-sep {
	margin: 0 0.35em;
	opacity: 0.45;
	font-weight: 500;
}

.ds-bl-hero__meta-bit--emotion {
	letter-spacing: 0.08em;
	font-weight: 500;
	font-style: italic;
	text-transform: none;
	color: #ffffff;
	text-shadow: var(--ds-hero-txt-sh);
}

.ds-bl-hero__title,
.ds-bl-hero .hero-title {
	font-family: var(--ds-font-display);
	font-size: inherit;
	font-weight: 300;
	line-height: 1.02;
	letter-spacing: -0.02em;
	text-align: center;
	color: #ffffff;
	max-width: 61.25rem;
	margin: 0 0 0.5rem;
	text-wrap: balance;
	text-shadow: var(--ds-hero-txt-sh-strong);
}

.ds-bl-hero__title-pre {
	display: block;
	font-family: var(--ds-font-body);
	font-size: clamp(0.8125rem, 2vw, 0.9375rem);
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 0.65rem;
	text-shadow: var(--ds-hero-txt-sh);
}

.ds-bl-hero__title-line1,
.ds-bl-hero .line-1 {
	display: block;
	font-weight: 500;
	opacity: 1;
	letter-spacing: -0.035em;
}

.ds-bl-hero__title-line2,
.ds-bl-hero .line-2 {
	display: block;
	font-family: var(--ds-font-display);
	font-size: clamp(2.75rem, 8.5vw, 5rem);
	font-weight: 300;
	line-height: 0.98;
	letter-spacing: -0.025em;
	color: #ffffff;
	font-style: normal;
	text-shadow: var(--ds-hero-txt-sh-strong);
}

/* Énfasis del titular: blanco sólido (el azul solo es para la ciudad en meta) */
.ds-bl-hero__title-warm,
.ds-bl-hero__title-accent,
.hero__title-accent {
	font-style: italic;
	font-weight: 600;
	color: #ffffff;
	text-shadow: var(--ds-hero-txt-sh-strong);
}

.ds-bl-hero__lead,
.ds-bl-hero .hero-subtitle {
	font-family: var(--ds-font-body);
	margin: 1.35rem auto 1.75rem;
	max-width: 34rem;
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	line-height: 1.65;
	letter-spacing: 0;
	font-weight: 400;
	color: #ffffff;
	opacity: 1;
	white-space: normal;
	text-shadow: var(--ds-hero-txt-sh-mid);
}

.ds-bl-hero__cta-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(100%, 38rem);
	margin-top: 0;
	margin-bottom: 0;
}

.ds-bl-hero__cta-primary-slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 22.5rem;
}

.ds-bl-hero__cta-hint,
.ds-bl-hero__microcopy,
.hero__microcopy {
	margin: 0;
	font-family: var(--ds-font-body);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-align: center;
	text-wrap: balance;
	text-shadow: var(--ds-hero-txt-sh);
}

.ds-bl-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
}

@media (min-width: 640px) {
	.ds-bl-hero__ctas {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		gap: 1rem 1.15rem;
		width: auto;
		max-width: 100%;
	}

	.ds-bl-hero__cta-primary-slot {
		width: auto;
		align-items: center;
	}
}

.ds-bl-hero__urgency {
	margin: 0.85rem 0 0;
	font-family: var(--ds-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #ffffff;
	text-align: center;
	text-wrap: balance;
	text-shadow: var(--ds-hero-txt-sh);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	padding: 0.45rem 1.1rem;
	background: rgba(5, 10, 20, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.ds-bl-hero__badges,
.ds-bl-hero .hero-badges {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 1.1rem 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.65rem 1.75rem;
	max-width: 52rem;
	opacity: 1;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
}

.ds-bl-hero__badge {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	margin: 0;
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #ffffff;
	text-shadow: var(--ds-hero-txt-sh-trust);
}

.ds-bl-hero__badge::before {
	content: "•";
	flex-shrink: 0;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: #e8bf96;
	font-weight: 700;
	font-size: 1.15em;
	line-height: 0;
	transform: translateY(0.06em);
}

.ds-bl-hero__note {
	margin-top: 1.25rem;
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.04em;
	text-transform: none;
	text-shadow: var(--ds-hero-txt-sh);
}

/* Carrusel inmediato bajo hero — solo imagen, sensación Cirque / revista */
.ds-bl-hero-moments {
	--ds-moments-h: clamp(220px, 32vw, 380px);
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	background: linear-gradient(180deg, rgba(245, 240, 232, 0.95) 0%, var(--bg-soft, #ede5da) 45%, #ebe4d8 100%);
	border-top: 1px solid rgba(232, 191, 150, 0.35);
	border-bottom: 1px solid var(--ds-home-line, rgba(13, 53, 112, 0.12));
	box-sizing: border-box;
}

.ds-bl-hero-moments__viewport {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(13, 53, 112, 0.28) transparent;
}

.ds-bl-hero-moments__viewport:focus-visible {
	outline: 2px solid rgba(13, 53, 112, 0.35);
	outline-offset: -2px;
}

.ds-bl-hero-moments__track {
	display: flex;
	flex-direction: row;
	gap: clamp(0.5rem, 1.5vw, 0.85rem);
	padding: clamp(0.65rem, 2vw, 1rem) clamp(0.85rem, 3vw, 1.75rem);
	box-sizing: border-box;
	width: max-content;
	max-width: none;
}

.ds-bl-hero-moments__slide {
	flex: 0 0 auto;
	width: clamp(168px, 44vw, 300px);
	height: var(--ds-moments-h);
	scroll-snap-align: start;
	border-radius: 14px;
	overflow: hidden;
	box-shadow:
		0 14px 42px rgba(13, 53, 112, 0.14),
		0 0 0 1px rgba(232, 191, 150, 0.35);
}

.ds-bl-hero-moments__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@supports (scroll-snap-type: x mandatory) {
	.ds-bl-hero-moments__viewport {
		scroll-snap-type: x proximity;
	}
}

@media (max-width: 991px) {
	.ds-bl-hero__inner,
	.ds-bl-hero .hero-content {
		width: min(100% - 2rem, 56.25rem);
		max-width: 56.25rem;
		padding-top: clamp(1.5rem, 4vh, 2.5rem);
		padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
	}

	.ds-bl-hero__title,
	.ds-bl-hero .hero-title {
		line-height: 1.06;
	}

	.ds-bl-hero__title-line2,
	.ds-bl-hero .line-2 {
		font-size: clamp(2.35rem, 9.5vw, 3.85rem);
	}

	.ds-bl-hero__lead,
	.ds-bl-hero .hero-subtitle {
		font-size: 1rem;
		line-height: 1.6;
		max-width: 32.5rem;
	}

	.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn:not(.premium-cta) {
		min-width: 210px;
	}

	.ds-bl-hero .ds-bl-hero__ctas .btn-premium {
		min-width: min(100%, 280px);
	}
}

@media (max-width: 640px) {
	.ds-bl-hero__inner,
	.ds-bl-hero .hero-content {
		padding-top: clamp(1rem, 4vh, 1.75rem);
		padding-bottom: clamp(1.25rem, 5vh, 2rem);
	}

	.ds-bl-hero__eyebrow {
		font-size: 0.6875rem;
		letter-spacing: 0.18em;
		margin-bottom: 1rem;
	}

	.ds-bl-hero__meta {
		text-align: center;
		letter-spacing: 0.12em;
		line-height: 1.5;
		margin-bottom: 0.875rem;
	}

	.ds-bl-hero__meta-bit--emotion {
		display: block;
		margin-top: 0.35rem;
		letter-spacing: 0.08em;
	}

	.ds-bl-hero__meta-sep {
		display: none;
	}

	.ds-bl-hero__meta > .ds-bl-hero__meta-bit:nth-child(1)::after,
	.ds-bl-hero__meta > .ds-bl-hero__meta-bit:nth-child(3)::after {
		content: " · ";
		opacity: 0.45;
		font-weight: 500;
	}

	.ds-bl-hero__title-line2,
	.ds-bl-hero .line-2 {
		font-size: clamp(2.05rem, 12vw, 3.15rem);
		line-height: 1.06;
		letter-spacing: -0.03em;
	}

	.ds-bl-hero__lead,
	.ds-bl-hero .hero-subtitle {
		margin: 1.25rem auto 1.5rem;
		font-size: 1rem;
		line-height: 1.58;
	}

	.ds-bl-hero__badges {
		flex-direction: column;
		gap: 0.5rem;
		margin-top: 1.5rem;
		padding-top: 1.1rem;
	}

	.ds-bl-hero__badge {
		font-size: 0.8125rem;
	}

	.ds-bl-hero__note {
		font-size: 0.875rem;
		margin-top: 1.375rem;
	}

	.ds-bl-hero__cta-wrap {
		width: 100%;
		max-width: none;
	}

	.ds-bl-hero__urgency {
		font-size: 0.6875rem;
		letter-spacing: 0.12em;
	}

	.ds-bl-hero__ctas {
		width: 100%;
		gap: 0.75rem;
	}

	.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn:not(.premium-cta) {
		width: 100%;
		min-width: 100%;
	}

	.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn.premium-cta {
		width: 100%;
	}

	.ds-bl-hero .ds-bl-hero__ctas .btn-premium {
		width: 100%;
		min-width: 0;
	}
}

/* Botones (premium-cta define su propia piel en premium-cta.css) */
.ds-bl-btn:not(.premium-cta) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.65rem;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-decoration: none;
	border-radius: 2px;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	box-sizing: border-box;
}

.ds-bl-btn--lg:not(.premium-cta) {
	min-height: 52px;
	padding: 0 1.85rem;
	font-size: 0.875rem;
}

.ds-bl-btn--primary:not(.premium-cta) {
	background: #0d3570;
	color: #fffdf9;
	border: 1px solid rgba(13, 53, 112, 0.35);
	border-radius: 999px;
	box-shadow: 0 8px 28px rgba(13, 53, 112, 0.22);
}

.ds-bl-btn--primary:not(.premium-cta):hover {
	background: #123d7d;
	border-color: rgba(232, 191, 150, 0.45);
	color: #fffdf9;
}

.ds-bl-btn--ghost:not(.premium-cta) {
	background: transparent;
	color: #0d3570;
	border: 1px solid rgba(13, 53, 112, 0.35);
	border-radius: 999px;
}

.ds-bl-btn--ghost:not(.premium-cta):hover {
	border-color: var(--ds-bl-gold);
	color: #202c58;
}

.ds-bl-btn--outline:not(.premium-cta) {
	background: transparent;
	color: #0d3570;
	border: 1px solid var(--ds-bl-gold-soft);
	border-radius: 999px;
}

.ds-bl-btn--outline:not(.premium-cta):hover {
	background: rgba(232, 191, 150, 0.15);
	border-color: var(--ds-bl-gold);
}

/**
 * CTA primario luxury (gradiente, profundidad, texto oscuro — evita morado del padre en :link).
 */
.ds-btn-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 60px;
	padding: 16px 36px;
	border-radius: 999px;
	border: 1px solid rgba(13, 53, 112, 0.22);
	background: linear-gradient(135deg, #0d3570 0%, #0a2d5c 100%);
	color: #fffdf9;
	text-decoration: none;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1;
	box-shadow:
		0 12px 30px rgba(13, 53, 112, 0.22),
		inset 0 1px 0 rgba(255, 253, 249, 0.12);
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		filter 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease;
	-webkit-tap-highlight-color: transparent;
}

.ds-btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		120deg,
		transparent 20%,
		rgba(255, 255, 255, 0.16) 48%,
		transparent 78%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.ds-btn-primary:hover {
	transform: translateY(-2px);
	filter: brightness(1.03);
	border-color: rgba(232, 191, 150, 0.45);
	box-shadow:
		0 18px 44px rgba(13, 53, 112, 0.28),
		inset 0 1px 0 rgba(255, 253, 249, 0.14);
	color: #fffdf9;
}

.ds-btn-primary:hover::before {
	opacity: 1;
}

.ds-btn-primary:active {
	transform: translateY(0);
	box-shadow:
		0 6px 18px rgba(13, 53, 112, 0.18),
		inset 0 2px 6px rgba(13, 53, 112, 0.12);
}

.ds-btn-primary:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 2px rgba(232, 191, 150, 0.55),
		0 12px 30px rgba(13, 53, 112, 0.22);
	color: #fffdf9;
}

.ds-btn-primary--center {
	margin-inline: auto;
}

body.ds-home-premium-v2 a.ds-btn-primary,
body.ds-home-premium-v2 a.ds-btn-primary:link,
body.ds-home-premium-v2 a.ds-btn-primary:visited,
body.ds-home-premium-v2 a.ds-btn-primary:hover,
body.ds-home-premium-v2 a.ds-btn-primary:active,
main.ds-built-landing a.ds-btn-primary,
main.ds-built-landing a.ds-btn-primary:link,
main.ds-built-landing a.ds-btn-primary:visited,
main.ds-built-landing a.ds-btn-primary:hover,
main.ds-built-landing a.ds-btn-primary:active {
	color: #fffdf9 !important;
}

@media (max-width: 640px) {
	.ds-btn-primary {
		width: 100%;
		min-height: 56px;
		padding: 15px 24px;
		font-size: 14px;
		letter-spacing: 0.04em;
	}
}

/* CTAs del hero: pill + contraste AA (ciudades usan .ds-bl-btn; home usa .btn-premium en premium-cta.css) */
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn:not(.premium-cta) {
	min-width: 220px;
	min-height: 58px;
	padding: 18px 36px;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease,
		opacity 0.3s ease;
}

.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--primary:not(.premium-cta),
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--primary:not(.premium-cta):link,
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--primary:not(.premium-cta):visited {
	color: #ffffff;
	background: #0d3570;
	border: 1px solid #082848;
	box-shadow: 0 14px 40px rgba(13, 53, 112, 0.32);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 1;
	-webkit-tap-highlight-color: transparent;
}

.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--primary:not(.premium-cta):hover,
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--primary:not(.premium-cta):active {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(13, 53, 112, 0.14);
	background: #ffffff;
	color: #0d3570;
	border-color: #0d3570;
}

.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--primary:not(.premium-cta):focus-visible {
	outline: 2px solid rgba(232, 191, 150, 0.65);
	outline-offset: 3px;
	color: #ffffff;
}

/* Secundario hero: arena + texto oscuro; hover → azul + blanco */
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--ghost,
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--ghost:link,
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--ghost:visited {
	color: #1f2430;
	background: #e8bf96;
	border: 1px solid rgba(31, 36, 48, 0.22);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow:
		0 8px 28px rgba(13, 53, 112, 0.12),
		inset 0 1px 0 rgba(255, 253, 249, 0.35);
	opacity: 1;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
}

.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--ghost:hover,
.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--ghost:active {
	transform: translateY(-2px);
	opacity: 1;
	border-color: #0d3570;
	background: #0d3570;
	color: #ffffff;
	box-shadow:
		0 18px 44px rgba(13, 53, 112, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ds-bl-hero .ds-bl-hero__ctas .ds-bl-btn--ghost:focus-visible {
	outline: 2px solid rgba(13, 53, 112, 0.35);
	outline-offset: 3px;
	opacity: 1;
	color: #1f2430;
}

/* Refuerzo frente a main.css del padre (a { color: #0275d8 }) */
body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):link,
body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):visited {
	color: #ffffff !important;
}

body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):hover,
body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):active {
	color: #0d3570 !important;
}

body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:link,
body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:visited {
	color: #1f2430 !important;
}

body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:hover,
body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:active {
	color: #ffffff !important;
}

body.ds-home-premium-v2 .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:focus-visible {
	color: #1f2430 !important;
}

/* Mismo refuerzo anclado al main landing (por si el orden de clases en body varía) */
main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):link,
main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):visited {
	color: #ffffff !important;
}

main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):hover,
main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--primary:not(.premium-cta):active {
	color: #0d3570 !important;
}

main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:link,
main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:visited {
	color: #1f2430 !important;
}

main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:hover,
main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:active {
	color: #ffffff !important;
}

main.ds-built-landing .ds-bl-hero .ds-bl-hero__ctas a.ds-bl-btn--ghost:focus-visible {
	color: #1f2430 !important;
}

/* Franja confianza */
.ds-bl-strip {
	padding: 0.7rem var(--ds-bl-x);
	background: rgba(255, 253, 249, 0.92);
	border-bottom: 1px solid rgba(217, 203, 184, 0.65);
}

.ds-bl-strip__inner {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
}

.ds-bl-strip__item {
	font-family: var(--ds-font-body);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0d3570;
}

.ds-bl-strip__sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ds-bl-gold);
	opacity: 0.35;
	flex-shrink: 0;
}

/* Secciones */
.ds-bl-section {
	padding: var(--ds-bl-y) var(--ds-bl-x);
	box-sizing: border-box;
}

.ds-bl-section__head {
	max-width: 34rem;
	margin: 0 auto clamp(1.75rem, 5vw, 2.75rem);
	text-align: center;
}

.ds-bl-section__head--narrow {
	max-width: 28rem;
}

.ds-bl-section__sub {
	max-width: 32rem;
	margin: 0.85rem auto 0;
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ds-bl-muted);
	text-align: center;
}

.ds-bl-kicker {
	font-family: var(--ds-font-body);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ds-bl-gold);
	margin: 0 0 0.55rem;
}

.ds-bl-h2 {
	font-family: var(--ds-font-display);
	font-size: clamp(1.45rem, 3.6vw, 2rem);
	font-weight: 500;
	line-height: 1.16;
	letter-spacing: -0.015em;
	color: var(--ds-bl-cream);
	margin: 0;
}

.ds-bl-h2--blog {
	font-size: clamp(1.35rem, 3.2vw, 1.85rem);
}

/* —— Pilares: rail editorial —— */
.ds-bl-value {
	background: linear-gradient(180deg, #fffdf9 0%, #ede5da 100%);
}

.ds-bl-pillars {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 900px) {
	.ds-bl-pillars {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0 1.5rem;
	}
}

.ds-bl-pillar {
	padding: 1.35rem 0;
	border-bottom: 1px solid rgba(13, 53, 112, 0.1);
	text-align: center;
}

@media (min-width: 900px) {
	.ds-bl-pillar {
		padding: 0 1rem;
		border-bottom: none;
		border-left: 1px solid rgba(13, 53, 112, 0.1);
		text-align: left;
	}

	.ds-bl-pillar:first-child {
		border-left: none;
		padding-left: 0;
	}

	.ds-bl-pillar:last-child {
		padding-right: 0;
	}
}

.ds-bl-pillar__glyph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1rem;
	border: 1px solid rgba(13, 53, 112, 0.18);
	color: #0d3570;
}

.ds-bl-pillar__name {
	font-family: var(--ds-font-display);
	font-size: 1rem;
	font-weight: 500;
	color: var(--ds-bl-cream);
	margin: 0 0 0.45rem;
	letter-spacing: 0.02em;
}

.ds-bl-pillar__txt {
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.58;
	color: var(--ds-bl-muted);
	margin: 0;
}

/* —— Historia / experiencia (editorial alternado) —— */
.ds-bl-story {
	background: #f5f0e8;
	border-top: 1px solid rgba(217, 203, 184, 0.65);
}

.ds-bl-story__intro {
	text-align: center;
	max-width: 36rem;
	margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.ds-bl-story__intro .ds-bl-h2 {
	margin-top: 0.35rem;
}

.ds-bl-story__rows {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 7vw, 4.5rem);
}

.ds-bl-story__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
}

@media (min-width: 900px) {
	.ds-bl-story__row {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
		gap: clamp(2rem, 5vw, 3.5rem);
		align-items: start;
	}

	.ds-bl-story__row--reverse .ds-bl-story__visual {
		order: 2;
	}

	.ds-bl-story__row--reverse .ds-bl-story__copy {
		order: 1;
	}
}

.ds-bl-story__visual {
	background-image: linear-gradient(145deg, rgba(232, 191, 150, 0.18) 0%, transparent 50%),
		linear-gradient(25deg, #fffdf9 0%, #ede5da 100%);
	border: 1px solid rgba(217, 203, 184, 0.7);
	background-size: cover;
	background-position: center center;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(13, 53, 112, 0.08);
}

/* Bloques solo con fondo CSS (sin <img>): mantener altura mínima. */
.ds-bl-story__visual:not(.ds-bl-story__visual--img) {
	min-height: clamp(200px, 52vw, 320px);
}

/* Imagen diferida (no background-image en CSS): menos descargas en el hit inicial */
.ds-bl-story__visual--img {
	position: relative;
	overflow: hidden;
	background-image: none;
	background-color: transparent;
	min-height: 0;
	min-width: 0;
}

.ds-bl-story__visual-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: inherit;
}

/* Sin velo claro encima del raster (nitidez / contraste). */
.ds-bl-story__visual--img::after {
	display: none;
}

.ds-built-landing .ds-bl-story__row {
	content-visibility: auto;
	contain-intrinsic-size: auto 380px;
}

.ds-built-landing .premium-payments,
.ds-built-landing .ds-bl-safety {
	content-visibility: auto;
	contain-intrinsic-size: auto 440px;
}

@media (min-width: 900px) {
	/* Tarjetas con fondo: marco vertical editorial. */
	.ds-bl-story__visual:not(.ds-bl-story__visual--img) {
		min-height: 0;
		aspect-ratio: 4 / 5;
		max-height: 420px;
	}

	/* Con <img>: mismo marco 4/5 que bloques sin foto + contain (foto completa, sin recorte agresivo). */
	.ds-bl-story__visual--img {
		min-height: 0;
		align-self: start;
		width: 100%;
		aspect-ratio: 4 / 5;
		max-height: 420px;
		background-color: #ede5da;
	}

	.ds-bl-story__visual--img .ds-bl-story__visual-img {
		width: 100%;
		height: 100%;
		min-height: 0;
		object-fit: contain;
		object-position: var(--ds-story-img-pos, center center);
	}
}

.ds-bl-story__copy .ds-bl-kicker {
	text-align: left;
}

.ds-bl-story__title {
	font-family: var(--ds-font-display);
	font-size: clamp(1.35rem, 3.2vw, 1.85rem);
	font-weight: 500;
	color: var(--ds-bl-cream);
	margin: 0 0 0.75rem;
	line-height: 1.15;
}

.ds-bl-story__text {
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--ds-bl-muted);
	margin: 0;
}

.ds-bl-story__foot {
	text-align: center;
	margin-top: clamp(2.25rem, 6vw, 3.25rem);
}

/* —— Ciudades / destinos: sección editorial premium + transición desde el hero —— */
.ds-bl-cities,
.cities-section,
.destinations-section,
#ciudades.ds-bl-cities {
	position: relative;
	isolation: isolate;
	background: linear-gradient(180deg, #ede5da 0%, #f5f0e8 40%, #fffdf9 100%);
	padding: clamp(88px, 10vw, 132px) var(--ds-bl-x, 1.25rem) clamp(84px, 10vw, 120px);
	box-sizing: border-box;
}

.ds-bl-cities::before,
.cities-section::before,
.destinations-section::before,
#ciudades.ds-bl-cities::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 0;
	width: 100%;
	height: 140px;
	background: linear-gradient(180deg, rgba(245, 240, 232, 0) 0%, rgba(255, 253, 249, 0.88) 70%, #fffdf9 100%);
	pointer-events: none;
	z-index: 0;
}

.ds-bl-cities > * {
	position: relative;
	z-index: 1;
}

.ds-bl-cities__header,
.destinations-header,
.cities-header,
#ciudades .section-header {
	width: min(900px, calc(100% - 40px));
	max-width: none;
	margin: 0 auto 52px;
	text-align: center;
}

.ds-bl-cities__eyebrow,
.section-eyebrow,
#ciudades .section-eyebrow {
	font-family: var(--ds-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #0d3570;
	margin: 0 0 20px;
}

.ds-bl-cities__title,
#ciudades .section-title {
	font-family: var(--ds-font-display);
	font-size: clamp(44px, 5vw, 76px);
	line-height: 1.02;
	letter-spacing: -0.03em;
	font-weight: 500;
	color: #0d3570;
	margin: 0;
	text-wrap: balance;
}

.ds-bl-cities__subtitle,
#ciudades .section-subtitle {
	margin: 22px auto 0;
	max-width: 720px;
	font-family: var(--ds-font-body);
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.8;
	font-weight: 400;
	color: var(--ds-bl-muted);
	text-align: center;
}

ul.ds-bl-city-showcase.ds-bl-cities__grid,
.ds-bl-city-showcase.ds-bl-cities__grid,
.ds-bl-cities__grid,
.cities-grid,
.destinations-grid,
#ciudades .cities-grid {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: min(1320px, calc(100% - 48px));
	max-width: 1320px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	box-sizing: border-box;
}

.ds-bl-cities__cell {
	display: contents;
	margin: 0;
	padding: 0;
}

.ds-bl-cities--single .ds-bl-cities__grid {
	max-width: min(560px, 100%);
	grid-template-columns: 1fr;
}

.ds-bl-dest-card,
.destination-card {
	position: relative;
	min-height: 460px;
	height: auto;
	border-radius: 24px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: flex-end;
	padding: 28px;
	background: #ede5da;
	box-shadow: 0 20px 56px rgba(13, 53, 112, 0.12);
	border: 1px solid rgba(217, 203, 184, 0.9);
	isolation: isolate;
	transition: transform 0.5s ease, border-color 0.45s ease;
	cursor: pointer;
}

/*
 * Superficie clicable en toda la card: __bg y __overlay usan pointer-events:none.
 * Sin esta capa, en parte del área el hit-test puede resolverse fuera del <a> y el enlace no navega.
 */
.ds-bl-dest-card::before,
.destination-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: auto;
}

/* Sin enlace (p. ej. Próximamente): misma estética, sin capa clicable ni cursor de link */
.ds-bl-dest-card--static,
.destination-card.ds-bl-dest-card--static {
	cursor: default;
}

.ds-bl-dest-card--static::before,
.destination-card.ds-bl-dest-card--static::before {
	display: none;
	content: none;
	pointer-events: none;
}

/* Próximamente: sin falsa acción, menor énfasis, etiqueta visible en esquina (evitar clase *city-card*: footer P26). */
.ds-bl-dest-card.is-coming-soon,
.destination-card.is-coming-soon {
	cursor: default;
	pointer-events: none;
	border-color: rgba(230, 201, 138, 0.1);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.ds-bl-dest-card.is-coming-soon::after,
.destination-card.is-coming-soon::after {
	display: block;
	content: "PRÓXIMAMENTE";
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	font-family: var(--ds-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
	pointer-events: none;
}

.ds-bl-dest-card.is-coming-soon .ds-bl-dest-card__bg img,
.destination-card.is-coming-soon .destination-card__bg img {
	opacity: 0.85;
	filter: brightness(0.62) contrast(1.05) saturate(0.9);
	transform: scale(1.03);
}

.ds-bl-dest-card.is-coming-soon .ds-bl-dest-card__overlay,
.destination-card.is-coming-soon .destination-card__overlay {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.94) 22%,
		rgba(0, 0, 0, 0.52) 58%,
		rgba(0, 0, 0, 0.28) 100%
	);
}

.ds-bl-dest-card.is-coming-soon .ds-bl-dest-card__title,
.destination-card.is-coming-soon .destination-card__title {
	color: rgba(245, 241, 232, 0.9);
}

.ds-bl-dest-card.is-coming-soon .ds-bl-dest-card__copy,
.destination-card.is-coming-soon .destination-card__copy {
	color: rgba(245, 241, 232, 0.88);
}

.ds-bl-dest-card.is-coming-soon:hover,
.destination-card.is-coming-soon:hover {
	transform: none;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
	border-color: rgba(230, 201, 138, 0.1);
}

.ds-bl-dest-card.is-coming-soon:hover .ds-bl-dest-card__bg img,
.destination-card.is-coming-soon:hover .destination-card__bg img {
	transform: scale(1.03);
	filter: brightness(0.62) contrast(1.05) saturate(0.9);
}

.ds-bl-dest-card:focus-visible {
	outline: 2px solid rgba(230, 201, 138, 0.55);
	outline-offset: 4px;
}

/* Una sola pieza: sin marco interior; el borde es solo el del contenedor */
.ds-bl-dest-card::after,
.destination-card::after {
	display: none;
	content: none;
}

/*
 * Nota: footer P26 aplica borde solo a .city-card / .ciudad-card (raíz), no a BEM __ hijos.
 * Este bloque usa ds-bl-dest-card* (sin subcadena "city-card") para no colisionar.
 */
/* Anular cajas / bordes heredados (tema, plugins) */
.ds-bl-dest-card__content,
.destination-card__content,
#ciudades .ds-bl-dest-card__content {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	outline: none !important;
	padding: 0;
	margin: 0;
}

.ds-bl-dest-card__tag,
.destination-card__tag,
.ds-bl-dest-card__title,
.destination-card__title,
.ds-bl-dest-card__copy,
.destination-card__copy,
.ds-bl-dest-card__cta,
.destination-card__cta,
#ciudades .ds-bl-dest-card__tag,
#ciudades .ds-bl-dest-card__title,
#ciudades .ds-bl-dest-card__copy,
#ciudades .ds-bl-dest-card__cta {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	outline: none !important;
}

.ds-bl-dest-card__bg,
.destination-card__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #0a0908;
	overflow: hidden;
}

.ds-bl-dest-card__bg img,
.destination-card__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transform: scale(1.05);
	transition: transform 0.8s ease;
	filter: brightness(0.75) contrast(1.1) saturate(0.95);
	will-change: transform;
}

.ds-bl-dest-card:hover .ds-bl-dest-card__bg img,
.destination-card:hover .destination-card__bg img {
	transform: scale(1.12);
	filter: brightness(0.82) contrast(1.12) saturate(1);
}

.ds-bl-dest-card__overlay,
.destination-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.88) 18%,
		rgba(0, 0, 0, 0.35) 55%,
		rgba(0, 0, 0, 0.12) 100%
	);
	pointer-events: none;
}

.ds-bl-dest-card__content {
	position: relative;
	z-index: 3;
	width: 100%;
}

.ds-bl-dest-card__tag,
.destination-card__tag {
	display: inline-block;
	font-family: var(--ds-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 241, 232, 0.9);
	margin: 0 0 14px;
	padding: 0;
	vertical-align: baseline;
}

.ds-bl-dest-card__title,
.destination-card__title {
	font-family: var(--ds-font-display);
	font-size: clamp(30px, 2vw, 40px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	font-weight: 500;
	color: #f5f1e8;
	margin: 0 0 10px;
}

.ds-bl-dest-card__copy,
.destination-card__copy {
	font-family: var(--ds-font-body);
	font-size: 15px;
	line-height: 1.6;
	color: rgba(245, 241, 232, 0.92);
	margin: 0 0 18px;
	max-width: 36ch;
	padding: 0;
}

.ds-bl-dest-card__cta,
.destination-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 0;
	padding: 0;
	font-family: var(--ds-font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #f2d9a6;
	text-transform: none;
	min-height: unset;
	border-radius: 0;
}

.ds-bl-dest-card__cta::after,
.destination-card__cta::after {
	content: "\2192";
	font-size: 15px;
	line-height: 1;
	opacity: 0.95;
	transition: transform 0.3s ease;
}

.ds-bl-dest-card:hover,
.destination-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 36px 96px rgba(0, 0, 0, 0.5);
	border-color: rgba(230, 201, 138, 0.24);
}

.ds-bl-dest-card:hover .ds-bl-dest-card__cta,
.destination-card:hover .destination-card__cta {
	color: #f0d9a4;
}

.ds-bl-dest-card:hover .ds-bl-dest-card__cta::after,
.destination-card:hover .destination-card__cta::after {
	transform: translateX(4px);
}

@media (max-width: 1200px) {
	.ds-bl-city-showcase.ds-bl-cities__grid,
	.ds-bl-cities__grid,
	.cities-grid,
	.destinations-grid,
	#ciudades .cities-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ds-bl-cities--single .ds-bl-cities__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ds-bl-cities,
	.cities-section,
	.destinations-section,
	#ciudades.ds-bl-cities {
		padding: 76px var(--ds-bl-x, 1rem) 84px;
	}

	.ds-bl-cities::before,
	.cities-section::before,
	.destinations-section::before,
	#ciudades.ds-bl-cities::before {
		top: -56px;
		height: 100px;
	}

	.ds-bl-city-showcase.ds-bl-cities__grid,
	.ds-bl-cities__grid,
	.cities-grid,
	.destinations-grid,
	#ciudades .cities-grid {
		grid-template-columns: 1fr;
		width: min(100% - 24px, 560px);
		gap: 16px;
	}

	.ds-bl-dest-card {
		min-height: 380px;
		border-radius: 22px;
		padding: 22px;
	}

	.ds-bl-cities__title,
	#ciudades .section-title {
		font-size: clamp(38px, 10vw, 52px);
	}

	.ds-bl-cities__subtitle,
	#ciudades .section-subtitle {
		font-size: 16px;
		line-height: 1.7;
	}
}

/* —— Corporativo / B2B (editorial claro) —— */
.corporate-premium {
	position: relative;
	padding: clamp(80px, 10vw, 140px) 0;
	text-align: center;
	background:
		radial-gradient(circle at top center, rgba(232, 191, 150, 0.22), transparent 34%),
		radial-gradient(ellipse 90% 50% at 50% 100%, rgba(13, 53, 112, 0.06), transparent 55%),
		linear-gradient(180deg, #fffdf9 0%, #f5f0e8 50%, #ede5da 100%);
	overflow: hidden;
	box-sizing: border-box;
	border-top: 1px solid rgba(217, 203, 184, 0.65);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
}

.corporate-premium::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(255, 253, 249, 0.65) 0,
		transparent 18%,
		transparent 82%,
		rgba(255, 253, 249, 0.5) 100%
	);
	opacity: 0.85;
}

.corporate-premium__inner {
	position: relative;
	z-index: 1;
	width: min(1100px, calc(100% - 48px));
	margin: 0 auto;
	box-sizing: border-box;
}

.corporate-premium__glow {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
}

.corporate-premium__glow--back {
	top: -25%;
	left: 50%;
	transform: translateX(-50%);
	width: min(120%, 920px);
	height: clamp(280px, 42vw, 480px);
	background: radial-gradient(circle, rgba(232, 191, 150, 0.35) 0%, transparent 70%);
	z-index: 0;
}

.corporate-premium__glow--side {
	right: -12%;
	bottom: 5%;
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(13, 53, 112, 0.08) 0%, transparent 70%);
	z-index: 0;
}

.corporate-premium__eyebrow {
	position: relative;
	z-index: 1;
	margin: 0 0 20px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #0d3570;
}

.corporate-premium__title {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 900px;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: clamp(2.8rem, 5vw, 5.2rem);
	line-height: 1.05;
	font-weight: 400;
	color: #0d3570;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.corporate-premium__description {
	position: relative;
	z-index: 1;
	margin: 28px auto 0;
	max-width: 780px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: clamp(1.02rem, 1.35vw, 1.1rem);
	line-height: 1.7;
	font-weight: 400;
	color: #434a54;
}

.corporate-premium__list {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 44px auto 0;
	padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 2.5vw, 22px);
	text-align: left;
	border-radius: 22px;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	box-shadow: 0 22px 56px rgba(13, 53, 112, 0.08), inset 0 1px 0 rgba(255, 253, 249, 1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-sizing: border-box;
}

.corporate-premium__item {
	position: relative;
	padding-left: 32px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	color: #1f2430;
	font-size: clamp(1rem, 1.2vw, 1.05rem);
	line-height: 1.65;
	font-weight: 400;
}

.corporate-premium__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: linear-gradient(180deg, #e8bf96, #c99a6a);
	box-shadow:
		0 0 0 2px rgba(232, 191, 150, 0.35),
		inset 0 1px 0 rgba(255, 253, 249, 0.5);
}

.corporate-premium__actions {
	position: relative;
	z-index: 1;
	margin-top: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

/* CTA primario B2B: azul profundo */
.corporate-premium .corporate-premium__cta--primary.btn-premium--primary {
	color: #ffffff !important;
	border: 1px solid rgba(13, 53, 112, 0.35);
	background: linear-gradient(180deg, #0d3570, #0a2d5e);
	box-shadow:
		0 18px 40px rgba(13, 53, 112, 0.28),
		inset 0 1px 0 rgba(255, 253, 249, 0.12);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.corporate-premium .corporate-premium__cta--primary.btn-premium--primary:hover {
	border-color: rgba(232, 191, 150, 0.85);
	color: #ffffff !important;
	box-shadow:
		0 22px 48px rgba(13, 53, 112, 0.32),
		0 0 0 1px rgba(232, 191, 150, 0.4),
		inset 0 1px 0 rgba(255, 253, 249, 0.18);
	filter: brightness(1.03);
}

.corporate-premium .corporate-premium__cta--primary.btn-premium--primary:focus-visible {
	box-shadow:
		0 0 0 3px rgba(232, 191, 150, 0.45),
		0 20px 44px rgba(13, 53, 112, 0.28),
		inset 0 1px 0 rgba(255, 253, 249, 0.12);
}

/* Secundario: outline editorial */
.corporate-premium .corporate-premium__cta--secondary.btn-premium--secondary {
	color: #0d3570 !important;
	border: 1px solid rgba(13, 53, 112, 0.35);
	background: transparent;
	box-shadow: 0 10px 28px rgba(13, 53, 112, 0.06);
}

.corporate-premium .corporate-premium__cta--secondary.btn-premium--secondary:hover {
	color: #202c58 !important;
	border-color: rgba(232, 191, 150, 0.9);
	background: rgba(232, 191, 150, 0.15);
	box-shadow: 0 14px 36px rgba(13, 53, 112, 0.1);
}

@media (max-width: 640px) {
	.corporate-premium {
		padding: clamp(56px, 14vw, 88px) 0;
	}

	.corporate-premium__inner {
		width: min(100% - 28px, 100%);
	}

	.corporate-premium__list {
		padding: 22px 20px;
		border-radius: 18px;
	}

	.corporate-premium__actions {
		flex-direction: column;
		margin-top: 40px;
		gap: 14px;
	}

	.corporate-premium__actions .btn-premium {
		width: 100%;
		max-width: 400px;
		min-height: 56px;
		padding: 16px 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.corporate-premium .btn-premium:hover {
		transform: none;
	}
}

/* —— Legado e impacto: editorial claro (solo métricas) —— */
.ds-bl-proof.ds-bl-section {
	position: relative;
	background:
		radial-gradient(ellipse 80% 45% at 50% 0%, rgba(232, 191, 150, 0.2), transparent 55%),
		linear-gradient(180deg, #ede5da 0%, #f5f0e8 100%);
	border-top: 1px solid rgba(217, 203, 184, 0.6);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
	padding-top: clamp(3.5rem, 9vw, 5.75rem);
	padding-bottom: clamp(4.5rem, 11vw, 8.75rem);
	padding-left: var(--ds-bl-x);
	padding-right: var(--ds-bl-x);
	box-sizing: border-box;
	overflow: hidden;
}

.ds-bl-proof__intro {
	text-align: center;
	max-width: min(40rem, 100%);
	margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
}

.ds-bl-proof .ds-bl-kicker {
	margin-bottom: 1.1rem;
	letter-spacing: 0.24em;
	color: #0d3570;
}

.ds-bl-proof__title.ds-bl-h2,
.ds-bl-proof .ds-bl-proof__title {
	margin: 0;
	font-size: clamp(2rem, 4.2vw, 3.15rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 400;
	color: #0d3570;
}

.ds-bl-proof__sub.ds-bl-section__sub {
	margin-top: 1.25rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(1rem, 1.35vw, 1.125rem);
	line-height: 1.75;
	color: #434a54;
}

.ds-bl-proof__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	gap: clamp(2rem, 4vw, 3.5rem);
	margin: clamp(2.5rem, 6vw, 3.75rem) auto 0;
	padding: 0;
	border: none;
	max-width: min(52rem, 100%);
}

.ds-bl-proof .ds-bl-stat {
	text-align: center;
	min-width: min(7.5rem, 28vw);
}

.ds-bl-proof .ds-bl-stat__num {
	display: block;
	font-family: var(--ds-font-display);
	font-size: clamp(2.15rem, 3.5vw, 3.35rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	color: #202c58;
	line-height: 1;
}

.ds-bl-proof .ds-bl-stat__label {
	font-family: var(--ds-font-body);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #0d3570;
	margin-top: 0.85rem;
	display: block;
	opacity: 1;
}

@media (max-width: 520px) {
	.ds-bl-proof__stats {
		flex-direction: column;
		align-items: center;
		gap: 1.75rem;
	}

	.ds-bl-proof .ds-bl-stat {
		min-width: auto;
	}
}

/* —— Gastronomía magazine —— */
.ds-bl-gastro {
	background: #fffdf9;
	padding-top: clamp(2.25rem, 6vw, 3.5rem);
	padding-bottom: clamp(2.25rem, 6vw, 3.5rem);
	border-top: 1px solid rgba(217, 203, 184, 0.55);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
}

.ds-bl-gastro__mag {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: end;
}

@media (min-width: 900px) {
	.ds-bl-gastro__mag {
		grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.72fr);
		gap: clamp(2rem, 5vw, 3.5rem);
		align-items: center;
	}
}

.ds-bl-gastro__hero {
	min-height: 220px;
	background-image: linear-gradient(160deg, rgba(232, 191, 150, 0.28) 0%, transparent 55%),
		linear-gradient(25deg, #ede5da 0%, #d4c4b0 100%);
	border: 1px solid rgba(217, 203, 184, 0.85);
}

@media (min-width: 900px) {
	.ds-bl-gastro__hero {
		min-height: 0;
		aspect-ratio: 5 / 6;
		max-height: 520px;
	}
}

.ds-bl-gastro__story .ds-bl-kicker {
	text-align: left;
}

.ds-bl-gastro__title {
	font-family: var(--ds-font-display);
	font-size: clamp(1.45rem, 3.5vw, 1.95rem);
	font-weight: 500;
	color: var(--ds-bl-cream);
	margin: 0 0 0.75rem;
	line-height: 1.15;
}

.ds-bl-gastro__txt {
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.68;
	color: var(--ds-bl-muted);
	margin: 0 0 1.2rem;
}

/* —— Seguridad editorial —— */
.ds-bl-safety {
	background: #f5f0e8;
	padding-top: clamp(2rem, 5vw, 2.75rem);
	padding-bottom: clamp(2rem, 5vw, 2.75rem);
	border-top: 1px solid rgba(217, 203, 184, 0.55);
}

.ds-bl-safety__grid {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 2.5rem);
	align-items: start;
}

@media (min-width: 900px) {
	.ds-bl-safety__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(2rem, 5vw, 4rem);
	}
}

.ds-bl-safety__main {
	text-align: center;
}

@media (min-width: 900px) {
	.ds-bl-safety__main {
		text-align: left;
	}
}

.ds-bl-safety__title {
	font-family: var(--ds-font-display);
	font-size: clamp(1.25rem, 3vw, 1.65rem);
	font-weight: 500;
	color: var(--ds-bl-cream);
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.ds-bl-safety__lead {
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.68;
	color: var(--ds-bl-muted);
	margin: 0;
}

.ds-bl-safety__list {
	list-style: none;
	margin: 0;
	padding: clamp(1.25rem, 3vw, 1.5rem);
	border: 1px solid rgba(217, 203, 184, 0.9);
	background: #fffdf9;
	box-shadow: 0 14px 40px rgba(13, 53, 112, 0.06);
}

.ds-bl-safety__item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.55;
	color: #1f2430;
	margin-bottom: 0.85rem;
}

.ds-bl-safety__item:last-child {
	margin-bottom: 0;
}

.ds-bl-safety__item-glyph {
	flex-shrink: 0;
	color: var(--ds-bl-gold);
	margin-top: 2px;
}

.ds-bl-safety__item-glyph svg {
	display: block;
	width: 18px;
	height: 18px;
}

.ds-bl-safety__wrap {
	max-width: 36rem;
	margin: 0 auto;
	text-align: center;
}

.ds-bl-safety__bullets {
	font-size: 0.82rem;
	line-height: 1.65;
	color: var(--ds-bl-muted);
	margin: 0;
	letter-spacing: 0.02em;
}

/* —— Cierre —— */
.ds-bl-close {
	position: relative;
	padding: clamp(2.75rem, 9vw, 4.5rem) var(--ds-bl-x);
	background: linear-gradient(180deg, #202c58 0%, #0d3570 100%);
	text-align: center;
}

.ds-bl-close__bar {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(120px, 28vw);
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--ds-bl-gold), transparent);
	opacity: 0.7;
}

.ds-bl-close__inner {
	max-width: 34rem;
	margin: 0 auto;
}

.ds-bl-close__urgency {
	font-family: var(--ds-font-body);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ds-bl-gold);
	margin: 0 0 0.85rem;
}

.ds-bl-close__title {
	font-family: var(--ds-font-display);
	font-size: clamp(1.55rem, 4.2vw, 2.2rem);
	font-weight: 500;
	line-height: 1.12;
	color: #fffdf9;
	margin: 0 0 0.75rem;
}

.ds-bl-close__lead {
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.62;
	color: rgba(255, 253, 249, 0.82);
	margin: 0 0 1.5rem;
}

.ds-bl-close__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 0.9rem;
	justify-content: center;
}

/* —— Blog editorial rail —— */
.ds-bl-blog {
	background: #ede5da;
	border-top: 1px solid rgba(217, 203, 184, 0.65);
}

.ds-bl-blog__top {
	max-width: var(--ds-bl-max);
	margin: 0 auto clamp(1.5rem, 4vw, 2rem);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.ds-bl-blog__top {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
}

.ds-bl-blog__all {
	font-family: var(--ds-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: none;
	color: var(--ds-bl-gold);
	text-decoration: none;
}

.ds-bl-blog__all:hover {
	color: #dfc07a;
}

.ds-bl-blog__rail {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 720px) {
	.ds-bl-blog__rail {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.35rem;
	}
}

.ds-bl-post {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.ds-bl-post__thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #d9cbb8;
}

.ds-bl-post__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.ds-bl-post:hover .ds-bl-post__img {
	transform: scale(1.03);
}

.ds-bl-post__thumbph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 120px;
	background: linear-gradient(130deg, #ede5da, #cfc2b2);
}

.ds-bl-post__title {
	font-family: var(--ds-font-display);
	font-size: 1.02rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.28;
}

.ds-bl-post__title a {
	color: var(--ds-bl-cream);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, color 0.25s ease;
}

.ds-bl-post__title a:hover {
	color: var(--ds-bl-gold);
	border-bottom-color: var(--ds-bl-gold-soft);
}

.ds-bl-post__ex {
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.55;
	color: var(--ds-bl-muted);
	margin: 0;
}

/* —— Modal lead CRO —— */
.ds-bl-lead[hidden] {
	display: none !important;
}

.ds-bl-lead:not([hidden]) {
	position: fixed;
	inset: 0;
	z-index: 100200;
	display: block;
	pointer-events: none;
}

.ds-bl-lead:not([hidden]) .ds-bl-lead__backdrop,
.ds-bl-lead:not([hidden]) .ds-bl-lead__dialog {
	pointer-events: auto;
}

html.ds-bl-lead-open {
	overflow: hidden;
}

.ds-bl-lead__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 53, 112, 0.28);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ds-bl-lead__dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(26rem, calc(100vw - 2rem));
	max-height: min(90vh, 520px);
	overflow-y: auto;
	padding: clamp(1.5rem, 4vw, 2rem);
	box-sizing: border-box;
	background: #fffdf9;
	border: 1px solid rgba(217, 203, 184, 0.95);
	box-shadow: 0 28px 70px rgba(13, 53, 112, 0.18);
}

.ds-bl-lead__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	background: transparent;
	color: #4a515c;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
}

.ds-bl-lead__close:hover {
	color: #0d3570;
}

.ds-bl-lead__title {
	font-family: var(--ds-font-display);
	font-size: clamp(1.2rem, 3.5vw, 1.45rem);
	font-weight: 500;
	color: var(--ds-bl-cream);
	margin: 0 2rem 0.75rem 0;
	line-height: 1.22;
}

.ds-bl-lead__text {
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--ds-bl-muted);
	margin: 0 0 1.25rem;
}

.ds-bl-lead__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ds-bl-lead__input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.85rem 1rem;
	font-family: var(--ds-font-body);
	font-size: 0.9rem;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	color: var(--ds-bl-cream);
	border-radius: 0;
}

.ds-bl-lead__input::placeholder {
	color: #3d424a;
}

.ds-bl-lead__input:focus {
	outline: none;
	border-color: rgba(13, 53, 112, 0.45);
	box-shadow: 0 0 0 3px rgba(232, 191, 150, 0.25);
}

.ds-bl-lead__submit {
	width: 100%;
}

.ds-bl-lead__thanks {
	font-size: 0.88rem;
	color: var(--ds-bl-gold);
	margin: 0;
}

.ds-bl-lead__err {
	font-size: 0.78rem;
	color: #e8a598;
	margin: 0.5rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
	.ds-bl-dest-card,
	.ds-bl-dest-card:hover {
		transform: none;
	}

	.ds-bl-dest-card__bg img,
	.destination-card__bg img {
		will-change: auto;
	}

	.ds-bl-dest-card:hover .ds-bl-dest-card__bg img,
	.ds-bl-post:hover .ds-bl-post__img {
		transform: none;
	}

	.ds-bl-dest-card:hover .ds-bl-dest-card__cta::after {
		transform: none;
	}

	.ds-bl-hero.ds-bl-hero--await-load {
		opacity: 1;
		pointer-events: auto;
		transition: none;
	}

	.ds-bl-hero.ds-bl-hero--await-load .ds-bl-hero__inner > * {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.ds-bl-hero__inner > * {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.ds-bl-hero__bg,
	.ds-bl-hero__video {
		transform: none;
	}

	.ds-bl-story__row {
		opacity: 1;
		animation: none;
	}
}

/* Anclas internas en landing PHP (hero #eventos, scroll, etc.) */
html:has(body.ds-built-landing-active) {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html:has(body.ds-built-landing-active) {
		scroll-behavior: auto;
	}
}

/* =============================================================================
   Shell landing PHP — anular masthead Orbital + #content-wrapper que rompían el hero
   (columna oscura / contenido empujado / doble navegación).
   ============================================================================= */
body.ds-built-landing-active header.type-header,
body.ds-built-landing-active .header-image {
	display: none !important;
}

body.ds-built-landing-active #page,
body.ds-built-landing-active .site-content,
body.ds-built-landing-active .site {
	max-width: none !important;
	width: 100% !important;
}

body.ds-built-landing-active main#content.site-main.ds-built-landing,
body.ds-built-landing-active main#content.site-main.ds-lp-app,
body.ds-built-landing-active main#content.site-main.ds-lp-main,
body.ds-front-page-no-content-wrapper main#content.site-main.ds-front-page-fullwidth {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 0 2rem;
	box-sizing: border-box;
}

body.ds-built-landing-active .ds-home-wrapper,
body.ds-built-landing-active .ds-lp-main,
body.ds-built-landing-active .ds-lp-app,
body.ds-front-page-no-content-wrapper .ds-front-page-fullwidth {
	overflow-x: clip;
}

body.ds-built-landing-active .premium-top-nav--integrated .premium-top-nav__logo-img,
body.ds-built-landing-active .premium-top-nav--integrated .custom-logo {
	max-height: 32px;
	filter:
		drop-shadow(0 1px 1px rgba(255, 253, 249, 0.55))
		drop-shadow(0 2px 6px rgba(13, 53, 112, 0.22))
		drop-shadow(0 4px 14px rgba(232, 191, 150, 0.18));
}

@media (min-width: 961px) {
	body.ds-built-landing-active .premium-top-nav--integrated .premium-top-nav__logo-img,
	body.ds-built-landing-active .premium-top-nav--integrated .custom-logo {
		max-height: 36px;
	}
}

/* Anclas: barra fija premium */
#ciudades,
#experiencia,
#historia,
#eventos,
#seguridad,
#cierre,
#captura-leads,
#pilares,
#prueba-social,
#pagos,
#medios-pago {
	scroll-margin-top: calc(56px + 12px);
}

/* Portada solo landing PHP: el main no debe heredar layout de .entry-content del theme */
body.ds-built-landing-active main#content.site-main.ds-lp-app.ds-built-landing {
	padding-bottom: 0;
}

body.ds-built-landing-active main#content.site-main.ds-lp-app .ds-lp-root {
	clear: both;
}

/* —— LP editorial v3: qué es, experiencia, confianza, gastronomía, leads —— */
.ds-bl-proof__sub {
	margin-top: 0.85rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.ds-lp-sec {
	padding: clamp(3rem, 9vw, 5.5rem) var(--ds-bl-x);
	box-sizing: border-box;
}

.ds-lp-sec__inner {
	max-width: var(--ds-bl-max);
	margin: 0 auto;
}

.ds-lp-eyebrow {
	font-family: var(--ds-font-body);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ds-bl-gold);
	margin: 0 0 0.65rem;
}

.ds-lp-heading {
	font-family: var(--ds-font-display);
	font-size: clamp(1.65rem, 4vw, 2.35rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ds-bl-cream);
	margin: 0 0 1rem;
}

.ds-lp-heading--center {
	text-align: center;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.ds-lp-h3 {
	font-family: var(--ds-font-display);
	font-size: clamp(1.15rem, 2.4vw, 1.35rem);
	font-weight: 500;
	color: var(--ds-bl-cream);
	margin: 0 0 0.65rem;
}

.ds-lp-lead {
	font-family: var(--ds-font-body);
	font-size: clamp(0.95rem, 2.2vw, 1.08rem);
	font-weight: 400;
	line-height: 1.65;
	color: var(--ds-bl-muted);
	margin: 0 0 1rem;
}

.ds-lp-body {
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--ds-bl-muted);
	margin: 0 0 1rem;
}

.ds-lp-sub {
	font-family: var(--ds-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ds-bl-muted);
	margin: 0.5rem auto 0;
	max-width: 34rem;
}

.ds-lp-sub--center {
	text-align: center;
}

.ds-lp-textlink {
	display: inline-block;
	margin-top: 0.35rem;
	font-family: var(--ds-font-body);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: none;
	text-decoration: none;
	color: var(--ds-bl-gold);
	border-bottom: 1px solid rgba(201, 160, 92, 0.35);
	padding-bottom: 0.15rem;
	transition: color 0.25s ease, border-color 0.25s ease;
}

.ds-lp-textlink:hover {
	color: #dfc07a;
	border-color: rgba(223, 192, 122, 0.55);
}

/* Qué es */
.ds-lp-what {
	background: linear-gradient(180deg, #fffdf9 0%, #f5f0e8 100%);
	border-top: 1px solid rgba(217, 203, 184, 0.5);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
}

.ds-lp-what__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 5vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.ds-lp-what__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: clamp(2rem, 5vw, 3.5rem);
	}
}

.ds-lp-what__visual {
	min-height: clamp(220px, 42vw, 380px);
	border-radius: 0;
	background-image: linear-gradient(145deg, rgba(232, 191, 150, 0.35) 0%, transparent 42%),
		linear-gradient(210deg, #ede5da 0%, #cfc2b2 48%, #d9cbb8 100%);
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(217, 203, 184, 0.85);
}

/* Experiencia */
.ds-lp-exp {
	background: #fffdf9;
	border-top: 1px solid rgba(217, 203, 184, 0.55);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
}

.ds-lp-exp__head {
	text-align: center;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.ds-lp-exp__hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: center;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 880px) {
	.ds-lp-exp__hero {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
		gap: 2.5rem;
	}
}

.ds-lp-exp__hero-visual {
	min-height: clamp(200px, 38vw, 320px);
	background-color: #ede5da;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(217, 203, 184, 0.85);
	border-radius: var(--ds-radius-md, 18px);
}

.ds-lp-exp__hero-visual-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	z-index: 0;
}

.ds-lp-exp__hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		160deg,
		rgba(255, 253, 249, 0.5) 0%,
		rgba(245, 240, 232, 0.28) 45%,
		rgba(245, 240, 232, 0.62) 100%
	);
}

.ds-built-landing .ds-lp-exp__hero {
	content-visibility: auto;
	contain-intrinsic-size: auto 360px;
}

.ds-built-landing #ciudades.ds-bl-cities {
	content-visibility: auto;
	contain-intrinsic-size: auto 500px;
}

@media (prefers-reduced-motion: reduce) {
	.ds-built-landing .ds-bl-story__row,
	.ds-built-landing .ds-lp-exp__hero,
	.ds-built-landing #ciudades.ds-bl-cities {
		content-visibility: visible;
	}
}

.ds-lp-exp__pillars {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border-top: 1px solid rgba(217, 203, 184, 0.8);
}

@media (min-width: 768px) {
	.ds-lp-exp__pillars {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.ds-lp-exp__pillars {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.ds-lp-exp__pillar {
	padding: 1.5rem clamp(18px, 4vw, 32px);
	border-bottom: 1px solid rgba(217, 203, 184, 0.55);
}

@media (min-width: 1024px) {
	.ds-lp-exp__pillar {
		padding: 1.75rem clamp(20px, 2.5vw, 32px);
		border-bottom: none;
		border-right: 1px solid rgba(217, 203, 184, 0.55);
	}

	.ds-lp-exp__pillar:nth-child(4n) {
		border-right: none;
	}
}

.ds-lp-exp__pillar-label {
	display: block;
	font-family: var(--ds-font-body);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #a67b4a;
	margin-bottom: 0.5rem;
}

.ds-lp-exp__pillar-txt {
	margin: 0;
	font-family: var(--ds-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.62;
	color: #454b54;
}

.ds-lp-exp__cta {
	text-align: center;
	margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

/* Confianza */
.ds-lp-trust {
	background: linear-gradient(180deg, #f5f0e8 0%, #ede5da 100%);
	border-top: 1px solid rgba(217, 203, 184, 0.55);
}

.ds-lp-trust__head {
	text-align: center;
	margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.ds-lp-trust__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 900px) {
	.ds-lp-trust__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.75rem;
	}
}

.ds-lp-trust__block {
	padding: 1.35rem 1.25rem;
	background: #fffdf9;
	border: 1px solid rgba(217, 203, 184, 0.9);
	box-shadow: 0 14px 36px rgba(13, 53, 112, 0.06);
}

.ds-lp-trust__list {
	margin: 0.5rem 0 0;
	padding: 0 0 0 1.1rem;
	color: #434a54;
	font-size: 0.88rem;
	line-height: 1.65;
}

.ds-lp-trust__list li {
	margin-bottom: 0.45rem;
}

.ds-lp-trust__block--pay .ds-lp-body {
	margin-bottom: 0.65rem;
}

/* Gastronomía */
.ds-lp-gastro {
	background: #f5f0e8;
	border-top: 1px solid rgba(217, 203, 184, 0.55);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
}

.ds-lp-gastro__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 5vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.ds-lp-gastro__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.ds-lp-gastro__visual {
	min-height: clamp(240px, 44vw, 400px);
	order: -1;
	background-image: linear-gradient(200deg, rgba(232, 191, 150, 0.35) 0%, transparent 45%),
		linear-gradient(330deg, #ede5da 0%, #d9cbb8 100%);
	border: 1px solid rgba(217, 203, 184, 0.85);
}

@media (min-width: 900px) {
	.ds-lp-gastro__visual {
		order: 0;
	}
}

.ds-lp-gastro__btn {
	margin-top: 1.25rem;
}

/* Captura correo — lista prioritaria (premium claro) */
.notify-premium {
	position: relative;
	padding: clamp(64px, 8vw, 120px) 0;
	background:
		radial-gradient(circle at top center, rgba(232, 191, 150, 0.22), transparent 32%),
		linear-gradient(180deg, #fffdf9 0%, #f5f0e8 55%, #ede5da 100%);
	overflow: hidden;
	border-top: 1px solid rgba(217, 203, 184, 0.65);
	border-bottom: 1px solid rgba(217, 203, 184, 0.45);
	box-sizing: border-box;
}

.notify-premium::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(255, 253, 249, 0.55) 0,
		transparent 20%,
		transparent 80%,
		rgba(255, 253, 249, 0.45) 100%
	);
	opacity: 0.9;
}

.notify-premium__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(34px, 4vw, 52px);
	width: min(1280px, calc(100% - 80px));
	margin: 0 auto;
	box-sizing: border-box;
}

.notify-premium__content {
	width: 100%;
	max-width: 1100px;
}

.notify-premium__eyebrow {
	margin: 0 0 18px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #0d3570;
}

.notify-premium__title {
	margin: 0;
	max-width: 1000px;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	color: #0d3570;
	font-weight: 400;
	line-height: 0.96;
	letter-spacing: -0.03em;
	font-size: clamp(3rem, 6vw, 5.8rem);
	text-wrap: balance;
}

.notify-premium__description {
	margin: clamp(24px, 3vw, 32px) 0 0;
	max-width: 980px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	color: var(--text-soft) !important;
	font-size: clamp(1.05rem, 1.35vw, 1.28rem);
	line-height: 1.75;
	font-weight: 400;
}

.notify-premium__panel {
	position: relative;
	transform: none;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: min(100%, 940px);
	max-width: min(100%, 940px);
	margin: 6px 0 0;
	margin-inline: 0;
	padding: clamp(24px, 2.4vw, 32px);
	border-radius: 28px;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	box-shadow: 0 22px 56px rgba(13, 53, 112, 0.09), inset 0 1px 0 rgba(255, 253, 249, 1);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
}

.notify-premium__panel .ds-bl-lead-form {
	width: 100%;
	max-width: none;
}

.notify-premium__disclaimer,
.notify-premium__actions {
	width: 100%;
	max-width: none;
}

.notify-premium__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at 80% 18%, rgba(232, 191, 150, 0.2), transparent 42%);
	pointer-events: none;
	z-index: 0;
}

.notify-premium__panel > * {
	position: relative;
	z-index: 1;
}

.notify-premium__form.ds-lp-lead__fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 20px;
	align-items: center;
	width: 100%;
	max-width: none;
}

.notify-premium__field {
	position: relative;
	width: 100%;
	min-width: 0;
}

.notify-premium__field .ds-bl-lead__input {
	width: 100%;
	height: 60px;
	padding: 0 20px;
	border-radius: 16px;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	color: #1f2430;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 0.95rem;
	font-weight: 400;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: inset 0 1px 0 rgba(255, 253, 249, 1), 0 8px 22px rgba(13, 53, 112, 0.06);
	box-sizing: border-box;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
	margin: 0;
}

.notify-premium__field .ds-bl-lead__input::placeholder {
	color: #3d424a;
}

.notify-premium__field .ds-bl-lead__input:focus {
	border-color: rgba(13, 53, 112, 0.4);
	box-shadow:
		0 0 0 4px rgba(232, 191, 150, 0.25),
		inset 0 1px 0 rgba(255, 253, 249, 1),
		0 10px 26px rgba(13, 53, 112, 0.08);
}

.notify-premium__field .ds-bl-lead__input:-webkit-autofill,
.notify-premium__field .ds-bl-lead__input:-webkit-autofill:hover,
.notify-premium__field .ds-bl-lead__input:-webkit-autofill:focus {
	-webkit-text-fill-color: #1f2430;
	box-shadow: 0 0 0 1000px #fffdf9 inset;
}

.notify-premium__button.ds-lp-lead__submit {
	position: relative;
	overflow: hidden;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	height: 60px;
	padding: 0 26px;
	border: 1px solid rgba(13, 53, 112, 0.35);
	border-radius: 16px;
	background: linear-gradient(180deg, #0d3570, #0a2d5e);
	color: #fffdf9;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow:
		0 18px 40px rgba(13, 53, 112, 0.26),
		inset 0 1px 0 rgba(255, 253, 249, 0.12);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.notify-premium__button.ds-lp-lead__submit span {
	position: relative;
	z-index: 2;
}

.notify-premium__button.ds-lp-lead__submit::after {
	display: none;
	content: none;
}

.notify-premium__button.ds-lp-lead__submit:hover {
	transform: translateY(-2px);
	box-shadow:
		0 24px 50px rgba(13, 53, 112, 0.32),
		0 0 0 1px rgba(232, 191, 150, 0.45),
		inset 0 1px 0 rgba(255, 253, 249, 0.18);
	border-color: rgba(232, 191, 150, 0.75);
}

.notify-premium__button.ds-lp-lead__submit:active {
	transform: translateY(0);
}

.notify-premium__button.ds-lp-lead__submit:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 3px rgba(232, 191, 150, 0.45),
		0 16px 36px rgba(13, 53, 112, 0.22),
		inset 0 1px 0 rgba(255, 253, 249, 0.15);
}

.notify-premium__disclaimer {
	margin-top: 18px;
	margin-bottom: 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	color: #454b54;
	font-size: 0.96rem;
	line-height: 1.6;
	font-weight: 400;
}

.notify-premium__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 18px 34px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(217, 203, 184, 0.85);
}

.notify-premium__link {
	position: relative;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	color: #0d3570 !important;
	text-decoration: none !important;
	font-size: 0.96rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	opacity: 1;
	transition:
		color 0.35s ease,
		opacity 0.35s ease;
}

.notify-premium__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -9px;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(232, 191, 150, 0.95), rgba(13, 53, 112, 0.15));
	transform-origin: left center;
	opacity: 0.85;
	transition:
		transform 0.35s ease,
		opacity 0.35s ease;
}

.notify-premium__link:hover {
	color: #202c58 !important;
	opacity: 1;
}

.notify-premium__link:hover::after {
	transform: scaleX(1.04);
	opacity: 1;
}

.notify-premium__link:focus-visible {
	outline: 2px solid rgba(232, 191, 150, 0.75);
	outline-offset: 6px;
	border-radius: 2px;
}

.notify-premium__feedback {
	margin-top: 16px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 0.98rem;
	line-height: 1.55;
}

.notify-premium__feedback--thanks {
	color: #0d3570 !important;
}

.notify-premium__feedback--err {
	color: #9b3d3d !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing .notify-premium__link,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .notify-premium__link:visited,
main.ds-built-landing .notify-premium__link,
main.ds-built-landing .notify-premium__link:visited {
	color: #0d3570 !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing .notify-premium__link:hover,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .notify-premium__link:active,
main.ds-built-landing .notify-premium__link:hover,
main.ds-built-landing .notify-premium__link:active {
	color: #202c58 !important;
}

@media (max-width: 1100px) {
	.notify-premium__inner {
		width: min(100% - 48px, 100%);
	}

	.notify-premium__content,
	.notify-premium__title,
	.notify-premium__description,
	.notify-premium__panel {
		max-width: 100%;
		width: 100%;
	}

	.notify-premium__panel .ds-bl-lead-form,
	.notify-premium__disclaimer,
	.notify-premium__actions {
		width: 100%;
		max-width: 100%;
	}

	.notify-premium__disclaimer {
		text-align: left;
	}

	.notify-premium__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.notify-premium__panel {
		width: 100%;
		max-width: 100%;
	}

	.notify-premium__form.ds-lp-lead__fields {
		grid-template-columns: 1fr;
		gap: 14px;
		align-items: stretch;
	}

	.notify-premium__button.ds-lp-lead__submit {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 680px) {
	.notify-premium {
		padding: 56px 0 72px;
	}

	.notify-premium__inner {
		width: min(100% - 24px, 100%);
		gap: clamp(22px, 5vw, 28px);
	}

	.notify-premium__title {
		font-size: clamp(2.2rem, 12vw, 3.4rem);
		line-height: 1.02;
	}

	.notify-premium__description {
		font-size: 1rem;
		line-height: 1.7;
		max-width: 100%;
	}

	.notify-premium__panel {
		padding: 18px;
		border-radius: 22px;
	}

	.notify-premium__field .ds-bl-lead__input,
	.notify-premium__button.ds-lp-lead__submit {
		height: 60px;
		border-radius: 16px;
	}

	.notify-premium__button.ds-lp-lead__submit {
		font-size: 0.82rem;
	}

	.notify-premium__actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.notify-premium__button.ds-lp-lead__submit {
		transition: none;
	}

	.notify-premium__button.ds-lp-lead__submit:hover {
		transform: none;
	}

	.notify-premium__button.ds-lp-lead__submit::after,
	.notify-premium__button.ds-lp-lead__submit:hover::after {
		animation: none !important;
		display: none;
	}
}

/* Tipografía: prioridad sobre plugins (p. ej. Use Any Font) en la landing */
body.ds-home-premium-v2 main#content.site-main.ds-built-landing {
	font-family: var(--ds-font-body) !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-hero__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-h2,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-story__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .corporate-premium__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-safety__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-gastro__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-close__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-post__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-lead__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-lp-heading,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-lp-h3,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-cities__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-dest-card__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-stat__num {
	font-family: var(--ds-font-display) !important;
}

/* Texto en main LP: gana a reglas globales del bloque #ds-premium (footer) */
body.ds-home-premium-v2 main#content.site-main.ds-built-landing :is(p, li, label, input, textarea, button, .ds-bl-lead__thanks, .ds-bl-lead__err) {
	font-family: var(--ds-font-body) !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing :is(h1, h2, h3, h4, h5, h6) {
	font-family: var(--ds-font-display) !important;
	font-weight: 500 !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing h1.ds-bl-hero__title {
	font-weight: 400 !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-hero__title-pre {
	font-family: var(--ds-font-body) !important;
	font-weight: 600 !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing h2.notify-premium__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing h2.corporate-premium__title,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing h2.ds-bl-proof__title {
	font-weight: 400 !important;
}

body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-hero__title-line2,
body.ds-home-premium-v2 main#content.site-main.ds-built-landing .ds-bl-hero .line-2 {
	font-weight: 600 !important;
}

/* -------------------------------------------------------------------------
   Contacto premium — landing comercial + CF7 real + meta cards
   ------------------------------------------------------------------------- */
.contact-premium-hero {
	position: relative;
	padding: clamp(72px, 8vw, 120px) 0 clamp(48px, 6vw, 72px);
	background:
		radial-gradient(circle at 14% 8%, rgba(232, 191, 150, 0.22), transparent 34%),
		radial-gradient(circle at 92% 18%, rgba(13, 53, 112, 0.06), transparent 30%),
		linear-gradient(180deg, #fffdf9 0%, #f5f0e8 55%, #ede5da 100%);
	overflow: hidden;
	box-sizing: border-box;
}

.contact-premium-hero__container {
	width: min(1420px, calc(100% - 64px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
	box-sizing: border-box;
}

.contact-premium-hero__left {
	min-width: 0;
}

.contact-premium-hero__brand {
	margin: 0 0 22px;
}

.contact-premium-hero__brand a {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
}

.contact-premium-hero__brand-text {
	display: inline-block;
	text-decoration: none;
	color: #0d3570;
}

.contact-premium-hero__brand img,
.contact-premium-hero__brand .custom-logo {
	max-height: 52px;
	width: auto;
	height: auto;
	display: block;
	filter: none;
}

.contact-premium-hero__brand-text {
	font-family: var(--ds-font-display, "DM Serif Display", "Cormorant Garamond", Georgia, serif);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.06em;
}

.contact-premium-hero__kicker {
	margin: 0 0 10px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-premium-hero__eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-premium-hero__title {
	margin: 0;
	max-width: 820px;
	font-family: var(--ds-font-display, "DM Serif Display", "Cormorant Garamond", Georgia, serif);
	font-weight: 400;
	font-size: clamp(2.85rem, 5.2vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #0d3570;
	text-wrap: balance;
}

.contact-premium-hero__title-line {
	display: block;
}

.contact-premium-hero__title-line--accent {
	color: #202c58;
	font-style: italic;
	font-weight: 500;
}

.contact-premium-hero__lead {
	margin: 18px 0 0;
	max-width: 720px;
	font-family: var(--ds-font-display, "DM Serif Display", "Cormorant Garamond", Georgia, serif);
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 500;
	line-height: 1.35;
	color: #1f2430;
}

.contact-premium-hero__description {
	margin: 20px 0 0;
	max-width: 640px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.75;
	font-weight: 400;
	color: #434a54;
}

.contact-premium-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
	margin: 22px 0 0;
}

.contact-premium-hero__cta-primary {
	min-width: min(100%, 260px) !important;
}

.contact-premium-hero__media {
	position: relative;
	margin-top: clamp(28px, 4vw, 40px);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(217, 203, 184, 0.85);
	background: #fffdf9;
	box-shadow: 0 20px 60px rgba(13, 53, 112, 0.1);
	aspect-ratio: 16 / 9;
	max-width: 720px;
}

.contact-premium-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.contact-premium-hero__media-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 22px 22px;
	background: linear-gradient(180deg, transparent, rgba(255, 253, 249, 0.92));
	pointer-events: none;
}

.contact-premium-hero__media-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(13, 53, 112, 0.2);
	background: rgba(232, 191, 150, 0.18);
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-premium-hero__media-caption {
	margin: 10px 0 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.95rem;
	line-height: 1.45;
	color: #434a54;
	max-width: 320px;
}

.contact-premium-hero__highlights {
	list-style: none;
	margin: clamp(28px, 4vw, 40px) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
	max-width: 720px;
}

.contact-premium-hero__highlight {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 16px;
	border: 1px solid rgba(217, 203, 184, 0.75);
	background: #fffdf9;
	box-shadow: 0 8px 28px rgba(13, 53, 112, 0.06);
}

.contact-premium-hero__highlight-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(232, 191, 150, 0.22);
	color: #0d3570;
}

.contact-premium-hero__highlight-label {
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.45;
	color: #1f2430;
	padding-top: 2px;
}

/* Columna del formulario: conserva namespace .contact-premium para estilos CF7 */
.contact-premium.contact-premium--aside {
	position: relative;
	padding: 0;
	margin: 0;
	background: none;
	overflow: visible;
	align-self: start;
}

@media (min-width: 1025px) {
	.contact-premium.contact-premium--aside {
		position: sticky;
		top: 88px;
	}
}

.contact-premium--aside .contact-premium__panel {
	scroll-margin-top: 100px;
}

#contact-premium-form-shell {
	scroll-margin-top: 120px;
	margin-top: 10px;
}

/* Selector superior (UX); los radios CF7 radio-interes siguen en el markup y se sincronizan por JS */
.contact-premium__intent {
	position: relative;
	z-index: 2;
	margin: 0 0 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(217, 203, 184, 0.75);
	pointer-events: auto;
}

.contact-premium__intent-label {
	margin: 0 0 14px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-premium__intent-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	position: relative;
	z-index: 2;
	align-items: stretch;
	pointer-events: auto;
}

.contact-premium__intent-options::before,
.contact-premium__intent-options::after {
	pointer-events: none;
}

.contact-premium__intent-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	pointer-events: none;
}

.contact-premium__intent-option {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	width: 100%;
	padding: 11px 14px;
	box-sizing: border-box;
	border-radius: 999px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.25;
	border: 1px solid rgba(13, 53, 112, 0.18);
	background: rgba(255, 253, 249, 0.95);
	color: #0d3570;
	cursor: pointer;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;
	transition:
		border-color 0.25s ease,
		background 0.25s ease,
		transform 0.2s ease,
		box-shadow 0.25s ease,
		color 0.25s ease;
}

.contact-premium__intent-option::before,
.contact-premium__intent-option::after {
	pointer-events: none;
}

.contact-premium__intent-cell {
	position: relative;
	min-width: 0;
	z-index: 2;
}

.contact-premium__intent-cell:focus-within .contact-premium__intent-option {
	outline: 2px solid rgba(232, 191, 150, 0.65);
	outline-offset: 3px;
}

.contact-premium__intent-input:checked + .contact-premium__intent-option {
	border-color: rgba(13, 53, 112, 0.42);
	background: linear-gradient(135deg, rgba(232, 191, 150, 0.35), rgba(255, 253, 249, 0.95));
	color: #0d3570;
}

.contact-premium__intent-option:hover {
	border-color: rgba(232, 191, 150, 0.75);
	transform: translateY(-1px);
	color: #202c58;
}

@media (max-width: 520px) {
	.contact-premium__intent-options {
		grid-template-columns: 1fr;
	}
}

/* Duplicado funcional CF7: oculto visualmente; valores se copian desde contact_intent */
.contact-premium__cf7-inner {
	position: relative;
}

.contact-premium__cf7-cell--interes-offscreen {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	pointer-events: none;
}

.contact-premium__trust {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 18px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.84rem;
	line-height: 1.5;
	color: #434a54;
	text-align: center;
	pointer-events: none;
}

.contact-premium__trust-icon {
	display: flex;
	color: #0d3570;
	flex-shrink: 0;
}

.contact-premium__secondary-cta {
	position: relative;
	z-index: 2;
	margin-top: 18px;
	text-align: center;
	pointer-events: auto;
}

.contact-premium__secondary-cta a {
	display: inline-block;
	position: relative;
	z-index: 2;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.84rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #0d3570 !important;
	text-decoration: none;
	cursor: pointer;
	pointer-events: auto;
	transition: color 0.25s ease;
}

.contact-premium__secondary-cta a:focus-visible {
	outline: 2px solid rgba(232, 191, 150, 0.65);
	outline-offset: 4px;
	border-radius: 4px;
}

.contact-premium__secondary-cta a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(232, 191, 150, 0.85), rgba(13, 53, 112, 0.12));
}

.contact-premium__secondary-cta a:hover,
.contact-premium__secondary-cta a:focus-visible {
	color: #202c58 !important;
}

.contact-premium__panel {
	position: relative;
	width: 100%;
	padding: 34px 34px 30px;
	border-radius: 30px;
	border: 1px solid rgba(217, 203, 184, 0.9);
	background: #fffdf9;
	box-shadow: 0 24px 70px rgba(13, 53, 112, 0.1), inset 0 1px 0 rgba(255, 253, 249, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-sizing: border-box;
	isolation: isolate;
}

.contact-premium__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(circle at 80% 0%, rgba(232, 191, 150, 0.14), transparent 38%);
}

.contact-premium__panel-label,
.contact-premium__intent,
.contact-premium__form-shell,
.contact-premium__microcopy,
.contact-premium__trust,
.contact-premium__secondary-cta {
	position: relative;
	z-index: 2;
}

.contact-premium__panel-label {
	margin: 0 0 18px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-premium__form-shell {
	margin: 0;
	padding: 0;
	min-width: 0;
}

.contact-premium__form-missing {
	margin: 0;
	padding: 16px;
	border-radius: 16px;
	border: 1px dashed rgba(13, 53, 112, 0.25);
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.9rem;
	line-height: 1.55;
	color: #434a54;
}

/* Por si quedara markup del editor dentro del shell (el PHP ya solo vuelca CF7) */
.contact-premium__form-shell .wp-block-cover,
.contact-premium__form-shell .portada-landing,
.contact-premium__form-shell .wp-block-spacer,
.contact-premium__form-shell .wp-block-heading,
.contact-premium__form-shell .wp-block-image,
.contact-premium__form-shell .wp-block-columns,
.contact-premium__form-shell .wp-block-separator {
	display: none !important;
}

.contact-premium__form-shell .wpcf7 {
	display: block !important;
}

.contact-premium__form-shell .wpcf7 form,
.contact-premium__form-shell form {
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0;
}

.contact-premium .wpcf7-form {
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0;
}

.contact-premium .wpcf7-form p {
	margin: 0;
	padding: 0;
}

/*
 * form-contacto histórico (CF7 + Bootstrap): .row usa margin negativo pero nkdp-bootstrap
 * no define padding en .col-* → las columnas quedan a 0px y los inputs se tocan.
 */
.contact-premium .form-contacto {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.contact-premium .form-contacto .row {
	--bs-gutter-x: 22px;
	--bs-gutter-y: 22px;
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(var(--bs-gutter-x) / -2) !important;
	margin-right: calc(var(--bs-gutter-x) / -2) !important;
	margin-top: 0 !important;
	width: 100%;
	max-width: 100%;
	row-gap: var(--bs-gutter-y);
	box-sizing: border-box;
}

.contact-premium .form-contacto .row > [class*="col"] {
	padding-left: calc(var(--bs-gutter-x) / 2) !important;
	padding-right: calc(var(--bs-gutter-x) / 2) !important;
	box-sizing: border-box !important;
	min-width: 0;
}

.contact-premium .form-contacto .row > [class*="col"] > label:first-child {
	display: block;
	margin-bottom: 10px;
}

.contact-premium .form-contacto .row > [class*="col"] .wpcf7-form-control-wrap {
	min-width: 0;
	max-width: 100%;
}

.contact-premium .wpcf7-form p:has(.wpcf7-text) label,
.contact-premium .wpcf7-form p:has(.wpcf7-email) label,
.contact-premium .wpcf7-form p:has(.wpcf7-url) label,
.contact-premium .wpcf7-form p:has(.wpcf7-tel) label,
.contact-premium .wpcf7-form p:has(.wpcf7-number) label,
.contact-premium .wpcf7-form p:has(.wpcf7-textarea) label,
.contact-premium .wpcf7-form p:has(.wpcf7-select) label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* Labels visibles del formulario canónico (no usar sr-only). */
.contact-premium .wpcf7-form p label.contact-premium__cf7-label {
	position: static !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	margin: 0 0 10px !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: normal !important;
	border: 0 !important;
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
	text-transform: none !important;
	color: #1f2430 !important;
}

.contact-premium__cf7-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 22px;
	column-gap: 22px;
	row-gap: 24px;
	align-items: start;
	margin: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}

.contact-premium__cf7-cell--full,
.contact-premium__form-shell .is-full,
.contact-premium__form-shell .full-width {
	grid-column: 1 / -1;
}

.contact-premium__cf7-cell {
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%;
	gap: 0;
}

.contact-premium__cf7-cell > p {
	margin: 0 !important;
	padding: 0 !important;
}

.contact-premium__cf7-label {
	display: block;
	margin-bottom: 10px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	color: #1f2430;
}

.contact-premium__req {
	color: #0d3570 !important;
	font-weight: 700;
	margin-left: 2px;
}

.contact-premium__cf7-acceptance .wpcf7-list-item-label,
.contact-premium__cf7-acceptance label {
	font-size: 0.86rem !important;
	line-height: 1.5 !important;
	color: #434a54 !important;
}

.contact-premium__cf7-acceptance a {
	color: #0d3570 !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-premium__cf7-submit-wrap {
	margin-top: 8px;
}

.contact-premium .wpcf7-form-control-wrap,
.contact-premium .contact-premium__field {
	display: block;
	width: 100%;
}

.contact-premium .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: 0 !important;
}

.contact-premium .wpcf7-acceptance {
	display: block;
	margin-top: 8px;
}

.contact-premium textarea {
	margin-top: 6px;
}

.contact-premium .form-ferialeon input,
.contact-premium .form-ferialeon textarea,
.contact-premium .form-ferialeon select,
.contact-premium .form-corporativo input,
.contact-premium .form-corporativo textarea,
.contact-premium .form-corporativo select,
.contact-premium .form-contacto input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.contact-premium .form-contacto textarea,
.contact-premium .form-contacto select,
.contact-premium .wpcf7 input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.contact-premium .wpcf7 textarea,
.contact-premium .wpcf7 select {
	width: 100% !important;
	height: 58px !important;
	padding: 0 18px !important;
	border-radius: 16px !important;
	border: 1px solid rgba(217, 203, 184, 0.95) !important;
	background: #fffdf9 !important;
	color: #1f2430 !important;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 0.95rem !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	box-shadow: inset 0 1px 0 rgba(255, 253, 249, 0.9), 0 6px 20px rgba(13, 53, 112, 0.06) !important;
	outline: none !important;
	box-sizing: border-box !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease !important;
}

.contact-premium .wpcf7 select,
.contact-premium .form-ferialeon select,
.contact-premium .form-corporativo select,
.contact-premium .form-contacto select {
	padding-right: 40px !important;
	background-image: linear-gradient(45deg, transparent 50%, rgba(13, 53, 112, 0.55) 50%),
		linear-gradient(135deg, rgba(13, 53, 112, 0.55) 50%, transparent 50%),
		linear-gradient(180deg, #fffdf9, #fffdf9) !important;
	background-position:
		calc(100% - 22px) calc(50% - 3px),
		calc(100% - 16px) calc(50% - 3px),
		0 0 !important;
	background-size: 6px 6px, 6px 6px, auto !important;
	background-repeat: no-repeat, no-repeat, no-repeat !important;
	cursor: pointer !important;
}

.contact-premium .wpcf7 select option,
.contact-premium .form-ferialeon select option,
.contact-premium .form-corporativo select option,
.contact-premium .form-contacto select option {
	background: #fffdf9 !important;
	color: #1f2430 !important;
}

.contact-premium .wpcf7 textarea,
.contact-premium .form-ferialeon textarea,
.contact-premium .form-corporativo textarea,
.contact-premium .form-contacto textarea {
	min-height: 148px !important;
	height: 148px !important;
	padding: 16px 18px !important;
	resize: vertical !important;
}

.contact-premium .wpcf7 input::placeholder,
.contact-premium .wpcf7 textarea::placeholder,
.contact-premium .form-ferialeon input::placeholder,
.contact-premium .form-ferialeon textarea::placeholder,
.contact-premium .form-corporativo input::placeholder,
.contact-premium .form-corporativo textarea::placeholder,
.contact-premium .form-contacto input::placeholder,
.contact-premium .form-contacto textarea::placeholder {
	color: #5a616d !important;
	opacity: 1 !important;
}

.contact-premium .wpcf7 input:focus,
.contact-premium .wpcf7 textarea:focus,
.contact-premium .wpcf7 select:focus,
.contact-premium .form-ferialeon input:focus,
.contact-premium .form-ferialeon textarea:focus,
.contact-premium .form-ferialeon select:focus,
.contact-premium .form-corporativo input:focus,
.contact-premium .form-corporativo textarea:focus,
.contact-premium .form-corporativo select:focus,
.contact-premium .form-contacto input:focus,
.contact-premium .form-contacto textarea:focus,
.contact-premium .form-contacto select:focus {
	border-color: rgba(13, 53, 112, 0.4) !important;
	box-shadow:
		0 0 0 4px rgba(232, 191, 150, 0.25),
		inset 0 1px 0 rgba(255, 253, 249, 1),
		0 8px 24px rgba(13, 53, 112, 0.08) !important;
}

.contact-premium .wpcf7 input.wpcf7-not-valid,
.contact-premium .wpcf7 select.wpcf7-not-valid,
.contact-premium .wpcf7 textarea.wpcf7-not-valid {
	border-color: rgba(232, 150, 150, 0.55) !important;
}

.contact-premium .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.82rem;
	color: #9b3d3d;
}

.contact-premium .wpcf7 input[type="radio"],
.contact-premium .wpcf7 input[type="checkbox"],
.contact-premium .form-ferialeon input[type="radio"],
.contact-premium .form-ferialeon input[type="checkbox"],
.contact-premium .form-corporativo input[type="radio"],
.contact-premium .form-corporativo input[type="checkbox"],
.contact-premium .form-contacto input[type="radio"],
.contact-premium .form-contacto input[type="checkbox"] {
	width: 1.05rem !important;
	height: 1.05rem !important;
	min-width: 1.05rem !important;
	min-height: 1.05rem !important;
	margin: 0 10px 0 0 !important;
	padding: 0 !important;
	border-radius: 50% !important;
	accent-color: #0d3570 !important;
	box-shadow: none !important;
	background: #fffdf9 !important;
	vertical-align: middle;
}

.contact-premium .wpcf7 input[type="checkbox"],
.contact-premium .form-ferialeon input[type="checkbox"],
.contact-premium .form-corporativo input[type="checkbox"],
.contact-premium .form-contacto input[type="checkbox"] {
	border-radius: 5px !important;
}

.contact-premium .wpcf7-list-item,
.contact-premium .form-ferialeon .wpcf7-list-item,
.contact-premium .form-corporativo .wpcf7-list-item,
.contact-premium .form-contacto .wpcf7-list-item {
	margin: 0 0 10px !important;
}

.contact-premium .wpcf7-list-item label,
.contact-premium .form-ferialeon label,
.contact-premium .form-corporativo label,
.contact-premium .form-contacto .wpcf7-list-item label {
	position: static !important;
	width: auto !important;
	height: auto !important;
	clip: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	white-space: normal !important;
	display: inline-flex !important;
	align-items: center !important;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 0.9rem !important;
	color: #434a54 !important;
}

.contact-premium .wpcf7 input[type="submit"],
.contact-premium .form-ferialeon input[type="submit"],
.contact-premium .form-corporativo input[type="submit"],
.contact-premium .form-contacto input[type="submit"] {
	width: 100% !important;
	height: 58px !important;
	margin-top: 8px !important;
	padding: 0 24px !important;
	border: 1px solid rgba(13, 53, 112, 0.35) !important;
	border-radius: 999px !important;
	background: linear-gradient(180deg, #0d3570, #0a2d5e) !important;
	color: #fffdf9 !important;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	box-shadow:
		0 14px 32px rgba(13, 53, 112, 0.28),
		inset 0 1px 0 rgba(255, 253, 249, 0.12) !important;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		filter 0.25s ease !important;
	-webkit-tap-highlight-color: transparent;
}

.contact-premium .wpcf7 input[type="submit"]:hover,
.contact-premium .form-ferialeon input[type="submit"]:hover,
.contact-premium .form-corporativo input[type="submit"]:hover,
.contact-premium .form-contacto input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow:
		0 20px 44px rgba(13, 53, 112, 0.32),
		0 0 0 1px rgba(232, 191, 150, 0.35),
		inset 0 1px 0 rgba(255, 253, 249, 0.18) !important;
}

.contact-premium .wpcf7 input[type="submit"]:focus-visible,
.contact-premium .form-ferialeon input[type="submit"]:focus-visible,
.contact-premium .form-corporativo input[type="submit"]:focus-visible,
.contact-premium .form-contacto input[type="submit"]:focus-visible {
	outline: 2px solid rgba(232, 191, 150, 0.75) !important;
	outline-offset: 3px !important;
}

.contact-premium .wpcf7-spinner {
	margin: 12px auto 0;
}

/* CF7: mensaje de respuesta — premium claro editorial */
/* Oculto por defecto: si falta la clase .init (caché, JS, HTML raro) no debe mostrarse como bloque visible. */
.contact-premium .wpcf7 form .wpcf7-response-output {
	display: none !important;
	margin: 22px 0 0 !important;
	padding: 22px 24px !important;
	border-radius: 22px !important;
	border: 1px solid rgba(217, 203, 184, 0.9) !important;
	background: #fffdf9 !important;
	background-color: #fffdf9 !important;
	box-shadow: 0 14px 36px rgba(13, 53, 112, 0.08), inset 0 1px 0 rgba(255, 253, 249, 1) !important;
	color: #1f2430 !important;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif) !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	line-height: 1.65 !important;
	position: relative;
}

/* Solo mostrar cuando CF7 indica estado con mensaje (clase + data-status por si una de las dos falla). */
.contact-premium .wpcf7 form.sent .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="sent"] .wpcf7-response-output,
.contact-premium .wpcf7 form.invalid .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="invalid"] .wpcf7-response-output,
.contact-premium .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="unaccepted"] .wpcf7-response-output,
.contact-premium .wpcf7 form.payment-required .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="payment-required"] .wpcf7-response-output,
.contact-premium .wpcf7 form.failed .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="failed"] .wpcf7-response-output,
.contact-premium .wpcf7 form.aborted .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="aborted"] .wpcf7-response-output,
.contact-premium .wpcf7 form.spam .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="spam"] .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status^="custom-"] .wpcf7-response-output {
	display: flex !important;
	align-items: flex-start;
	gap: 14px;
}

.contact-premium .wpcf7 form.sent .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="sent"] .wpcf7-response-output {
	border-color: rgba(13, 53, 112, 0.22) !important;
	box-shadow:
		0 14px 36px rgba(13, 53, 112, 0.08),
		inset 0 1px 0 rgba(255, 253, 249, 1),
		0 0 0 1px rgba(232, 191, 150, 0.35) !important;
}

.contact-premium .wpcf7 form .wpcf7-response-output::before {
	flex-shrink: 0;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0 !important;
	margin-top: 2px !important;
	border-radius: 50%;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #ede5da;
	color: #0d3570 !important;
	font-family: inherit !important;
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "" !important;
}

.contact-premium .wpcf7 form.sent .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="sent"] .wpcf7-response-output::before {
	content: "✓" !important;
	border-color: rgba(13, 53, 112, 0.25) !important;
	background: rgba(232, 191, 150, 0.35) !important;
	color: #0d3570 !important;
}

.contact-premium .wpcf7 form.invalid .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="invalid"] .wpcf7-response-output,
.contact-premium .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="unaccepted"] .wpcf7-response-output,
.contact-premium .wpcf7 form.payment-required .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="payment-required"] .wpcf7-response-output {
	border-color: rgba(200, 160, 90, 0.55) !important;
	color: #1f2430 !important;
}

.contact-premium .wpcf7 form.invalid .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="invalid"] .wpcf7-response-output::before,
.contact-premium .wpcf7 form.unaccepted .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="unaccepted"] .wpcf7-response-output::before,
.contact-premium .wpcf7 form.payment-required .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="payment-required"] .wpcf7-response-output::before {
	content: "!" !important;
	border-color: rgba(200, 160, 90, 0.65) !important;
	background: rgba(232, 191, 150, 0.28) !important;
	color: #7a4a0a !important;
}

.contact-premium .wpcf7 form.failed .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="failed"] .wpcf7-response-output,
.contact-premium .wpcf7 form.aborted .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="aborted"] .wpcf7-response-output {
	border-color: rgba(180, 90, 90, 0.45) !important;
	color: #5c1f1f !important;
}

.contact-premium .wpcf7 form.failed .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="failed"] .wpcf7-response-output::before,
.contact-premium .wpcf7 form.aborted .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="aborted"] .wpcf7-response-output::before {
	content: "!" !important;
	border-color: rgba(180, 90, 90, 0.5) !important;
	background: rgba(220, 160, 160, 0.35) !important;
	color: #8b2a2a !important;
}

.contact-premium .wpcf7 form.spam .wpcf7-response-output,
.contact-premium .wpcf7 form[data-status="spam"] .wpcf7-response-output {
	border-color: rgba(95, 100, 112, 0.35) !important;
	color: #434a54 !important;
}

.contact-premium .wpcf7 form.spam .wpcf7-response-output::before,
.contact-premium .wpcf7 form[data-status="spam"] .wpcf7-response-output::before {
	content: "·" !important;
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	line-height: 0.85 !important;
	border-color: rgba(95, 100, 112, 0.35) !important;
	background: #ede5da !important;
	color: #434a54 !important;
}

.contact-premium__microcopy {
	margin: 18px 0 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.94rem;
	line-height: 1.6;
	color: #434a54;
}

.contact-premium-offers {
	position: relative;
	padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
	background:
		radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 191, 150, 0.18), transparent 55%),
		linear-gradient(180deg, #f5f0e8 0%, #ede5da 100%);
	box-sizing: border-box;
}

.contact-premium-offers__inner {
	width: min(1420px, calc(100% - 64px));
	margin: 0 auto;
	box-sizing: border-box;
}

.contact-premium-offers__header {
	max-width: 720px;
	margin: 0 auto 40px;
	text-align: center;
}

.contact-premium-offers__title {
	margin: 0;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 500;
	line-height: 1.15;
	color: #0d3570;
}

.contact-premium-offers__subtitle {
	margin: 16px 0 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 1rem;
	line-height: 1.7;
	color: #434a54;
}

.contact-premium-offers__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.contact-offer-card {
	position: relative;
	padding: 32px 30px 36px;
	border-radius: 26px;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	box-shadow: 0 22px 56px rgba(13, 53, 112, 0.08), inset 0 1px 0 rgba(255, 253, 249, 1);
	box-sizing: border-box;
	overflow: hidden;
}

.contact-offer-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.55;
	background: radial-gradient(circle at 100% 0%, rgba(232, 191, 150, 0.22), transparent 42%);
}

.contact-offer-card > * {
	position: relative;
	z-index: 1;
}

.contact-offer-card--business {
	border-color: rgba(13, 53, 112, 0.2);
	background: linear-gradient(160deg, #fffdf9, #f5f0e8);
}

.contact-offer-card__eyebrow {
	margin: 0 0 12px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-offer-card__title {
	margin: 0;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: 1.65rem;
	font-weight: 500;
	line-height: 1.2;
	color: #202c58;
}

.contact-offer-card__text {
	margin: 16px 0 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.95rem;
	line-height: 1.75;
	color: #434a54;
}

.contact-offer-card__cta {
	display: inline-flex;
	margin-top: 26px;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1px solid rgba(13, 53, 112, 0.35);
	background: linear-gradient(180deg, #0d3570, #0a2d5e);
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fffdf9 !important;
	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 12px 28px rgba(13, 53, 112, 0.2);
}

.contact-offer-card__cta:hover,
.contact-offer-card__cta:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(232, 191, 150, 0.85);
	box-shadow: 0 16px 36px rgba(13, 53, 112, 0.26), 0 0 0 1px rgba(232, 191, 150, 0.4);
	color: #fffdf9 !important;
}

.contact-offer-card__cta--secondary {
	border-color: rgba(232, 191, 150, 0.85);
	background: transparent;
	color: #0d3570 !important;
	box-shadow: none;
}

.contact-offer-card__cta--secondary:hover,
.contact-offer-card__cta--secondary:focus-visible {
	border-color: #0d3570;
	color: #202c58 !important;
	box-shadow: 0 8px 24px rgba(13, 53, 112, 0.1);
}

.contact-premium-meta {
	padding: 12px 0 110px;
	background: linear-gradient(180deg, #ede5da 0%, #f5f0e8 100%);
	box-sizing: border-box;
}

.contact-premium-meta__grid {
	width: min(1420px, calc(100% - 64px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	box-sizing: border-box;
}

.contact-meta-card {
	padding: 26px;
	border-radius: 24px;
	border: 1px solid rgba(217, 203, 184, 0.9);
	background: #fffdf9;
	box-shadow: 0 18px 44px rgba(13, 53, 112, 0.07), inset 0 1px 0 rgba(255, 253, 249, 1);
	box-sizing: border-box;
}

.contact-meta-card__eyebrow {
	margin: 0 0 10px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #0d3570;
}

.contact-meta-card__title {
	margin: 0;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: 1.28rem;
	font-weight: 500;
	line-height: 1.2;
	color: #202c58;
}

.contact-meta-card__text {
	margin: 12px 0 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.95rem;
	line-height: 1.75;
	color: #434a54;
}

.contact-meta-card__link {
	display: inline-flex;
	margin-top: 18px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.88rem;
	font-weight: 500;
	color: #0d3570 !important;
	text-decoration: none;
	position: relative;
	transition: color 0.25s ease;
}

.contact-meta-card__link:hover,
.contact-meta-card__link:focus-visible {
	color: #202c58 !important;
}

.contact-meta-card__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(232, 191, 150, 0.95), rgba(13, 53, 112, 0.15));
}

body.ds-contact-premium-page main#content.contact-premium-shell {
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	padding-top: 0;
}

@media (max-width: 1024px) {
	.contact-premium-hero__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-premium__panel {
		max-width: 820px;
		margin: 0 auto;
	}

	.contact-premium-offers__grid {
		grid-template-columns: 1fr;
	}

	.contact-premium-meta__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.contact-premium-hero__container,
	.contact-premium-offers__inner,
	.contact-premium-meta__grid {
		width: min(100% - 24px, 100%);
	}

	.contact-premium__cf7-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		row-gap: 20px;
		column-gap: 0;
	}

	.contact-premium .form-contacto .row {
		--bs-gutter-x: 18px;
		--bs-gutter-y: 20px;
	}

	.contact-premium-hero {
		padding-top: 64px;
	}

	.contact-premium-hero__highlights {
		grid-template-columns: 1fr;
	}

	.contact-premium__panel {
		padding: 22px 18px 20px;
		border-radius: 22px;
	}

	.contact-premium-hero__title {
		font-size: clamp(2.35rem, 10vw, 3.25rem);
		line-height: 1.05;
	}
}

/* —— Home landing: medios de pago (editorial claro, línea Athens) —— */
.premium-payments {
	position: relative;
	padding: clamp(4.5rem, 9vw, 7.5rem) var(--ds-bl-x, clamp(1.25rem, 5vw, 2rem));
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 0%, rgba(232, 191, 150, 0.28), transparent 42%),
		radial-gradient(ellipse 80% 50% at 100% 55%, rgba(13, 53, 112, 0.08), transparent 52%),
		linear-gradient(180deg, #fffdf9 0%, #f5f0e8 50%, #ede5da 100%);
	box-sizing: border-box;
}

.premium-payments__container {
	width: min(1280px, 100%);
	margin: 0 auto;
}

.premium-payments__content {
	max-width: 46rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.premium-payments__eyebrow {
	margin: 0 0 0.875rem;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #0d3570;
}

.premium-payments__title {
	margin: 0;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #0d3570;
}

.premium-payments__description {
	margin: 1.125rem 0 0;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: clamp(0.95rem, 1.9vw, 1.0625rem);
	line-height: 1.75;
	color: #434a54;
	max-width: 40rem;
}

.premium-payments__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.35rem);
	align-items: stretch;
}

@media (min-width: 900px) {
	.premium-payments__grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
		gap: 1.25rem;
	}
}

.premium-payments__card {
	border-radius: 28px;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	box-shadow: 0 22px 56px rgba(13, 53, 112, 0.08), inset 0 1px 0 rgba(255, 253, 249, 1);
	padding: clamp(1.5rem, 3.5vw, 1.75rem);
	box-sizing: border-box;
}

.premium-payments__card--primary {
	border-color: rgba(13, 53, 112, 0.28);
	background: linear-gradient(155deg, #eef3fb 0%, #fffdf9 45%, #f5f0e8 100%);
	box-shadow:
		0 26px 64px rgba(13, 53, 112, 0.12),
		0 0 0 1px rgba(232, 191, 150, 0.35),
		inset 0 1px 0 rgba(255, 253, 249, 1);
}

.premium-payments__paypal-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 0.25rem;
}

.premium-payments__logo--paypal {
	display: block;
	width: clamp(7.5rem, 28vw, 9.25rem);
	height: auto;
	max-height: 3.5rem;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 4px 16px rgba(13, 53, 112, 0.12));
}

.premium-payments__paypal-kicker {
	display: block;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: clamp(0.72rem, 1.6vw, 0.8125rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #0d3570;
	line-height: 1.35;
}

.premium-payments__card-heading {
	margin: 0 0 0.65rem;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: clamp(1.25rem, 2.4vw, 1.5rem);
	font-weight: 500;
	color: #202c58;
	line-height: 1.2;
}

.premium-payments__card--primary .premium-payments__card-heading {
	color: #0d3570;
}

.premium-payments__card-text {
	margin: 0 0 0.75rem;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.9375rem;
	line-height: 1.68;
	color: #434a54;
}

.premium-payments__card-text:last-child {
	margin-bottom: 0;
}

.premium-payments__card-text strong {
	color: #1f2430;
	font-weight: 600;
}

.premium-payments__card--primary .premium-payments__card-text strong {
	color: #0d3570;
}

.premium-payments__card-text--emphasis {
	color: #1f2430;
}

.premium-payments__card-text--muted {
	color: #3d444d;
	font-size: 0.90625rem;
}

.premium-payments__brands {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(0.75rem, 2vw, 1.25rem);
	list-style: none;
	margin: 1rem 0 0;
	padding: clamp(0.85rem, 2vw, 1.1rem) clamp(0.75rem, 2vw, 1rem);
	background: rgba(237, 229, 218, 0.65);
	border-radius: 18px;
	border: 1px solid rgba(217, 203, 184, 0.9);
}

.premium-payments__brands li {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.premium-payments__brand-img {
	display: block;
	width: clamp(3.25rem, 14vw, 4.5rem);
	height: auto;
	max-height: 2rem;
	object-fit: contain;
}

/* Cierre de sección: transferencia + CTA reserva (una sola composición) */
.premium-payments__closure {
	margin-top: clamp(1.75rem, 4vw, 2.25rem);
	width: 100%;
	max-width: min(720px, 100%);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.premium-payments__support {
	margin: 0;
	padding: 30px clamp(22px, 4vw, 36px) 28px;
	border-radius: 28px;
	border: 1px solid rgba(217, 203, 184, 0.95);
	background: #fffdf9;
	box-shadow: 0 20px 48px rgba(13, 53, 112, 0.08), inset 0 1px 0 rgba(255, 253, 249, 1);
	text-align: center;
	box-sizing: border-box;
}

.premium-payments__support-eyebrow {
	margin: 0 0 10px;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #0d3570;
}

.premium-payments__support-title {
	margin: 0;
	font-family: var(--ds-font-display, "Cormorant Garamond", Georgia, serif);
	font-size: clamp(1.6rem, 2.4vw, 2.15rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #0d3570;
}

.premium-payments__support .premium-payments__support-text {
	margin: 14px auto 0;
	max-width: 38rem;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	font-size: 1rem;
	line-height: 1.75;
	color: #454b54;
}

/* CTA secundario (WhatsApp): outline premium, sin vínculo tipo texto ni morado */
.premium-payments__support-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 54px;
	margin-top: 22px;
	padding: 0 24px;
	box-sizing: border-box;
	border-radius: 999px;
	border: 1px solid rgba(13, 53, 112, 0.35);
	background: transparent;
	color: #0d3570;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.82rem;
	font-weight: 600;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	box-shadow: 0 8px 22px rgba(13, 53, 112, 0.08);
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.premium-payments__support-cta:hover,
.premium-payments__support-cta:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(232, 191, 150, 0.95);
	color: #202c58;
	background: rgba(232, 191, 150, 0.18);
	box-shadow: 0 14px 32px rgba(13, 53, 112, 0.12), 0 0 0 1px rgba(232, 191, 150, 0.45);
	outline: none;
}

.premium-payments__support-cta:visited {
	color: #0d3570;
}

.premium-payments__support-cta:visited:hover {
	color: #202c58;
}

.premium-payments__closure-divider {
	margin: 26px auto 0;
	max-width: min(420px, 88%);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 203, 184, 0.95), transparent);
	border: 0;
}

.premium-payments__actions {
	margin-top: 22px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

/* CTA principal reserva: azul profundo, más presencia que WhatsApp */
.premium-payments__cta--primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	min-height: 60px;
	padding: 0 30px;
	box-sizing: border-box;
	border-radius: 999px;
	border: 1px solid rgba(13, 53, 112, 0.35);
	background: linear-gradient(180deg, #0d3570, #0a2d5e);
	color: #fffdf9 !important;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.86rem;
	font-weight: 700;
	font-family: var(--ds-font-body, "Inter", system-ui, sans-serif);
	box-shadow:
		0 18px 40px rgba(13, 53, 112, 0.28),
		inset 0 1px 0 rgba(255, 253, 249, 0.12);
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.premium-payments__cta--primary:hover,
.premium-payments__cta--primary:focus-visible {
	transform: translateY(-2px);
	color: #fffdf9 !important;
	background: linear-gradient(180deg, #143f78, #0e3470);
	border-color: rgba(232, 191, 150, 0.55);
	box-shadow:
		0 24px 48px rgba(13, 53, 112, 0.32),
		0 0 0 1px rgba(232, 191, 150, 0.45),
		inset 0 1px 0 rgba(255, 253, 249, 0.18);
	outline: none;
}

.premium-payments__cta--primary:visited {
	color: #fffdf9 !important;
}

.premium-payments__cta--primary:visited:hover {
	color: #fffdf9 !important;
}

/* Anula colores globales de enlaces del tema (evita azul/morado en :link/:visited) */
.entry-content .premium-payments__closure a.premium-payments__support-cta:link,
.entry-content .premium-payments__closure a.premium-payments__support-cta:visited {
	color: #0d3570;
	text-decoration: none;
}

.entry-content .premium-payments__closure a.premium-payments__cta--primary:link,
.entry-content .premium-payments__closure a.premium-payments__cta--primary:visited {
	color: #fffdf9 !important;
	text-decoration: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.premium-payments__support-cta:hover,
	.premium-payments__support-cta:focus-visible,
	.premium-payments__cta--primary:hover,
	.premium-payments__cta--primary:focus-visible {
		transform: none;
	}

	.contact-premium .wpcf7 input[type="submit"]:hover,
	.contact-premium .form-ferialeon input[type="submit"]:hover,
	.contact-premium .form-corporativo input[type="submit"]:hover,
	.contact-premium .form-contacto input[type="submit"]:hover {
		transform: none;
	}

	.contact-premium .wpcf7 input:not([type="submit"]),
	.contact-premium .wpcf7 textarea,
	.contact-premium .wpcf7 select,
	.contact-premium .form-ferialeon input,
	.contact-premium .form-ferialeon textarea,
	.contact-premium .form-ferialeon select,
	.contact-premium .form-corporativo input,
	.contact-premium .form-corporativo textarea,
	.contact-premium .form-corporativo select,
	.contact-premium .form-contacto input,
	.contact-premium .form-contacto textarea,
	.contact-premium .form-contacto select,
	.contact-premium .wpcf7 input[type="submit"] {
		transition: none !important;
	}
}

/* —— A11y: contraste AA+ sobre arena/#fffdf9 (landing .ds-built-landing) —— */
main.ds-built-landing .ds-lp-eyebrow,
main.ds-built-landing .ds-bl-kicker {
	color: #0a0908 !important;
}

main.ds-built-landing .ds-lp-exp__pillar-label {
	color: #3d1f0f !important;
}
.ds-built-landing .ds-bl-cities__eyebrow,
.ds-built-landing #ciudades .section-eyebrow {
	color: #08224a;
}

/* Hero ATF: blanco sólido sobre overlay (contraste Lighthouse) */
.ds-built-landing .ds-bl-hero__inner .ds-bl-hero__eyebrow,
.ds-built-landing .ds-bl-hero__inner .ds-bl-hero__lead,
.ds-built-landing .ds-bl-hero__inner .ds-bl-hero__cta-hint,
.ds-built-landing .ds-bl-hero__inner .ds-bl-hero__microcopy,
.ds-built-landing .ds-bl-hero__inner .hero__microcopy {
	color: #ffffff !important;
}

.ds-built-landing .ds-bl-cities__subtitle,
.ds-built-landing #ciudades .section-subtitle {
	color: var(--text-soft) !important;
}

main.ds-built-landing .ds-lp-sub,
main.ds-built-landing .ds-lp-body,
main.ds-built-landing .ds-lp-lead,
main.ds-built-landing .ds-bl-section__sub,
main.ds-built-landing .ds-bl-story__text,
main.ds-built-landing .ds-lp-exp__pillar-txt {
	color: var(--text-soft) !important;
}

main.ds-built-landing .ds-bl-safety__lead,
main.ds-built-landing .ds-bl-safety__bullets {
	color: var(--text-soft) !important;
}

main.ds-built-landing .premium-payments__card-text,
main.ds-built-landing .premium-payments__description {
	color: var(--text-soft) !important;
}

main.ds-built-landing .premium-payments__card-text strong {
	color: var(--text-soft) !important;
}

main.ds-built-landing .premium-payments__card-text--muted {
	color: var(--text-soft) !important;
}

main.ds-built-landing .premium-payments__support-eyebrow {
	color: var(--text-soft) !important;
}

main.ds-built-landing .premium-payments__support .premium-payments__support-text,
main.ds-built-landing .premium-payments__support-title + .premium-payments__support-text {
	color: var(--text-soft) !important;
}

/* Nav superior: blanco sólido sobre barra oscura */
.ds-home-premium-v2 .premium-top-nav .premium-top-nav__link,
.ds-home-premium-v2 .premium-top-nav .premium-top-nav__link:visited,
.ds-home-premium-v2 .premium-top-nav .premium-top-nav__link:hover,
.ds-home-premium-v2 .premium-top-nav .premium-top-nav__link:active {
	color: #ffffff !important;
}

.ds-home-premium-v2 .premium-top-nav .premium-top-nav__region {
	color: #ffffff !important;
}

.ds-built-landing .ds-bl-lead__input::placeholder,
.ds-built-landing .notify-premium__field .ds-bl-lead__input::placeholder {
	color: #2a3038 !important;
}

/* Imágenes: no exceder ancho de layout; respeta width/height del markup */
.ds-built-landing img,
main.ds-built-landing img {
	max-width: 100%;
	height: auto;
}
