/* ===== HERO LUCEN CON IMAGEN DE FONDO ===== */
.hero-lucen {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-image: url('/wp-content/uploads/2025/11/hero-2.jpg'); /* 🔹 Reemplaza con tu imagen real */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* Capa semitransparente encima de la imagen */
.hero-lucen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* 🔸 Overlay negro al 15% */
  z-index: 1;
}

.hero-lucen__inner {
  position: relative;
  z-index: 2; /* sobre la capa oscura */
  max-width: 900px;
  padding: 0 20px;
}

.hero-lucen__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 4.9;
}

.hero-lucen__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #f5f5f5;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Botón principal */
.btn-lucen {
  display: inline-block;
  padding: 16px 36px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid #ddd;
}

.btn-lucen:hover {
  background: #F8C800; /* Amarillo Nomad */
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-lucen {
    min-height: 70vh;
    padding: 60px 0;
  }

  .hero-lucen__title {
    font-size: 36px;
  }

  .hero-lucen__subtitle {
    font-size: 18px;
  }

  .btn-lucen {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
