/* ================================
   HERO PRINCIPAL
================================ */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente */
  align-items: center;     /* centra horizontalmente */
  min-height: 100svh;      /* ocupa toda la pantalla */
  position: relative;
  background-image: url("../img/imagen-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  padding: 0; /* quitamos padding-top y bottom para que flex funcione */
}

/* Capa oscura para contraste */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* ================================
   CONTENIDO TEXTO
================================ */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px; /* opcional: mantener algo de padding horizontal */
}

/* Línea + texto */
.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  color: #f2b233;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
 margin: 0 0 25px 0; /* eliminamos margin-top que empujaba hacia abajo */
}

.hero-label span {
  width: 100px;
  height: 4px;
  background-color: #f2b233;
}

.hero-label p {
  font-family: 'Questrial', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Título principal */
.hero h1 {
  margin-bottom: 35px;

  font-family: 'Questrial', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;

  color: rgba(255, 255, 255, 0.92);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Botones */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}



/* ================================
   RESPONSIVE HERO
================================ */

/* Tablets */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-content {
    padding-top: 80px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - 70px);
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-label span {
    width: 40px;
  }
}

/* Mobile chico */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}