/* ============================================================
   HERO — Componente principal de sección hero (home)
   ============================================================ */
.ll-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden eliminado — el dropdown del buscador debe desbordar */
  background: #0a0a0a;
}

.ll-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      var(--ll-bg) 100%
    ),
    radial-gradient(
      ellipse at 70% 40%,
      rgba(224, 168, 86, 0.18) 0%,
      transparent 60%
    );
}

.ll-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  color: white;
  max-width: 900px;
}

.ll-hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--ll-gold);
  margin-bottom: 1.5rem;
}

.ll-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.5rem;
}

.ll-hero h1 .ll-italic-gold {
  font-style: italic;
  font-weight: 300;
  color: var(--ll-gold);
  display: block;
  margin-top: 0.3em;
}

.ll-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.ll-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buscador dentro del hero */
.ll-hero-search {
  margin-top: 2rem;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
