/* =========================================================
   HERO – BASE */
.hero {
  background: var(--bg);
  color: var(--paper);
  position: relative;
  background-color: #021326;
  background-position: center;
  background-size: cover;
}

.hero .section_container {
  display: flex;
  align-items: stretch;
  padding: 0;
  gap: 0;
}

/* ---- Info column ---- */
.hero_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 7em 5% 4em 7%;
  gap: 1.4em;
}

.hero_info h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--paper);
}

.hero_highlight {
  color: var(--brand);
}

.hero_sub {
  margin: 0;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 480px;
}

/* ---- 4 Feature pills ---- */
.hero_features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6em 1em;
}

.hero_feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45em;
  border-left: 1px solid var(--paper);
  padding-left: 0.5em;
}

.hero_feature i {
  font-size: 1.55rem;
  color: var(--paper);
  opacity: 0.9;
}

.hero_feature p {
  margin: 0;
  font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}
.hero_feature p span{
  font-weight: bolder;
}
/* ---- CTA buttons ---- */
.hero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  align-items: center;
}

/* ---- Image column ---- */
.hero_img {
  flex-shrink: 0;
}

.hero_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   RESPONSIVE: MÓVILES / TABLET (≤ 959px) */
@media (max-width: 959px) {
  .hero .section_container {
    flex-direction: column-reverse;
  }

  .hero_info {
    padding: 3em 7% 3.5em;
    gap: 1.2em;
    text-align: left;
  }

  .hero_features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }

  .hero_feature i {
    font-size: 1.4rem;
  }

  .hero_img {
    width: 100%;
    height: 52vw;
    min-height: 220px;
    max-height: 380px;
  }

  .hero_img img {
    object-position: center;
  }
}

/* =========================================================
   RESPONSIVE: ESCRITORIO (≥ 960px) */
@media (min-width: 960px) {
  .hero {
    min-height: 100vh;
  }

  .hero_info {
    width: 44%;
    flex-shrink: 0;
  }

  .hero_img {
    flex: 1;
    height: auto;
    min-height: 100vh;
  }

  .hero_img img {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%);
  }
}
