﻿.social-float {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .social-float a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
        font-size: 18px;
        text-decoration: none;
    }

.fb {
    background: #1877F2;
}

.insta {
    background: #E4405F;
}

.wa {
    background: #25D366;
}

@media (max-width: 768px) {
    .social-float {
        flex-direction: row;
        right: 10px;
        bottom: 15px;
    }

        .social-float a {
            width: 42px;
            height: 42px;
        }
}
