/* *** 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: white;
    color: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    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;
    background: #25D366;
    color: white;
    transition: all 0.4s ease;
}

/* *** 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;
}

/* *** Instagram *** */
.social-orbit--insta {
    bottom: 4.4rem;
    left: 10px;
    color: #e83267;
}

/* *** Facebook *** */
.social-orbit--fb {
    top: 10px;
    left: 54px;
    color: #0064e0;
}

.social-orbit:hover {
    transform: scale(2.1);
    z-index: 20;
    background: #25D366;
    color: white;
}

.social-orbit--fb:hover {
    background: #0064e0;
    color: white;
    transition: all 0.4s ease;
}

.social-orbit--insta:hover {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
    color: white;
    transition: all 0.4s ease;
}