/* Estilos del contenedor del botón flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

/* Efecto Hover (Al pasar el mouse) */
.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
}

/* Animación de pulso suave para llamar la atención */
@keyframes pulse-subtle {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-float {
    animation: pulse-subtle 3s infinite;
}

/* Evita que la animación choque con el hover */
.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}

.btn-instagram-flotante {
  position: fixed;
  bottom: 60px;
  right: 20px; /* Si ya tienes el de WhatsApp a la derecha, puedes cambiar esto a "left: 20px;" */
  background: linear-gradient(45deg, #0575e6 0%, #00f260 100%);
  /* background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); */ 
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

/* Efecto al pasar el mouse por encima */
.btn-instagram-flotante:hover {
  transform: scale(1.1);
  color: #fff;
}