#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;
  opacity: 1;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  padding: 40px 80px 20px 80px; /* topo 40px, direita 20px, baixo 20px, esquerda 20px */
  min-height: 400px;
  background-color: #001f3f;
  overflow: hidden;
  color: #ffffff;
  margin-top: 40px;
  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);
  margin-top: 20px;
  margin-bottom: 20px;
}

.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);
}