/* ==========================================================================
   HERO — Componente reutilizable (template-parts/hero.php)
   Extraído de global.css
   ========================================================================== */

.contenedor-hero {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	min-height: 90vh;
	/* padding: 7rem 5% 5rem; */
}

/* ─── HERO ─── */
#hero {
	/* min-height: 100vh; */
	/* display: grid;
				grid-template-columns: 50% 1fr; */
	align-items: center;
	position: relative;
	overflow: hidden;
	max-height: 100vh;
	/* max-height: 1200px; */
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			100deg,
			rgba(10, 21, 32, 0.94) 0%,
			rgba(10, 21, 32, 0.8) 38%,
			rgba(13, 27, 42, 0.55) 70%,
			rgba(13, 27, 42, 0.45) 100%
		),
		url("../img/foto_hero_2.png") center / cover no-repeat;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(198, 170, 71, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(198, 170, 71, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
	padding: 0;
}

.hero-eyebrow {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.01em;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid rgba(198, 170, 71, 0.4);
	padding: 0.4rem 1rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 2rem;
}

.hero-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
}

.hero-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--white);
}

.hero-title em {
	font-style: normal;
	font-size: clamp(1.5rem, 6vw, 2.5rem);
	color: var(--gold);
}

.hero-sub-1 {
	margin-bottom: 1.2rem;
}

.hero-sub {
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	max-width: 520px;
	margin-bottom: 1.5rem;
}

.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 3rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: nowrap;
}

/* hero right decoration */
.hero-deco {
	position: relative;
	align-self: stretch;
	max-height: 80vh;
	z-index: 1;
	overflow: hidden;
}

.hero-deco img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-deco-center {
	position: absolute;
	inset: 90px;
	background: rgba(198, 170, 71, 0.06);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-deco-text {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.15em;
	text-align: center;
	line-height: 1.4;
}

/* scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	z-index: 2;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}

/* ─── RESPONSIVE ─── */
@media (max-width: 898px) {
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 768px) {
	.contenedor-hero {
		grid-template-columns: 1fr;
	}

	.hero-deco {
		display: none;
	}

	/* .hero-actions {
					flex-direction: column;
					align-items: stretch;
				} */
}
