/* ============================================
   BLOCK 5 — TRAGAMONEDAS (cards grid)
   ============================================ */
.home_block_5_inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.home_block_5_head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 64rem;
}
.home_block_5_sub {
  color: var(--accent);
}
.home_block_5_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.home_block_5_card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home_block_5_card > h4 {
  color: var(--text);
}
.home_block_5_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(19, 102, 214, 0.16);
}
.home_block_5_visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bg-line);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_block_5_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_block_5_note {
  max-width: 64rem;
}
@media (max-width: 1024px) {
  .home_block_5_grid { grid-template-columns: 1fr; }
  .home_block_5_head,
  .home_block_5_note { max-width: 100%; }
  .home_block_5_visual { min-height: 40rem; }
}
