/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(160deg,
      var(--green-darkest) 0%,
      var(--green-dark) 40%,
      var(--green-mid) 100%);
}

/* Imagen de fondo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero1.png') center/cover no-repeat;
  opacity: .35;
  z-index: 0;
}

/* Patrón decorativo */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--cream-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(26,46,26,.6) 100%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 820px;
  animation: fadeInUp .9s ease both;
}

.hero__pretitle {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .75rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--cream-mid);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}

.hero__description {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1s both;
}
.hero__scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: rgba(255,255,255,.4);
  animation: pulse 2s ease infinite;
}