/* High Summer Hero Elementor - CSS scopeado para evitar conflictos. */
.hsh-hero {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: #111;
	isolation: isolate;
}

.hsh-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.05);
}

.hsh-hero__media {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hsh-hero__media img,
.hsh-hero__media video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hsh-hero__iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	border: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.hsh-hero__media--mobile {
	display: none;
}

.hsh-hero__content {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 720px;
	padding: 40px 20px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

.hsh-hero__eyebrow,
.hsh-hero__title,
.hsh-hero__subtitle,
.hsh-hero__button {
	font-family: inherit;
}

.hsh-hero__eyebrow {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hsh-hero__title {
	margin: 0 0 4px;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 7px;
	text-transform: uppercase;
}

.hsh-hero__subtitle {
	margin: 0 0 34px;
	font-size: clamp(13px, 2vw, 17px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.hsh-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 2px;
	border: 0 solid currentColor;
	border-bottom-width: 1px;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 2px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hsh-hero__button:hover,
.hsh-hero__button:focus {
	color: #fff;
	text-decoration: none;
	opacity: 0.82;
}

.hsh-hero__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #9fc7d7 0%, #efc083 100%);
}

@media (max-width: 767px) {
	.hsh-hero__media--desktop + .hsh-hero__media--mobile {
		display: block;
	}

	.hsh-hero:has(.hsh-hero__media--mobile) .hsh-hero__media--desktop {
		display: none;
	}

	/* Fallback para navegadores sin :has(). */
	.hsh-hero__media--mobile {
		display: block;
	}

	.hsh-hero__media--mobile ~ .hsh-hero__content {
		z-index: 3;
	}

	.hsh-hero__title {
		font-size: clamp(26px, 8vw, 38px);
		letter-spacing: 5px;
	}

	.hsh-hero__subtitle,
	.hsh-hero__button {
		font-size: 14px;
	}
}
