/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.5rem clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* Overlay rojo — identidad Reinventar */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(238, 0, 47, 0.04) 0%,
    rgba(238, 0, 47, 0.30) 55%,
    rgba(100, 0, 15, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  color: var(--blanco);
  margin-bottom: 0.75rem;
  animation: heroFadeUp 0.8s 0.2s ease both;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  animation: heroFadeUp 0.8s 0.4s ease both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: heroFadeUp 0.8s 0.6s ease both;
}

.hero__secondary-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__secondary-link:hover { color: var(--blanco); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; padding-bottom: 3rem; }
}
