.call_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* Ajusta la posición según tus necesidades */
    right: 40px;
    background-color: #0033CC;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.call_float i {
    margin-top: 16px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.call_float {
    animation: bounce 2s infinite;
}
