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