/* Encabezado exclusivo del catálogo: fotografía, contenido y accesos por línea. */
/* La misma imagen y tratamiento visual se comparten con las páginas internas. */
.catalog-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: #fff;
	background: #123522;
}
.catalog-hero__visual,
.catalog-hero::after {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.catalog-hero__visual {
	left: 25%;
}
.catalog-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
}
.catalog-hero::after {
	content: '';
	background: linear-gradient(90deg, #123522 5%, rgba(18, 53, 34, .96) 28%, rgba(18, 53, 34, .65) 55%, rgba(18, 53, 34, .12) 100%), linear-gradient(0deg, rgba(8, 29, 18, .9), transparent 55%);
}
.catalog-hero__inner {
	padding-top: 1.75rem;
}
.catalog-hero .breadcrumbs {
	color: #d2dfd4;
	font-size: .8rem;
	margin-bottom: 2.5rem;
}
.catalog-hero .breadcrumbs a:hover {
	color: #fff;
	text-decoration: underline;
}
.catalog-hero__copy {
	max-width: 43rem;
	padding-bottom: 3rem;
}
.catalog-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin: 0 0 1rem;
	color: #dce99c;
	font-size: .75rem;
	font-weight: 750;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.catalog-hero__eyebrow::before {
	content: '';
	width: 2rem;
	height: 2px;
	background: currentColor;
}
.catalog-hero h1 {
	margin: 0;
	font: 750 clamp(3.5rem, 6.5vw, 6.25rem)/1 var(--font-display);
	letter-spacing: -.045em;
}
.catalog-hero__tagline {
	margin: 1.1rem 0 .75rem;
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	font-weight: 600;
	line-height: 1.35;
}
.catalog-hero__description {
	max-width: 49ch;
	margin: 0;
	color: #e0e8df;
	font-size: 1rem;
	line-height: 1.7;
}
.catalog-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.75rem;
	margin-top: 1.75rem;
}
.catalog-hero__actions .button {
	gap: 1.25rem;
	background: #dce99c;
	border-color: #dce99c;
	color: #123522;
}
.catalog-hero__actions .button:hover {
	background: #edf5c7;
	border-color: #edf5c7;
}
.catalog-hero__contact {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	min-height: 2.75rem;
	font-size: .9rem;
	font-weight: 600;
}
.catalog-hero__contact:hover {
	text-decoration: underline;
}
#catalogo-productos {
	scroll-margin-top: 6rem;
}
@media (max-width: 700px) {
	.catalog-hero__visual {
		left: 0;
	}
	.catalog-hero::after {
		background: linear-gradient(90deg, rgba(18, 53, 34, .96), rgba(18, 53, 34, .76));
	}
	.catalog-hero .breadcrumbs {
		margin-bottom: 2rem;
	}
	.catalog-hero__copy {
		padding-bottom: 2rem;
	}
}

.catalog-hero--internal .catalog-hero__inner {
	padding-bottom: clamp(3rem, 6vw, 5rem);
}
.catalog-hero--internal h1 {
	max-width: 20ch;
	font-size: clamp(2.5rem, 5vw, 5rem);
	line-height: 1.08;
	overflow-wrap: anywhere;
}
.catalog-hero--internal .catalog-hero__inner > p:not(.catalog-hero__eyebrow) {
	max-width: 58ch;
	margin: 1.25rem 0 0;
	color: #e0e8df;
	font-size: 1.1rem;
}
.catalog-hero--internal .cta-actions {
	margin-top: 1.75rem;
}
