/* ============================================
   BLOCK 12 — Conclusión (cinematic mega-CTA)
   Full-bleed image (image10) + glass-card center + tri-color top-bar + MEGA button
   ============================================ */

.home_block_12 {
  position: relative;
  min-height: 90vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.home_block_12_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(26, 19, 14, 0.35) 0%, rgba(26, 19, 14, 0.92) 75%),
    linear-gradient(135deg, rgba(233, 165, 89, 0.14) 0%, transparent 50%, rgba(30, 100, 115, 0.18) 100%);
}

.home_block_12_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 10rem var(--main-padding);
}

.home_block_12_card {
  background: rgba(26, 19, 14, 0.76);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(233, 165, 89, 0.24);
  border-radius: var(--radius-lg);
  padding: 4.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  color: #f4e9d6;
}

.home_block_12_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e9a559 0%, #b54a2f 50%, #1e6473 100%);
}

.home_block_12_card > .section_tag {
  color: #e9a559;
}

.home_block_12_card > .section_tag::before,
.home_block_12_card > .section_tag::after {
  background: #e9a559;
  box-shadow: 0 0 8px rgba(233, 165, 89, 0.6);
}

.home_block_12_title {
  color: #f4e9d6;
  max-width: 820px;
}

.home_block_12_text {
  font-size: 1.15rem;
  color: rgba(244, 233, 214, 0.82);
  line-height: 1.7;
  max-width: 820px;
}

.home_block_12_text > strong {
  color: #e9a559;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

.home_block_12_cta_wrap {
  margin-top: 1rem;
}

.home_block_12_mega {
  padding: 1.8rem 4rem;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  background: #e9a559;
  color: #1a130e;
  box-shadow: inset 0 0 0 1px rgba(244, 233, 214, 0.25), 0 0 50px rgba(233, 165, 89, 0.55);
}

.home_block_12_mega:hover {
  background: #f4c178;
  color: #1a130e;
  box-shadow: inset 0 0 0 1px rgba(244, 233, 214, 0.32), 0 0 70px rgba(233, 165, 89, 0.7);
}

@media (max-width: 1024px) {
  .home_block_12 { min-height: 80vh; }
  .home_block_12_inner { padding: 16rem var(--main-padding); }
  .home_block_12_card {
    padding: 5rem 3.5rem;
    gap: 3rem;
    border-radius: 3rem;
  }
  .home_block_12_text { font-size: 2.4rem; }
  .home_block_12_mega {
    width: 90%;
    height: 18rem;
    font-size: 3.8rem;
    padding: 2rem 3rem;
  }
}
