.floating-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
}

.floating-button-top {
  background-color: #ffd400;
  color: #0068ff;
}

.floating-button-whatsapp {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
}

.floating-button-bottom {
  background-color: #34d058;
  color: #ffffff;
}

.floating-button:hover {
  opacity: 0.8;
}

.hovered {
  z-index: 10001;
}

.text-container {
  position: relative;
}

.divider {
  border-top: 1px solid #ccc;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.help-box {
  position: fixed;
  bottom: 1rem;
  left: 3.4rem;
  transform: translateY(-50%);
  align-items: center;
  border-radius: 8px;
  background-color: #0068ff;
  color: #fff;
 /* Cor de fundo do retângulo */
  margin-left: 8px;
 /* Espaço entre o retângulo e o botão do WhatsApp */
  z-index: 999;
 /* Garante que o retângulo fique sobre outros elementos */
  box-shadow: 4rem;
}
