@import url('/desenvolvimento-de-apps/style.css');

.hero {
  background-image:
    linear-gradient(180deg, rgba(14, 18, 46, 0.78) 0%, rgba(13, 9, 33, 0.92) 100%),
    url('/img/fundo servidor.webp');
  background-position: center center;
}

.contact {
  background-image:
    linear-gradient(180deg, rgba(22, 13, 48, 0.84) 0%, rgba(13, 9, 33, 0.94) 100%),
    url('/img/dashboard.jpg');
  background-position: center center;
}

.hero::before,
.contact::before {
  display: none;
}

.benefits-grid--automation {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ops-note {
  margin-top: 28px;
  text-align: center;
  color: #101828;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.closing-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.closing-cta {
  display: inline-flex;
  width: auto;
  min-width: 280px;
  justify-content: center;
  margin-top: 6px;
  padding-left: 26px;
  padding-right: 26px;
}

@media (max-width: 1100px) {
  .benefits-grid--automation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: center top;
  }

  .benefits-grid--automation {
    grid-template-columns: 1fr;
  }

  .ops-note {
    font-size: 16px;
  }

  .closing-cta {
    width: 100%;
    min-width: 0;
  }
}
