/* Floating WhatsApp Button con Efecto Hover Simple */
.floating-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #26b95c;
  color: #FFF;
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.floating-wsp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(38, 185, 92, 0.8), 0 0 30px rgba(38, 185, 92, 0.6);
  background-color: #2dd86c;
}

.floating-wsp svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
  .floating-wsp {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
  }

  .floating-wsp svg {
    width: 30px;
    height: 30px;
  }
}