/* Sección "Nuestra App" (aislada para no romper style.css) */

.omna-app {
  position: relative;
  z-index: 10;
}

.omna-app__left {
  z-index: 3;
}

.omna-app .omna-app__eyebrow {
  margin: 0 0 10px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 21px;
  text-transform: uppercase;
  /* `style.css` aplica `.app-container p { color: #fff; }` con más especificidad */
  color: #F6BC00;
}

.omna-app .omna-app__title {
  /* `style.css` aplica `.app-container h2 { color: #ffff00; }` */
  color: #ffffff;
  margin: 0 0 12px;
}

.omna-app__brand {
  color: #F6BC00;
}

.omna-app__subtitle {
  margin: 50px 0 14px;
  max-width: 940px;
}

.omna-app .omna-app__subtitle {
  font-size: 26px;
  /* probá 14px–16px */
  line-height: 1.5;
}

.omna-app__features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin: 0 0 18px;
  padding: 0;
}

.omna-app__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 150px;
  max-width: 190px;
  text-align: center;
}

.omna-app__feature-icon {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.omna-app__feature-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.omna-app__feature-label {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  max-width: 150px;
  text-wrap: balance;
  margin: 0 auto;
  margin-top: 15px;

  /* Evita que textos largos desborden visualmente */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.omna-app__stores {
  gap: 25px;
  margin-top: 50px;
}

.omna-app__store {
  display: inline-flex;
  width: auto !important;
  /* evita que style.css fuerce 45% */
  max-width: 350px;
}

.omna-app__store img {
  width: 320px;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.omna-app__right {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: flex-end;
}

/* `style.css` posiciona `.float-phone` como absolute y lo saca de la sección.
   En el componente lo dejamos dentro del layout. */
.omna-app .app-container .float-phone {
  position: absolute !important;
  bottom: -120px !important;
  top: 75%;
  right: 0;
  margin: 0;
  max-width: min(500px, 100%);
}

@media (max-width: 1199.98px) {
  .omna-app__features {
    justify-content: center;
  }

  .omna-app__stores {
    justify-content: center !important;
  }

  .omna-app__feature {
    min-width: 240px;
    justify-content: center;
  }

  .omna-app .app-container .float-phone {
    position: relative !important;
    margin-top: 80px;
    top: 0 !important;
    transform: none;
    max-width: min(520px, 100%);
  }
}

@media (max-width: 767.98px) {
  .omna-app__features {
    gap: 35px 10px;
    justify-content: space-between;
  }

  .omna-app__feature {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }

  .omna-app__feature-label {
    max-width: 160px;
    font-size: 13px;
  }

  .omna-app__feature-icon {
    width: 110px;
    height: 110px;
  }

  .omna-app__feature-icon img {
    width: 115px;
    height: 115px;
  }

  .omna-app__stores {
    flex-direction: column;
    align-items: center !important;
  }

  .omna-app__store {
    width: min(320px, 92%) !important;
  }

  .omna-app__store img {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .omna-app__subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .omna-app .app-container .float-phone {
    max-width: min(380px, 92vw);
  }
}