/* ================================
   HERO
================================ */

#hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-image: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	text-align: left;
	overflow: hidden;
}

/* ::before ya no se usa — fondo movido a .hero-bg para parallax JS */
#hero::before { content: ''; display: none; }

/* Capa de fondo animable */
.hero-bg {
	position: absolute;
	top: -15%;
	left: 0;
	right: 0;
	height: 130%;
	filter: blur(2px);
	will-change: transform;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

#hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.8);
	z-index: 1;
}

#hero .hero-inner { position: relative; z-index: 2; max-width: 700px; width: 80%; padding: 10%; text-align: left; }
#hero h1 { font-size: 48px; font-weight: bold; margin: 0 0 12px; }
#hero h2 { font-size: 36px; font-weight: 200; margin: 0 0 12px; }
#hero p  { font-size: 14px; opacity: 0.95; margin: 0 0 20px; }
#hero .hero-cta { display: inline-block; padding: 12px 18px; background: #2a21df; color: #fff; border-radius: 4px; text-decoration: none; font-weight: 600; }

/* Responsive */
@media (max-width: 780px) {
	#hero { justify-content: center; }
	#hero .hero-inner { max-width: 90%; padding: 24px; text-align: center; }
	#hero h1 { font-size: 32px; }
}
