/* =========================
   HERO — BLOQUE INTRO
   ========================= */

.block-hero {
  height: auto;
  min-height: 100dvh;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background-image: url("../images/hero/sand.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   HERO — FRANJA CENTRAL
   ========================= */

.hero-band {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

  width: 100%;
  height: 30%;

  flex-direction: column;
  gap: var(--space-sm);

  background: rgba(0, 0, 0, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1;
}

.hero-tagline {
  color: var(--color-light-gray);
  opacity: 0.85;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.hero-logo {
  max-width: 580px;
  width: 90%;
  height: auto;
}