/* ================================
   FUTURE HERO – LISTO PARA EL FUTURO
================================= */

.gf-future-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  margin: 0 !important;

  /* Alto similar a tu captura desktop */
  min-height: 474px;

  /* Fondos via CSS vars */
  --gf-future-bg-desktop: none;
  --gf-future-bg-mobile: none;

  color: #212529;
}

.gf-future-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--gf-future-bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

/* Overlay oscuro + leve fade para lectura */
.gf-future-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Contenedor */
.gf-future-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 24px;
  min-height: inherit;

  display: flex;
  align-items: center;
}

/* Texto */

.gf-future-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-geely);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: #fff;
  font-size: 64px;
  line-height: 64px;

  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.gf-future-hero__desc {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 500;

  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;

  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  .gf-future-hero {
    min-height: 400px; /* para que se vea “alto” como tu captura mobile */
  }

  .gf-future-hero__bg {
    background-image: var(--gf-future-bg-mobile);
    background-position: center;
  }

  /* overlay más vertical para lectura en mobile */
  .gf-future-hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.35) 42%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .gf-future-hero__inner {
    padding: 40px 24px;
    align-items: flex-start;
  }

  .gf-future-hero__content {
    max-width: 92%;
  }

  .gf-future-hero__title {
    font-size: 40px;
    line-height: 40px;
  }

  .gf-future-hero__desc {
    font-size: 14px;
    line-height: 20px;
  }
}
