.whatsapp-btn {
  
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  
}

.whatsapp-btn-animation-fixed {
	position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
	animation: breathe 2s ease-in-out infinite;
}

.whatsapp-btn-animation {
  bottom: 20px;
  right: 20px;
  z-index: 9999;
	animation: breathe 2s ease-in-out infinite;
}

.whatsapp-btn-adjust{
	display: inline-flex!important;
	position: unset!Important;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-btn2 {
    position: fixed;
    background-color: #25d366; /* Color de fondo de WhatsApp */
    color: white; /* Color del icono */
    padding: 10px 15px; /* Tama�o del bot�n */
    border-radius: 50%; /* Forma circular */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para un efecto flotante */
    text-align: center;
    font-size: 24px; /* Tama�o del icono */
    z-index: 1000; /* Para que est� encima de otros elementos */
    transition: transform 0.3s ease; /* Animaci�n de escala */
}

.whatsapp-btn2:hover {
    transform: scale(1.1); /* Efecto de zoom al pasar el mouse */
    background-color: #20c659; /* Color m�s oscuro al hacer hover */
}

@media (max-width: 600px) {
    .whatsapp-btn2 {
        bottom: 10px;
        padding: 8px 12px;
        font-size: 20px;
    }
    .whatsapp-btn2 {
        right: 10px;
    }
}