/* ===== BLOCK 10 — Cómo registrarse (zig-zag timeline + methods + table) ===== */

.home_block_10 {
  padding: 7rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.home_block_10::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -14rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(
    circle,
    rgba(255, 61, 127, 0.08) 0%,
    transparent 65%
  );
  z-index: 0;
  pointer-events: none;
}

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

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

.home_block_10_header {
  max-width: 54rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.home_block_10_title > span {
  color: var(--magenta);
}

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

/* ===== Zig-zag timeline ===== */

.home_block_10_timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1rem 0;
}

.home_block_10_timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 180, 255, 0.1) 0%,
    rgba(255, 193, 7, 0.35) 35%,
    rgba(255, 61, 127, 0.35) 65%,
    rgba(0, 180, 255, 0.1) 100%
  );
  border-radius: var(--rounded-full);
  z-index: 0;
}

.home_block_10_step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home_block_10_step_axis {
  grid-column: 2;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 4rem;
  height: 4rem;
  border-radius: var(--rounded-full);
  background: var(--bg-card);
  border: 2px solid var(--border);
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.home_block_10_step:hover .home_block_10_step_axis {
  transform: scale(1.1);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.4);
}

.home_block_10_step_card {
  padding: 1.2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounded-md);
  max-width: 28rem;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.home_block_10_step:hover .home_block_10_step_card {
  border-color: var(--border);
}

.home_block_10_step:nth-child(odd) .home_block_10_step_card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  border-right: 3px solid var(--accent);
}

.home_block_10_step:nth-child(odd):hover .home_block_10_step_card {
  transform: translateX(-4px);
}

.home_block_10_step:nth-child(even) .home_block_10_step_card {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  border-left: 3px solid var(--yellow);
}

.home_block_10_step:nth-child(even):hover .home_block_10_step_card {
  transform: translateX(4px);
}

.home_block_10_step_title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

/* ===== Methods row (4 mini-cards) ===== */

.home_block_10_methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.8rem;
  background: linear-gradient(
    135deg,
    rgba(255, 61, 127, 0.05) 0%,
    rgba(0, 180, 255, 0.04) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounded-lg);
}

.home_block_10_method {
  padding: 1.2rem 1.3rem;
  background: var(--bg-deeper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounded-md);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.home_block_10_method:hover {
  border-color: var(--magenta);
  transform: translateY(-2px);
}

.home_block_10_method_label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}

.home_block_10_method_name {
  color: var(--white);
  font-weight: 700;
}

.home_block_10_method_hint {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.home_block_10_cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-yellow);
  border-radius: var(--rounded-lg);
  flex-wrap: wrap;
}

.home_block_10_cta_text {
  flex: 1;
  min-width: 20rem;
}

.home_block_10_cta_title {
  color: var(--white);
  font-weight: 700;
}

.home_block_10_cta_hint {
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

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

  .home_block_10_content {
    gap: 5rem;
  }

  .home_block_10_header {
    max-width: 100%;
    gap: 2.4rem;
  }

  .home_block_10_timeline {
    gap: 2.4rem;
  }

  .home_block_10_timeline::before {
    left: 3.5rem;
    transform: none;
  }

  .home_block_10_step {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }

  .home_block_10_step_axis {
    grid-column: 1;
    justify-self: start;
    width: 7rem;
    height: 7rem;
    font-size: 2.4rem;
    border-width: 3px;
  }

  .home_block_10_step:nth-child(odd) .home_block_10_step_card,
  .home_block_10_step:nth-child(even) .home_block_10_step_card {
    grid-column: 2;
    justify-self: stretch;
    text-align: left;
    max-width: 100%;
    padding: 2.4rem 2.4rem;
    border-right: none;
    border-left: 4px solid var(--accent);
  }

  .home_block_10_step:nth-child(even) .home_block_10_step_card {
    border-left-color: var(--yellow);
  }

  .home_block_10_step:nth-child(odd):hover .home_block_10_step_card,
  .home_block_10_step:nth-child(even):hover .home_block_10_step_card {
    transform: translateX(4px);
  }

  .home_block_10_methods {
    grid-template-columns: 1fr 1fr;
    padding: 2.4rem;
    gap: 1.4rem;
  }

  .home_block_10_method {
    padding: 2.4rem 2rem;
    gap: 1rem;
  }

  .home_block_10_method_label {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }

  .home_block_10_method_hint {
    font-size: 1.8rem;
  }

  .home_block_10_cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem;
  }

  .home_block_10_cta_text {
    min-width: 100%;
  }
}
