.gov-hero {
  position: relative;
  overflow: clip;
  padding-top: 74px;
  padding-bottom: 40px;
}

.gov-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(141, 180, 255, 0.24), transparent 70%);
  pointer-events: none;
}

.gov-hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.gov-hero-card {
  background: linear-gradient(170deg, rgba(7, 23, 53, 0.9), rgba(2, 12, 30, 0.96));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.gov-hero-card h2 {
  margin-bottom: 14px;
  color: var(--brand-strong);
}

.gov-hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.gov-hero-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.gov-hero-card i {
  color: var(--brand);
}

.module-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#solucoes.section {
  padding-top: 44px;
}

.module-card {
  background: rgba(7, 23, 53, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.module-card .tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(214, 177, 107, 0.18);
  color: var(--brand-strong);
}

.module-card h3 {
  margin-bottom: 8px;
  color: var(--brand-strong);
}

.module-card p {
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.module-card ul {
  list-style: none;
  display: grid;
  gap: 7px;
}

.module-card li {
  color: var(--ink-soft);
}

.module-card li::before {
  content: "- ";
  color: var(--brand);
  font-weight: 700;
}

.gov-services {
  background: rgba(4, 16, 38, 0.66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: rgba(6, 20, 46, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  gap: 14px;
}

#implantacao.section {
  padding-bottom: 32px;
}

#contato.section {
  padding-top: 28px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(7, 23, 53, 0.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.timeline-item h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.timeline-item p {
  color: var(--ink-soft);
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0a1633;
  background: linear-gradient(135deg, #b88c44, #f1d59a);
  flex-shrink: 0;
}

.domain-banner {
  background: linear-gradient(160deg, rgba(6, 20, 46, 0.92), rgba(3, 12, 30, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
  gap: 20px;
}

.domain-banner p {
  color: var(--ink-soft);
}

.domain-copy {
  display: grid;
  gap: 12px;
}

.domain-copy .btn {
  width: fit-content;
}

.lead-form-govtech {
  background: rgba(4, 16, 38, 0.78);
}

@media (max-width: 980px) {
  .gov-hero-grid,
  .module-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gov-hero {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  #solucoes.section {
    padding-top: 30px;
  }

  .domain-banner {
    grid-template-columns: 1fr;
  }

  #implantacao.section {
    padding-bottom: 24px;
  }

  #contato.section {
    padding-top: 20px;
  }
}
