/* ============================================================
 * Experiencias Premium · v4.2.0
 * Diseño luxury con iconos hoteleros · números romanos · ornamentos
 * ============================================================ */

.sm-front-exp--premium {
	position: relative;
	padding: 96px 0 100px;
	background:
		radial-gradient(ellipse at top, rgba(201, 164, 74, 0.06) 0%, transparent 50%),
		linear-gradient(180deg, #00075A 0%, #000741 100%);
	color: #F8F5F2;
	overflow: hidden;
}

/* Ornamentos circulares decorativos · esquinas */
.sm-front-exp__bg-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.sm-front-exp__bg-ornament {
	position: absolute;
	width: 380px;
	height: 380px;
	color: rgba(201, 164, 74, 0.08);
	opacity: 0.6;
}

.sm-front-exp__bg-ornament--left {
	top: -120px;
	left: -120px;
}

.sm-front-exp__bg-ornament--right {
	bottom: -120px;
	right: -120px;
}

/* INNER */
.sm-front-exp__inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

/* ─── HEADER · Centrado luxury ───────────────────────── */
.sm-front-exp__intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.sm-front-exp__eyebrow-wrap {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.sm-front-exp__eyebrow-line {
	display: inline-block;
	width: 36px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.7) 50%, transparent);
}

.sm-front-exp__eyebrow {
	font-family: 'Inter', system-ui, sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.42em !important;
	text-transform: uppercase !important;
	color: #C9A44A !important;
	margin: 0 !important;
}

.sm-front-exp__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: clamp(40px, 5.5vw, 64px) !important;
	font-weight: 400 !important;
	font-style: italic !important;
	color: #F8F5F2 !important;
	letter-spacing: 0.005em !important;
	line-height: 1.1 !important;
	margin: 0 !important;
}

/* Divider ornamental · línea + ◆ + línea */
.sm-front-exp__ornament {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 4px 0;
}

.sm-front-exp__ornament-line {
	display: inline-block;
	width: 56px;
	height: 1px;
	background: rgba(201, 164, 74, 0.5);
}

.sm-front-exp__ornament-diamond {
	color: #C9A44A;
	font-size: 8px;
}

.sm-front-exp__lead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14.5px;
	color: rgba(248, 245, 242, 0.7);
	line-height: 1.8;
	margin: 0;
	max-width: 620px;
}

/* ─── CARDS DE SERVICIOS premium ─────────────────────── */
.sm-front-exp__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 56px;
}

.sm-front-exp__item {
	position: relative;
	background: linear-gradient(180deg,
		rgba(255, 255, 255, 0.04) 0%,
		rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(201, 164, 74, 0.15);
	padding: 48px 28px 32px;
	border-radius: 4px;
	text-align: center;
	transition: all 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Línea decorativa superior dorada que aparece al hover */
.sm-front-exp__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-front-exp__item:hover {
	transform: translateY(-8px);
	background: linear-gradient(180deg,
		rgba(201, 164, 74, 0.08) 0%,
		rgba(255, 255, 255, 0.02) 100%);
	border-color: rgba(201, 164, 74, 0.45);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(201, 164, 74, 0.15);
}

.sm-front-exp__item:hover::before {
	transform: scaleX(1);
}

/* Número romano · oculto */
.sm-front-exp__item-numeral {
	display: none;
}

/* Icono con marco circular · ring dorado */
.sm-front-exp__item-icon-wrap {
	position: relative;
	width: 96px;
	height: 96px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sm-front-exp__item-icon-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(201, 164, 74, 0.3);
	transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-front-exp__item-icon-ring::before {
	content: '';
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	border: 1px solid rgba(201, 164, 74, 0.2);
	transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-front-exp__item:hover .sm-front-exp__item-icon-ring {
	border-color: rgba(201, 164, 74, 0.7);
	transform: scale(1.05);
}

.sm-front-exp__item:hover .sm-front-exp__item-icon-ring::before {
	border-color: rgba(201, 164, 74, 0.5);
	transform: rotate(45deg);
}

.sm-front-exp__icon {
	width: 52px;
	height: 52px;
	color: #C9A44A;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	position: relative;
	z-index: 2;
}

.sm-front-exp__icon svg,
.sm-front-exp__icon img {
	width: 100%;
	height: 100%;
}

.sm-front-exp__item:hover .sm-front-exp__icon {
	transform: scale(1.08);
}

/* Título card */
.sm-front-exp__item-title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	font-style: italic !important;
	color: #F8F5F2 !important;
	margin: 0 0 10px !important;
	letter-spacing: 0.01em;
}

/* Filete dorado · debajo del título */
.sm-front-exp__item-rule {
	width: 32px;
	height: 1px;
	background: #C9A44A;
	margin: 0 auto 14px;
	opacity: 0.7;
	transition: width 0.4s ease;
}

.sm-front-exp__item:hover .sm-front-exp__item-rule {
	width: 56px;
	opacity: 1;
}

/* Texto descriptivo */
.sm-front-exp__item-text {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(248, 245, 242, 0.7);
	margin: 0;
}

/* ─── CTA premium centrado ───────────────────────────── */
.sm-front-exp__cta-wrap {
	text-align: center;
}

.sm-front-exp__link {
	display: inline-flex !important;
	align-items: center;
	gap: 14px;
	padding: 16px 28px;
	background: transparent;
	border: 1px solid rgba(201, 164, 74, 0.5) !important;
	color: #C9A44A !important;
	font-family: 'Inter', system-ui, sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.28em !important;
	text-transform: uppercase !important;
	width: fit-content !important;
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
	text-decoration: none !important;
	position: relative;
	overflow: hidden;
}

.sm-front-exp__link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #C9A44A 0%, #B08A32 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.sm-front-exp__link:hover {
	border-color: #C9A44A !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(201, 164, 74, 0.45);
}

.sm-front-exp__link:hover::before {
	opacity: 1;
}

.sm-front-exp__link-text,
.sm-front-exp__link-arrow {
	position: relative;
	z-index: 1;
}

.sm-front-exp__link-arrow {
	display: inline-flex;
	width: 28px;
	height: 28px;
	background: rgba(201, 164, 74, 0.15);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.sm-front-exp__link:hover .sm-front-exp__link-arrow {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(4px);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
	.sm-front-exp--premium { padding: 72px 0 80px; }
	.sm-front-exp__items {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.sm-front-exp__bg-ornament { width: 280px; height: 280px; }
}

@media (max-width: 760px) {
	.sm-front-exp--premium { padding: 56px 0 64px; }
	.sm-front-exp__inner { padding: 0 24px; }
	.sm-front-exp__intro {
		margin-bottom: 40px;
		gap: 14px;
	}
	.sm-front-exp__title {
		font-size: 36px !important;
	}
	.sm-front-exp__eyebrow {
		font-size: 11px !important;
		letter-spacing: 0.32em !important;
	}
	.sm-front-exp__eyebrow-line { width: 24px; }
	.sm-front-exp__lead { font-size: 13.5px; }
	.sm-front-exp__items {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
		margin-bottom: 40px;
	}
	.sm-front-exp__item {
		padding: 36px 18px 24px;
	}
	.sm-front-exp__item-numeral {
		top: 14px;
		right: 16px;
		font-size: 18px;
	}
	.sm-front-exp__item-icon-wrap {
		width: 72px;
		height: 72px;
		margin-bottom: 16px;
	}
	.sm-front-exp__icon { width: 38px; height: 38px; }
	.sm-front-exp__item-title { font-size: 18px !important; }
	.sm-front-exp__item-text { font-size: 12.5px; }
	.sm-front-exp__bg-ornament { width: 180px; height: 180px; }
}

@media (max-width: 460px) {
	.sm-front-exp__items {
		grid-template-columns: 1fr;
	}
}
