/* ============================================
   BLOCK 4 — Qué incluye la app (centered intro band + banner)
   ============================================ */
.home_block_4_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}

.home_block_4_title {
  max-width: 20em;
}

.home_block_4_desc {
  max-width: 46em;
}

.home_block_4_banner {
  margin-top: 3rem;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-line);
  position: relative;
}

.home_block_4_banner > img {
  width: 100%;
  height: 38rem;
  object-fit: cover;
  object-position: center 38%;
}

@media (max-width: 1024px) {
  .home_block_4_banner > img {
    height: 58rem;
  }
}
