/* ===== BLOCK 5 — Descargar iOS (image + bubble steps, alt of block 4) ===== */
.home_block_5 {
  background: var(--bg-surface);
}

.home_block_5_inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.home_block_5_head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 80ch;
}

.home_block_5_grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.home_block_5_img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-line);
}

.home_block_5_bubbles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home_block_5_bubbles > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: center;
}

.home_block_5_dot {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-2-soft);
  border: 2px solid var(--accent-2);
  border-bottom: 4px solid var(--accent-2-dark);
  border-radius: var(--radius-sm);
  font-family: "Roboto Slab", serif;
  font-weight: 900;
  color: var(--accent-2);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.home_block_5_bubbles > li:hover .home_block_5_dot {
  background: var(--accent-2);
  color: var(--bg-dark);
}

.home_block_5_bubbles > li > p {
  color: var(--text);
  line-height: 1.5;
}

.home_block_5_outro {
  font-style: italic;
  border-left: 3px solid var(--accent-2);
  padding-left: 1.2rem;
  max-width: 80ch;
}

@media (max-width: 1024px) {
  .home_block_5_grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home_block_5_dot {
    width: 7rem;
    height: 7rem;
    font-size: 3rem;
  }
}
