/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 4rem 0;
  background: var(--deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(0.2) contrast(1.1);
  transform: scale(1.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: auto;
  text-align: center;
  color: var(--stone);
  /* margin-top: 30vh; */
}


.hero-tag {
  font-size: 0.95rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 2rem;
  display: block;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-expo) forwards 0.3s;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  opacity: 0;
  text-shadow: 0 10px 40px #c07f3f62;
  animation: fadeUp 1.2s var(--ease-expo) forwards 0.5s;
}

.hero-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 200;
  color: var(--saffron);
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  letter-spacing: 2px;
  opacity: 0;
  text-shadow: 0 10px 40px #c07f3f62;
  animation: fadeUp 1.2s var(--ease-expo) forwards 0.7s;
  /* background-color: var(--ink-40); */
  padding: 5px 1px;
  /* border-radius: 25px 0 0 15px; */
}

.hero-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-expo) forwards 0.9s;
}

.btn {
  padding: 1.1rem 2.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-silk);
  border: 1px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: var(--saffron);
  color: var(--ink);
}

.btn-primary:hover {
  /* background: transparent; */
  color: var(--parchment);
  border-color: var(--saffron);
}

.btn-secondary {
  background: var(--parchment);
  color: var(--saffron);
  border: 1px solid rgba(237, 232, 224, 0.3);
}

.btn-secondary:hover {
  background: var(--stone);
  color: var(--ink);
  border-color: var(--stone);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--stone);
  opacity: 0.4;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: var(--stone);
  transform-origin: top;
  animation: scrollPulse 2.5s infinite ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 5;
}

@media (max-width: 1024px) {
  .hero {
    justify-content: center;
    padding: 0 5%;
  }

  .hero-overlay {
    /* background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 80%); */
  }

  .hero-content {
    text-align: center;
    padding-top: 5vh;
  }

  .hero-tag {
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    margin-bottom: 1.5rem;
    color: rgb(255, 255, 255);
    /* Blanco suave */
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--saffron) !important;
    /* Título ahora en Azafrán */
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1.2rem;
    color: var(--stone) !important;
    /* Descripción ahora en Blanco/Piedra */
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 90%;
    margin-top: 0;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}