footer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
    width: 100%;
    height: 85px;
    border-top: 1px solid var(--borderOpacity);
}

.social-iconos-on-desktop{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 30px;
    position: relative;
    list-style-type: none;
}

.social-iconos-on-desktop li{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.social-iconos-on-desktop a, .social-iconos-on-desktop span{
    border-radius: 50%;
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.15);
    color: var(--iconLight);
    position: relative;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.social-iconos-on-desktop i{
    position: absolute;
    margin: auto;
    opacity: .9;
}

.social-iconos-on-desktop a:hover, .social-iconos-on-desktop span:hover{
    background-color: rgba(128, 128, 128, 0.25);
    box-shadow: 0px 0px 3px 1px rgba(167, 139, 250, 1);
}

.social-iconos-on-desktop h4{
    background: var(--bgColor);
    color: var(--textColor);
    position: absolute;
    top: -40px;
    padding: 7px;
    border-radius: 4px;
    transition: opacity .3s ease;
    font-size: 13px;
    font-weight: 400;
    text-wrap: nowrap;
}