/* *** Iconos redes sociales *** */
.social-float-container {
    position: relative;
    width: 100px;
    height: 100px;
}

/* *** Bot¨Žn principal WhatsApp *** */
.social-main {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 64px;
    /*background: var(--main-color);*/
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    /*color: #fff;*/
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    z-index: 2;
}

.social-main:hover {
    transform: scale(1.3);
    z-index: 20;
}

/* *** Botones secundarios *** */
.social-orbit {
    position: absolute;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    z-index: 3;
    color: gray;
}

.social-orbit:hover {
    transform: scale(2.1);
}

/* *** Instagram *** */
.social-orbit--insta {
    bottom: 4.4rem;
    left: 10px;
}

/* *** Facebook *** */
.social-orbit--fb {
    top: 10px;
    left: 54px;
}