/* ============================================
   home_block_12 — CONCLUSIÓN + MEGA CTA
   Cinematic finale: head → wide image → balance pros/contras → closing → mega CTA card
   ============================================ */

.home_block_12 {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.home_block_12::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10rem;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.home_block_12::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10rem;
  width: 45rem;
  height: 45rem;
  background: radial-gradient(
    circle,
    rgba(250, 204, 21, 0.2) 0%,
    transparent 65%
  );
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

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

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

.home_block_12_title > .text-accent {
  color: var(--accent);
}

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

/* ===== Cinematic finale image ===== */
.home_block_12_finale_image {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-line-mid);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px var(--accent-glow);
}

.home_block_12_finale_image > img {
  width: 100%;
  height: auto;
  display: block;
}

.home_block_12_finale_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 16, 0.2) 0%,
    transparent 30%,
    transparent 70%,
    rgba(10, 20, 16, 0.7) 100%
  );
  pointer-events: none;
}

/* ===== Balance — Pros / Contras ===== */
.home_block_12_balance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.home_block_12_balance_card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-lg);
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.home_block_12_balance_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.home_block_12_balance_label {
  align-self: flex-start;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home_block_12_balance_title {
  margin-top: 0.3rem;
}

/* Pros — cyan */
.home_block_12_balance_card--pros {
  border-color: var(--accent-border);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 28px var(--accent-glow);
}

.home_block_12_balance_card--pros::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 50%,
    transparent 100%
  );
}

.home_block_12_balance_card--pros > .home_block_12_balance_label {
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}

/* Contras — orange accent-2 */
.home_block_12_balance_card--contras {
  border-color: rgba(250, 204, 21, 0.35);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(250, 204, 21, 0.18);
}

.home_block_12_balance_card--contras::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-2) 50%,
    transparent 100%
  );
}

.home_block_12_balance_card--contras > .home_block_12_balance_label {
  color: var(--accent-2);
  background: var(--accent-2-soft);
  border: 1px solid rgba(250, 204, 21, 0.35);
}

/* ===== Cross list (contras) — orange × marker ===== */
.cross_list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.cross_list > li {
  position: relative;
  padding-left: 2.4rem;
  color: var(--text-muted);
  font-size: 1.22rem;
  line-height: 1.55;
}

.cross_list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-2-soft);
  border: 1px solid var(--accent-2);
  border-radius: var(--radius-sm);
}

.cross_list > li::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  background:
    linear-gradient(
      45deg,
      transparent 45%,
      var(--accent-2) 45%,
      var(--accent-2) 55%,
      transparent 55%
    ),
    linear-gradient(
      -45deg,
      transparent 45%,
      var(--accent-2) 45%,
      var(--accent-2) 55%,
      transparent 55%
    );
}

/* ===== Closing italic ===== */
.home_block_12_closing {
  text-align: center;
  color: var(--text);
  font-style: italic;
  padding: 0 4rem;
  letter-spacing: -0.005em;
}

/* ===== Mega final CTA card ===== */
.home_block_12_cta_card {
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(250, 204, 21, 0.12) 0%,
      transparent 50%
    ),
    var(--bg-surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 80px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.home_block_12_cta_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-bright) 0%,
    var(--accent) 50%,
    var(--accent-2) 100%
  );
}

.home_block_12_cta_card::after {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  height: 30rem;
  background: radial-gradient(
    ellipse at center,
    var(--accent-glow) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.home_block_12_cta_brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.home_block_12_cta_brand > i {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--accent-glow);
}

.home_block_12_cta_brand > span {
  color: var(--accent);
}

.home_block_12_cta_title {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    135deg,
    var(--text) 0%,
    var(--accent-bright) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home_block_12_cta_desc {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
}

.home_block_12_cta_button {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 1.25rem;
  padding: 1.5rem 3.2rem;
  box-shadow: 0 0 32px var(--accent-glow-bright);
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_12_inner {
    gap: 6rem;
  }

  .home_block_12_head {
    text-align: left;
    align-items: flex-start;
  }

  .home_block_12_finale_image {
    border-radius: var(--radius);
  }

  .home_block_12_balance {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home_block_12_balance_card {
    padding: 4rem 3rem;
    gap: 2rem;
    border-radius: var(--radius);
  }

  .home_block_12_balance_label {
    font-size: 1.8rem;
    padding: 0.8rem 2rem;
  }

  .cross_list {
    gap: 1.5rem;
  }

  .cross_list > li {
    padding-left: 4.4rem;
    font-size: 2.4rem;
  }

  .cross_list > li::before {
    width: 2.8rem;
    height: 2.8rem;
    top: 0.5rem;
  }

  .cross_list > li::after {
    width: 1.2rem;
    height: 1.2rem;
    left: 0.85rem;
    top: 1.3rem;
  }

  .home_block_12_closing {
    text-align: left;
    padding: 0;
    font-size: 3rem;
    line-height: 1.4;
  }

  .home_block_12_cta_card {
    padding: 5rem 3rem;
    gap: 2.5rem;
    border-radius: var(--radius);
  }

  .home_block_12_cta_brand {
    font-size: 2.6rem;
  }

  .home_block_12_cta_brand > i {
    width: 1.8rem;
    height: 1.8rem;
  }

  .home_block_12_cta_button {
    font-size: 3.25rem;
    width: 100%;
    margin-top: 1.5rem;
  }
}
