/* Botón flotante de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 100px; /* Justo arriba del botón "back to top" */
  right: 20px;
  z-index: 1050;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.whatsapp-button img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

/* Botón "back to top" - ajuste de posición si no estaba ya en tu CSS */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1040;
  display: none; /* Mostralo con JS si querés que aparezca solo al hacer scroll */
}
