/**
 * LinoCrochet: hero de seccion.
 */

/* ---------- Hero de sección ---------- */

.lino-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	margin-bottom: 40px;
	padding: 48px 28px;
	border-radius: 18px;
	overflow: hidden;
	background-color: #4f4636;
	background-image: linear-gradient(135deg, #5c5244 0%, #2f2a1e 100%);
	background-size: cover;
	background-position: center;
	text-align: center;
}

.lino-hero--medio {
	min-height: 400px;
}

.lino-hero--grande {
	min-height: 65vh;
}

/* Velo oscuro para que el texto siempre sea legible sobre la foto. */
.lino-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(47, 42, 30, 0.3), rgba(47, 42, 30, 0.6));
}

.lino-hero__contenido {
	position: relative;
	max-width: 640px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	animation: lino-hero-aparecer 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lino-hero-aparecer {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lino-hero__titulo {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* Hilo dorado entre el título y la descripción. */
.lino-hero__separador {
	display: block;
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: #c9a227;
}

.lino-hero__texto {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.02rem;
	line-height: 1.7;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.lino-hero__texto p {
	margin: 0;
	color: inherit;
}

.lino-hero__texto p + p {
	margin-top: 10px;
}

.lino-hero a.lino-hero__boton {
	display: inline-block;
	margin-top: 6px;
	padding: 12px 28px;
	border-radius: 999px;
	background: #c9a227;
	border: 2px solid #c9a227;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lino-hero a.lino-hero__boton:hover,
.lino-hero a.lino-hero__boton:focus {
	background: #b8931f;
	border-color: #b8931f;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
	outline: none;
}

/* Variante alineada a la izquierda. */
.lino-hero--izquierda {
	justify-content: flex-start;
	text-align: left;
}

.lino-hero--izquierda .lino-hero__contenido {
	align-items: flex-start;
}

@media (max-width: 767px) {
	.lino-hero {
		min-height: 220px;
		padding: 36px 20px;
	}

	.lino-hero--medio {
		min-height: 300px;
	}

	.lino-hero--grande {
		min-height: 50vh;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lino-hero__contenido {
		animation: none;
	}
}

