/* =========================================================
   YO, TURO — Historia de Arturo
   ========================================================= */

.turo-story {
	position: relative;
	isolation: isolate;

	display: flex;
	align-items: center;

	width: calc(100% - 80px);
	max-width: 1480px;
	min-height: clamp(620px, 74vh, 820px);

	margin: clamp(70px, 8vw, 120px) auto;

	overflow: hidden;
	border-radius: clamp(32px, 4vw, 64px);

	background: #171717;

	box-shadow:
		0 24px 70px rgba(0, 0, 0, 0.12);
}

/* Imagen */

.turo-story__image {
	position: absolute;
	inset: 0;
	z-index: -3;

	background-position: 72% center;
	background-size: cover;
	background-repeat: no-repeat;

	transform: scale(1.025);

	transition:
		transform 1.2s cubic-bezier(.19, 1, .22, 1);
}

.turo-story:hover .turo-story__image {
	transform: scale(1);
}

/* Degradado */

.turo-story__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;

	background:
		linear-gradient(
			90deg,
			rgba(12, 12, 12, 0.94) 0%,
			rgba(12, 12, 12, 0.82) 30%,
			rgba(12, 12, 12, 0.48) 52%,
			rgba(12, 12, 12, 0.12) 76%,
			rgba(12, 12, 12, 0.02) 100%
		);
}

/* Contenido */

.turo-story__content {
	width: min(620px, 48%);

	padding:
		clamp(70px, 7vw, 110px)
		clamp(60px, 7vw, 105px);

	color: #ffffff;
}

.turo-story__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	margin-bottom: 24px;

	color: #ffffff;

	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1.4;
	text-transform: uppercase;
}

.turo-story__eyebrow::before {
	content: "";

	display: block;

	width: 28px;
	height: 2px;

	background: currentColor;
}

.turo-story__title {
	max-width: 590px;

	margin: 0 0 30px;

	color: #ffffff;

	font-family: "Poppins", sans-serif;
	font-size: clamp(60px, 5.7vw, 98px);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 0.9;

	text-wrap: balance;
}

.turo-story__intro {
	max-width: 560px;

	margin: 0 0 18px;

	color: #ffffff;

	font-family: "Poppins", sans-serif;
	font-size: clamp(19px, 1.35vw, 24px);
	font-weight: 600;
	line-height: 1.45;
}

.turo-story__text {
	max-width: 560px;

	margin: 0 0 30px;

	color: rgba(255, 255, 255, 0.82);

	font-family: "Poppins", sans-serif;
	font-size: clamp(15px, 1vw, 18px);
	font-weight: 400;
	line-height: 1.72;
}

/* Firma */

.turo-story__signature {
	display: flex;
	align-items: center;
	gap: 13px;

	margin-bottom: 34px;

	color: rgba(255, 255, 255, 0.72);

	font-family: "Poppins", sans-serif;
	font-size: 13px;
	line-height: 1.45;
}

.turo-story__signature strong {
	display: block;

	color: #ffffff;
	font-weight: 700;
}

.turo-story__signature-paw {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 42px;
	height: 42px;

	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;

	font-size: 18px;
}

/* Botón igual al lenguaje visual del hero */

.turo-story__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	min-height: 56px;

	padding: 0 30px;

	border: 2px solid #ffffff;
	border-radius: 999px;

	background: transparent;
	color: #ffffff;

	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;

	text-decoration: none;
	text-transform: uppercase;

	transition:
		transform 0.28s cubic-bezier(.19, 1, .22, 1),
		background-color 0.28s ease,
		color 0.28s ease,
		box-shadow 0.28s ease;
}

.turo-story__button span {
	font-size: 18px;

	transition:
		transform 0.28s cubic-bezier(.19, 1, .22, 1);
}

.turo-story__button:hover {
	background: #ffffff;
	color: #111111;

	transform: translateY(-3px);

	box-shadow:
		0 14px 32px rgba(0, 0, 0, 0.22);
}

.turo-story__button:hover span {
	transform: translateX(5px);
}

/* Patitas decorativas */

.turo-story__decor {
	position: absolute;
	inset: 0;
	z-index: -1;

	pointer-events: none;
}

.turo-story__paw {
	position: absolute;

	color: #ffffff;
	opacity: 0.06;

	filter: grayscale(1);
}

.turo-story__paw--one {
	top: 10%;
	left: 42%;

	font-size: 82px;

	transform: rotate(-18deg);
}

.turo-story__paw--two {
	right: 4%;
	bottom: 6%;

	font-size: 128px;

	transform: rotate(18deg);
}

/* Tablet */

@media (max-width: 1100px) {
	.turo-story {
		width: calc(100% - 44px);
		min-height: 680px;
	}

	.turo-story__content {
		width: 58%;

		padding:
			72px
			52px;
	}

	.turo-story__image {
		background-position: 76% center;
	}

	.turo-story__overlay {
		background:
			linear-gradient(
				90deg,
				rgba(12, 12, 12, 0.94) 0%,
				rgba(12, 12, 12, 0.78) 45%,
				rgba(12, 12, 12, 0.26) 78%,
				rgba(12, 12, 12, 0.04) 100%
			);
	}
}

/* Mobile */

@media (max-width: 767px) {
	.turo-story {
		align-items: flex-end;

		width: calc(100% - 28px);
		min-height: 760px;

		margin: 60px auto;

		border-radius: 34px;
	}

	.turo-story__image {
		background-position: 70% center;
	}

	.turo-story__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(10, 10, 10, 0.04) 0%,
				rgba(10, 10, 10, 0.18) 28%,
				rgba(10, 10, 10, 0.8) 62%,
				rgba(10, 10, 10, 0.97) 100%
			);
	}

	.turo-story__content {
		width: 100%;

		padding:
			320px
			28px
			40px;
	}

	.turo-story__eyebrow {
		margin-bottom: 18px;

		font-size: 10px;
	}

	.turo-story__title {
		margin-bottom: 22px;

		font-size: clamp(50px, 15vw, 66px);
		line-height: 0.92;
	}

	.turo-story__intro {
		font-size: 18px;
	}

	.turo-story__text {
		font-size: 14px;
		line-height: 1.65;
	}

	.turo-story__signature {
		align-items: flex-start;

		font-size: 12px;
	}

	.turo-story__button {
		width: 100%;
	}

	.turo-story__paw--one {
		display: none;
	}

	.turo-story__paw--two {
		right: -6px;
		bottom: 12px;

		font-size: 84px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.turo-story__image,
	.turo-story__button,
	.turo-story__button span {
		transition: none;
	}
}