<div id="whatsapp-button">
  <a href="https://wa.me/50235260213?text=Hola%2C%20estoy%20interesado%20en%20conocer%20m%C3%A1s%20sobre%20sus%20proyectos%20y%20servicios."
     target="_blank"
     aria-label="Contactar por WhatsApp">

    <span class="whatsapp-icon">☏</span>
    <span class="whatsapp-text">¡Escríbenos por WhatsApp!</span>

  </a>
</div>

<style>
#whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
}

#whatsapp-button a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

#whatsapp-button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.30);
}

.whatsapp-icon {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 600px) {
  #whatsapp-button {
    bottom: 18px;
    right: 18px;
  }

  #whatsapp-button a {
    padding: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    font-size: 25px;
  }
}
</style>