/* === HERO BASE === */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url('/assets/casa-frida/casa_frida_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* === OVERLAY OSCURO === */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

/* === CONTENIDO === */
.hero__content {
  position: relative;
  z-index: 2; /* encima del overlay */
  max-width: 680px;
  padding: 0 var(--margin-desktop);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* === ETIQUETA === */
.hero__etiqueta {
  font-family: var(--font-secondary);
  font-size: var(--font-size-label-md);
  font-weight: var(--font-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

/* === TÍTULO === */
.hero__titulo {
  font-family: var(--font-primary);
  font-size: var(--font-size-headline-lg);
  font-weight: var(--font-semibold);
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

/* === SUBTÍTULO === */
.hero__subtitulo {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body-lg);
  font-weight: var(--font-regular);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* === BOTONES === */
.hero__botones {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero__content {
    padding: 0 var(--margin-mobile);
    gap: var(--space-3);
  }

  .hero__titulo {
    font-size: var(--font-size-headline-md);
  }

  .hero__subtitulo {
    font-size: var(--font-size-body-md);
  }

  .hero__botones {
    flex-direction: column;
    align-items: flex-start;
  }
}