/* ============================================
   BLOCK 2 — Intro / Ecosistema oficial
   Asymmetric grid (1fr : 1.2fr): text column | visual stack
   Visual stack = image + check_list card overlapping from below-left
   ============================================ */

.home_block_2 {
  background: var(--bg-dark);
  position: relative;
}

.home_block_2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 100%);
  opacity: 0.45;
}

.home_block_2_inner {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
}

/* ===== Header — capped width, not full row ===== */
.home_block_2_header {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 60ch;
}

.home_block_2_title {
  color: var(--text);
}

.home_block_2_title > span {
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 24px rgba(43, 255, 124, 0.35);
}

/* ===== Grid — asymmetric 1 : 1.2 ===== */
.home_block_2_grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* ===== Text column ===== */
.home_block_2_text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 1rem;
}

.home_block_2_lead {
  color: var(--text);
  line-height: 1.55;
}

.home_block_2_para {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Visual stack ===== */
.home_block_2_visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.home_block_2_image {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-line);
}

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

.home_block_2_image_tag {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(6, 21, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(43, 255, 124, 0.3);
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home_block_2_image_dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

/* ===== Checks card — overlaps image bottom from left ===== */
.home_block_2_checks {
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  margin-top: -4rem;
  margin-left: 2.5rem;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.home_block_2_checks_label {
  letter-spacing: 0.14em;
}

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

  .home_block_2_header {
    max-width: 100%;
    gap: 2rem;
  }

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

  .home_block_2_text {
    gap: 2.5rem;
    padding-top: 0;
  }

  .home_block_2_image_tag {
    top: 2rem;
    left: 2rem;
    font-size: 1.9rem;
    padding: 1rem 1.8rem;
  }

  .home_block_2_image_dot {
    width: 1rem;
    height: 1rem;
  }

  .home_block_2_checks {
    margin-top: -2.5rem;
    margin-left: 1.5rem;
    margin-right: 0;
    padding: 3rem 2.5rem;
    gap: 2rem;
  }

  .home_block_2_checks_label {
    letter-spacing: 0.2em;
  }
}
