#backgroundText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(219, 219, 219, 0.08);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

#main-servicos {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  min-height: 400px;
  background-color: #2D528C;
  color: white;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top-left-radius: 150px 80px;
  box-shadow: inset 10px 10px 40px rgba(0, 0, 0, 0.05);
}

#main-servicos h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

#main-servicos p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 24px;
}

.especialista-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #28a745;
  border: 1px solid #28a745;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.especialista-btn:hover {
  background-color: white;
  color: #28a745;
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .especialista-btn {
    width: 100%;
  }
}