body { font-family: 'Ubuntu', sans-serif; }

.background-section {
  position: relative;
  overflow: hidden;
  height: 500px; /* ajuste conforme necessário */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.background-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://assets.zabbix.com/img/5.2/zabbix_dashboard_v52_dark.jpg') no-repeat top center;
  background-size: cover;
  opacity: 0.25; /* 25% de transparência */
  z-index: 0;
}

.background-section .content {
  position: relative;
  z-index: 1;
}