.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


.icon-whatsapp, .icon-insta {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor; 
}
.icon-whatsapp{
  -webkit-mask-image: url('../src/icons/whatsapp.svg');
  mask-image: url('../src/icons/whatsapp.svg');
}
.icon-insta{
  -webkit-mask-image: url('../src/icons/insta.svg');
  mask-image: url('../src/icons/insta.svg');
}