/**
 * Hero del landing — reemplazo de Slider Revolution.
 * Ver docs/decisiones-arquitectura.md para el porqué de este cambio.
 * ESTADO: placeholder visual, pendiente diseño definitivo con inputs de marca.
 */

.lw-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lw-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.lw-hero__content {
  position: relative;
  z-index: 1;
  color: var(--lw-color-text-light);
  max-width: 700px;
  padding: 0 var(--lw-space-md);
}

.lw-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: var(--lw-space-md);
  font-weight: 700;
}

.lw-hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: var(--lw-space-lg);
  opacity: 0.95;
}

.lw-hero__cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--lw-color-accent);
  color: var(--lw-color-text-light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.lw-hero__cta:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .lw-hero {
    min-height: 60vh;
  }
}
