/* ============================================
   BLOCK 12 — Conclusión (cinematic mega-CTA)
   ============================================ */
.home_block_12 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.home_block_12_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
}

.home_block_12_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.84) 0%, rgba(11, 13, 18, 0.72) 50%, var(--bg-dark) 100%),
    radial-gradient(ellipse at 30% 40%, var(--accent-soft) 0%, transparent 60%);
}

.home_block_12_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}

.home_block_12_title {
  max-width: 16em;
}

.home_block_12_text {
  max-width: 48em;
  color: var(--text);
}

.home_block_12_cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .home_block_12 {
    min-height: auto;
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .home_block_12_inner {
    gap: 3rem;
  }

  .home_block_12_title,
  .home_block_12_text {
    max-width: 100%;
  }
}
