.ok-hero {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.ok-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ok-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ---------- Columna izquierda ---------- */
.ok-hero__left {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	max-width: 480px;
}

.ok-hero__eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.ok-hero__title {
	font-size: 52px;
	line-height: 1.02;
	font-weight: 800;
	margin: 0 0 26px;
	text-transform: uppercase;
}

.ok-hero__cta {
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-decoration: none;
	padding: 14px 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ---------- Imagen superpuesta (mascota) ---------- */
.ok-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	height: auto;
	transform: translate(var(--ok-overlay-x, 0px), var(--ok-overlay-y, 0px));
	pointer-events: none;
}

/* ---------- Columna derecha ---------- */
.ok-hero__right {
	position: relative;
	z-index: 3;
	flex: 0 0 auto;
}

.ok-hero__frame {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
	padding: 14px;
	overflow: hidden;
}

.ok-hero__slider {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.ok-hero__slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.ok-hero__slider img.is-active {
	opacity: 1;
}

/* ---------- Sticker / badge ---------- */
.ok-hero__badge {
	position: absolute;
	top: -30px;
	right: -30px;
	z-index: 6;
	width: 130px;
	height: 130px;
}

.ok-hero__badge-shape {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ok-hero__badge-shape path,
.ok-hero__badge-shape circle {
	vector-effect: non-scaling-stroke;
}

.ok-hero__badge-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 800;
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
	padding: 20%;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
	.ok-hero__inner {
		flex-direction: column;
		text-align: center;
		padding: 0 24px;
	}

	.ok-hero__left {
		max-width: 100%;
	}

	.ok-hero__overlay {
		left: 50%;
		transform: translate(calc(-50% + var(--ok-overlay-x, 0px)), var(--ok-overlay-y, 0px));
	}
}
