/* ============================================
   BLOCK 11 — Cómo instalar (vertical stepper timeline)
   Centered header → 5-step vertical timeline → iOS note
   ============================================ */

.home_block_11 {
  padding: 8rem 0;
  background: var(--bg-deeper);
  position: relative;
  overflow: hidden;
}

.home_block_11::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(225, 30, 38, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.home_block_11_content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

/* ===== Intro — side-by-side header + visual ===== */

.home_block_11_intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home_block_11_intro > .home_block_11_header {
  align-items: flex-start;
  text-align: left;
}

.home_block_11_visual {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* ===== Header ===== */

.home_block_11_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}

.home_block_11_header > h2 {
  color: var(--white);
}

.home_block_11_header > h2 > span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home_block_11_header > .text-m {
  color: var(--text-muted);
}

/* ===== Timeline ===== */

.home_block_11_timeline {
  display: flex;
  flex-direction: column;
}

.home_block_11_step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.home_block_11_step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 1.9rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    var(--gold) 50%,
    rgba(212, 169, 74, 0.25) 100%
  );
}

.home_block_11_step:last-child {
  padding-bottom: 0;
}

.home_block_11_marker {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: var(--rounded-full);
  border: 2px solid var(--gold);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.home_block_11_step:hover .home_block_11_marker {
  background: var(--gradient-accent);
  transform: scale(1.05);
}

.home_block_11_marker_num {
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.3s ease;
}

.home_block_11_step:hover .home_block_11_marker_num {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.home_block_11_step_content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.6rem;
}

.home_block_11_step_title {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home_block_11_step_desc {
  color: var(--text-muted);
}

.home_block_11_step_desc > strong {
  color: var(--gold);
  font-weight: 600;
}

/* ===== iOS note — alternate install path ===== */

.home_block_11_ios {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  border-radius: var(--rounded-md);
  margin-top: 1rem;
}

.home_block_11_ios_label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.home_block_11_ios_text {
  color: var(--text-muted);
}

/* ===== Section CTA ===== */

.home_block_11_cta {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

/* ===== Mobile ===== */

@media (max-width: 1024px) {
  .home_block_11 {
    padding: 6rem 0;
  }

  .home_block_11_content {
    gap: 5rem;
  }

  .home_block_11_intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home_block_11_intro > .home_block_11_header {
    align-items: center;
    text-align: center;
  }

  .home_block_11_header {
    gap: 2rem;
  }

  .home_block_11_step {
    grid-template-columns: 6rem 1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .home_block_11_step:not(:last-child)::before {
    top: 5.8rem;
    left: 2.9rem;
    width: 3px;
  }

  .home_block_11_marker {
    width: 5.8rem;
    height: 5.8rem;
  }

  .home_block_11_marker_num {
    font-size: 2.3rem;
  }

  .home_block_11_step_content {
    gap: 1rem;
    padding-top: 0.8rem;
  }

  .home_block_11_ios {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.5rem 2.5rem;
    border-left-width: 4px;
    margin-top: 2rem;
  }

  .home_block_11_ios_label {
    font-size: 2rem;
    letter-spacing: 3px;
  }
}
