/* ── Hero Main ─────────────────────────────────────────── */
.hero-main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0d1b2e;
}

/* ── YouTube background cover ──────────────────────────── */
.hero-main__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}


.hero-main__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}

/* ── Overlay ───────────────────────────────────────────── */
.hero-main__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.92) 35%,
      rgba(0, 0, 0, 0.55) 65%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

/* ── Container ─────────────────────────────────────────── */
.hero-main__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 100px;
  padding-left: 200px;
}

/* ── Contenido texto ───────────────────────────────────── */
.hero-main__content {
  padding-bottom: 2rem;
}

.hero-main__title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: #1a8ec1;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* .hero-main__title {
    font-family: 'Segoe UI Variable', 'Segoe UI', sans-serif;
    font-size: clamp(2.8rem, 7vw, 7.5rem);
    font-weight: 700;
    color: #1a8ec1;
    line-height: 1.05;
    margin-bottom: 1.75rem;
} */

/* .hero-main__accent {
  color: #71b238;
} */

/* .hero-main__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
} */

.hero-main__subtitle {
  font-family: 'Segoe UI Variable', 'Segoe UI', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-weight: 300;
  color: #ffffff;
  /* max-width: 640px; */
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* ── CTA ───────────────────────────────────────────────── */
.hero-main__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Segoe UI Variable', 'Segoe UI', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-main__cta:hover {
  color: #1a8ec1;
  text-decoration: none;
}

.hero-main__cta-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.hero-main__cta:hover .hero-main__cta-icon {
  border-color: #1a8ec1;
}

/* ── Fila inferior: social + scroll ────────────────────── */
.hero-main__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}

/* ── Social ────────────────────────────────────────────── */
.hero-main__social {
  display: flex;
  gap: 0.75rem;
}

.hero-main__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.hero-main__social a:hover {
  border-color: #71b238;
  color: #71b238;
}

/* ── Scroll indicator ──────────────────────────────────── */
.hero-main__scroll a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-main__scroll a:hover {
  color: #fff;
}



/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {

  .hero-main__overlay {
    background: rgba(0, 0, 0, 0.80);
  }

  .hero-main__container {
    padding-top: 130px;
    padding-bottom: 80px;
    padding-left: 10px;
    text-align: center;
  }

  .hero-main__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-main__cta {
    justify-content: center;
  }

  .hero-main__bottom {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
}


@media (max-width: 575px) {
  .hero-main__title {
    font-size: 2.4rem;
  }

  .hero-main__subtitle {
    font-size: 1.25rem;
  }

  .hero-main__cta {
    font-size: 1.1rem;
  }
}