 @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.social-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.main-button {
    width: 60px;
    height: 60px;
    background: #2196F3;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.main-button:hover {
    transform: scale(1.1);
}

.current-icon {
    color: white;
    font-size: 24px;
}

.social-buttons {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.social-buttons.active {
    pointer-events: auto;
}

.social-button {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translate(0, 0) scale(0);
    opacity: 0;
}

.social-buttons.active .social-button {
    opacity: 1;
    transform: scale(1);
}

.social-buttons.active .whatsapp {
    transform: translate(-100px, -50px);
}

.social-buttons.active .messenger {
    transform: translate(-70px, -100px);
}

.social-buttons.active .phone {
    transform: translate(0, -120px);
}

.whatsapp {
    background: #25D366;
}

.messenger {
    background: #0084FF;
}

.phone {
    background: #FF4B4B;
}



@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.current-icon {
    animation: fadeInLeft 0.5s ease-in-out;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 75, 75, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 75, 75, 0);
    }
}

.phone {
    animation: pulse 2s infinite;
}