.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #156d61; /* Verde oscuro azulado */
  color: white;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
  font-family: sans-serif;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #156d61; /* No cambia */
  color: white; /* No cambia */
  text-decoration: none; /* Sin subrayado */
}

.whatsapp-float i {
  font-size: 20px;
}

