#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;
  opacity: 1;
  z-index: 0;
}

.especialista-btn {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: #001f3f;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.especialista-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

#main-servicos {
  position: relative;
  z-index: 1;
  padding: 20px;
  min-height: 400px;
  background-color: #001f3f;
  color: #ffffff;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top-left-radius: 150px 80px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: inset 10px 10px 40px rgba(0, 0, 0, 0.05);
}