/* ============================================
   home_block_11 — PAGOS (2-col split tables: Local / Internacional)
   ============================================ */

.home_block_11 {
  background: var(--bg-surface);
  padding: 10rem var(--main-padding);
  position: relative;
}

.home_block_11_inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.home_block_11_heading {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 900px;
}

.home_block_11_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

.home_block_11_table > table > thead > tr > th:first-child,
.home_block_11_table > table > tbody > tr > td:first-child {
  width: 45%;
}

.home_block_11_note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.6rem 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-line-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.home_block_11_note > p {
  flex: 1 1 60%;
  max-width: 800px;
}

.home_block_11_note > .primary_button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .home_block_11 {
    padding: 14rem var(--main-padding);
  }

  .home_block_11_split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home_block_11_note {
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
    padding: 4rem 3rem;
  }

  .home_block_11_note > .primary_button {
    width: 90%;
    align-self: center;
  }
}
