/* .floating-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
    padding: 12px;
}

.floating-button:hover {
    background-color: #1ebe5d;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    fill: white;
} */


.floating-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s ease;
}

.floating-button:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: white;
}


/* QRCode */
.qrcode-container {
    width: 250px;
    height: 250px;
    border: 1px solid #2e4547; /* Cor verde do WhatsApp */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Estilo para os pontos quadrados nas quinas do QR Code */
.qrcode-corner {
    width: 30px;
    height: 30px;
    position: absolute;
}

.qrcode-text {
    text-align: center;
    font-size: 14px;
    color: #2e4547;
}