/* ============================================
   BLOCK 3 — LICENCIA Y SEGURIDAD (table only)
   ============================================ */

.home_block_3 {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.home_block_3_ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home_block_3_ambient > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(1.3);
}

.home_block_3_ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, transparent 0%, var(--bg-surface) 70%),
    linear-gradient(160deg, var(--bg-surface) 0%, transparent 30%, var(--bg-surface) 100%);
}

.home_block_3_inner {
  position: relative;
  z-index: 1;
}

.home_block_3_inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.home_block_3_head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 100rem;
}

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

.home_block_3_table {
  max-width: 90rem;
}

.home_block_3_outro {
  max-width: 90rem;
}

@media (max-width: 1024px) {
  .home_block_3_inner { gap: 4.5rem; }
}
