.ssh-hero,
.ssh-hero * {
	box-sizing: border-box;
}

.ssh-hero {
	--ssh-blue: #22b6e7;
	--ssh-blue-dark: #087eaf;
	--ssh-navy: #17304b;
	--ssh-lime: #b8db75;
	--ssh-yellow: #ffe34e;
	--ssh-white: #ffffff;
	position: relative;
	overflow: hidden;
	background: linear-gradient(125deg, #eafaff 0%, #f7fdff 45%, #d8f5ff 100%);
	font-family: inherit;
	isolation: isolate;
}

.ssh-hero__inner {
	width: min(1180px, calc(100% - 48px));
	min-height: 610px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	align-items: center;
	gap: clamp(36px, 6vw, 82px);
	padding: 72px 0;
}

.ssh-hero__content {
	position: relative;
	z-index: 3;
}

.ssh-hero__eyebrow {
	width: fit-content;
	margin: 0 0 18px;
	padding: 9px 15px;
	border-radius: 999px;
	background: rgba(34, 182, 231, 0.14);
	color: var(--ssh-blue-dark);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ssh-hero__title {
	max-width: 650px;
	margin: 0;
	color: var(--ssh-navy);
	font-size: clamp(44px, 5.4vw, 72px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: .98;
}

.ssh-hero__title strong {
	color: var(--ssh-blue-dark);
}

.ssh-hero__description {
	max-width: 610px;
	margin: 24px 0 0;
	color: #3f5870;
	font-size: clamp(17px, 1.7vw, 20px);
	line-height: 1.6;
}

.ssh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.ssh-hero__button {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 23px;
	border: 2px solid transparent;
	border-radius: 4px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: .015em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ssh-hero__button:hover,
.ssh-hero__button:focus-visible {
	transform: translateY(-2px);
}

.ssh-hero__button:focus-visible {
	outline: 3px solid var(--ssh-yellow);
	outline-offset: 3px;
}

.ssh-hero__button--primary {
	border-color: #b3d789;
	background: #b3d789;
	box-shadow: 0 10px 24px rgba(99, 134, 55, .2);
	color: var(--ssh-navy) !important;
}

.ssh-hero__button--primary:hover {
	border-color: #a1c873;
	background: #a1c873;
	box-shadow: 0 13px 28px rgba(99, 134, 55, .28);
}

.ssh-hero__button--secondary {
	border-color: var(--ssh-blue-dark);
	background: var(--ssh-blue-dark);
	color: var(--ssh-white) !important;
}

.ssh-hero__button--secondary:hover {
	border-color: #066e99;
	background: #066e99;
}

body.ssh-adult-modal-open {
	overflow: hidden;
}

.ssh-adult-site-modal,
.ssh-adult-site-modal * {
	box-sizing: border-box;
}

.ssh-adult-site-modal {
	--ssh-blue: #22b6e7;
	--ssh-blue-dark: #087eaf;
	--ssh-navy: #17304b;
	--ssh-lime: #b8db75;
	--ssh-yellow: #ffe34e;
	--ssh-white: #ffffff;
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: grid;
	place-items: center;
	padding: 22px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s;
}

.ssh-adult-site-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.ssh-adult-site-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 28, 45, .72);
	backdrop-filter: blur(5px);
}

.ssh-adult-site-modal__dialog {
	position: relative;
	width: min(540px, 100%);
	max-height: calc(100vh - 44px);
	overflow-y: auto;
	padding: 38px;
	border: 3px solid var(--ssh-blue);
	border-radius: 24px;
	background: linear-gradient(145deg, #fff 0%, #f3fbfe 100%);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
	color: var(--ssh-navy);
	transform: translateY(24px) scale(.97);
	transition: transform .35s cubic-bezier(.18, .89, .32, 1.18);
}

.ssh-adult-site-modal.is-open .ssh-adult-site-modal__dialog {
	transform: translateY(0) scale(1);
}

.ssh-adult-site-modal__close {
	position: absolute;
	top: 13px;
	right: 13px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: #e5f8fd;
	color: var(--ssh-navy);
	cursor: pointer;
	font: 500 27px/1 inherit;
}

.ssh-adult-site-modal__icon {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	margin-bottom: 17px;
	border-radius: 15px;
	background: var(--ssh-yellow);
	color: var(--ssh-navy);
	font-size: 24px;
	font-weight: 950;
	transform: rotate(-3deg);
}

.ssh-adult-site-modal__kicker {
	margin: 0 0 8px;
	color: var(--ssh-blue-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ssh-adult-site-modal h2 {
	margin: 0 42px 14px 0;
	color: var(--ssh-navy);
	font-size: clamp(30px, 5vw, 42px);
	line-height: 1.04;
	letter-spacing: -.035em;
}

.ssh-adult-site-modal__dialog > p:not(.ssh-adult-site-modal__kicker):not(.ssh-adult-site-modal__note) {
	margin: 0;
	color: #536a7d;
	font-size: 16px;
	line-height: 1.6;
}

.ssh-adult-site-modal__note {
	margin: 13px 0 0;
	color: #6c7f8f;
	font-size: 12px;
}

.ssh-adult-site-modal__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 25px;
}

.ssh-adult-site-modal__continue,
.ssh-adult-site-modal__stay {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 17px;
	border-radius: 8px;
	cursor: pointer;
	font: 900 14px/1 inherit;
	text-decoration: none !important;
}

.ssh-adult-site-modal__continue {
	gap: 8px;
	border: 2px solid var(--ssh-blue-dark);
	background: var(--ssh-blue-dark);
	color: #fff !important;
}

.ssh-adult-site-modal__stay {
	border: 2px solid #d4e2e8;
	background: #fff;
	color: var(--ssh-navy);
}

.ssh-adult-site-modal__continue:focus-visible,
.ssh-adult-site-modal__stay:focus-visible,
.ssh-adult-site-modal__close:focus-visible {
	outline: 3px solid var(--ssh-yellow);
	outline-offset: 3px;
}

.ssh-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 25px 0 0;
	padding: 0;
	color: #50687e;
	font-size: 14px;
	font-weight: 700;
	list-style: none;
}

.ssh-hero__features li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.ssh-hero__features span {
	width: 20px;
	height: 20px;
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	background: var(--ssh-lime);
	color: var(--ssh-navy);
	font-size: 12px;
}

.ssh-hero__visual {
	position: relative;
	min-height: 480px;
	z-index: 2;
}

.ssh-hero__photo-wrap,
.ssh-hero__placeholder {
	position: absolute;
	inset: 20px 18px 0 28px;
	overflow: hidden;
	border: 10px solid rgba(255, 255, 255, .92);
	border-radius: 46% 54% 48% 52% / 38% 41% 59% 62%;
	background: var(--ssh-blue);
	box-shadow: 0 28px 60px rgba(18, 115, 154, .24);
}

.ssh-hero__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity 1s ease;
}

.ssh-hero__photo.is-active {
	opacity: 1;
}

.ssh-hero__placeholder {
	display: grid;
	place-content: center;
	gap: 14px;
	padding: 42px;
	background: linear-gradient(140deg, var(--ssh-blue), #5ed1ef);
	color: var(--ssh-white);
	text-align: center;
}

.ssh-hero__placeholder-icon {
	font-size: clamp(50px, 7vw, 86px);
	font-weight: 900;
	letter-spacing: -.06em;
}

.ssh-hero__placeholder-copy {
	max-width: 260px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.ssh-hero__sun {
	position: absolute;
	top: -8px;
	right: -24px;
	width: 130px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--ssh-yellow);
	z-index: -1;
}

.ssh-hero__word {
	position: absolute;
	z-index: 3;
	padding: 13px 18px;
	border: 4px solid var(--ssh-navy);
	box-shadow: 7px 8px 0 var(--ssh-navy);
	font-size: clamp(17px, 2vw, 25px);
	font-weight: 950;
	letter-spacing: -.03em;
	transform: rotate(-5deg);
}

.ssh-hero__word--hola {
	top: 63px;
	left: -5px;
	background: var(--ssh-yellow);
	color: var(--ssh-navy);
}

.ssh-hero__word--vamos {
	right: -8px;
	bottom: 53px;
	background: var(--ssh-lime);
	color: var(--ssh-navy);
	transform: rotate(4deg);
}

.ssh-hero__spark {
	position: absolute;
	z-index: 4;
	color: var(--ssh-yellow);
	font-size: 38px;
	line-height: 1;
}

.ssh-hero__spark--one {
	left: 4px;
	bottom: 88px;
}

.ssh-hero__spark--two {
	top: 32px;
	right: 100px;
	color: var(--ssh-blue-dark);
	font-size: 26px;
}

.ssh-hero__shape {
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.ssh-hero__shape--one {
	left: -95px;
	bottom: -105px;
	width: 235px;
	aspect-ratio: 1;
	border: 45px solid rgba(184, 219, 117, .65);
	border-radius: 50%;
}

.ssh-hero__shape--two {
	top: -70px;
	left: 48%;
	width: 155px;
	aspect-ratio: 1;
	border-radius: 32px;
	background: rgba(34, 182, 231, .09);
	transform: rotate(24deg);
}

@media (max-width: 960px) {
	.ssh-hero__inner {
		grid-template-columns: 1fr 0.88fr;
		gap: 28px;
		min-height: 550px;
		padding: 58px 0;
	}

	.ssh-hero__title {
		font-size: clamp(42px, 6.4vw, 60px);
	}

	.ssh-hero__visual {
		min-height: 400px;
	}
}

@media (max-width: 760px) {
	.ssh-hero__inner {
		width: min(100% - 34px, 600px);
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 48px 0 40px;
		text-align: center;
	}

	.ssh-hero__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.ssh-hero__title {
		font-size: clamp(40px, 12vw, 58px);
	}

	.ssh-hero__description {
		font-size: 17px;
	}

	.ssh-hero__actions,
	.ssh-hero__features {
		justify-content: center;
	}

	.ssh-hero__features {
		display: none;
	}

	.ssh-hero__visual {
		width: min(100%, 520px);
		min-height: 420px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.ssh-hero__inner {
		width: min(100% - 28px, 440px);
		padding-top: 38px;
	}

	.ssh-hero__eyebrow {
		font-size: 12px;
	}

	.ssh-hero__title {
		font-size: clamp(38px, 12.5vw, 52px);
	}

	.ssh-hero__actions {
		width: 100%;
	}

	.ssh-hero__button {
		width: 100%;
	}

	.ssh-hero__features {
		max-width: 290px;
		flex-direction: column;
		align-items: flex-start;
	}

	.ssh-hero__visual {
		min-height: 350px;
	}

	.ssh-hero__photo-wrap,
	.ssh-hero__placeholder {
		inset: 15px 10px 0;
		border-width: 7px;
	}

	.ssh-hero__word--hola {
		top: 35px;
		left: 0;
	}

	.ssh-hero__word--vamos {
		right: 0;
		bottom: 28px;
	}

	.ssh-adult-site-modal {
		padding: 12px;
	}

	.ssh-adult-site-modal__dialog {
		padding: 30px 22px 24px;
		border-radius: 18px;
	}

	.ssh-adult-site-modal__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ssh-adult-site-modal__continue,
	.ssh-adult-site-modal__stay {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ssh-hero__button,
	.ssh-hero__photo,
	.ssh-adult-site-modal,
	.ssh-adult-site-modal__dialog {
		transition: none;
	}
}
