footer {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: linear-gradient(rgba(0,0,0,0) 0%,rgb(223 206 170) 100%);
    height: 40px;
    width: 100vw;
    bottom: 0;
}

.iconos-redes {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icono-redes {
    line-height: 1;
    color: #3a3a3a;
    background: transparent;
    vertical-align: middle;
    transition: all 0.01s;
    margin-left: 6px;
    margin-right: 6px;
    justify-content: center;
    align-items: center;
    fill: #7a7469;
}

.icono-redes:hover {
    fill: rgb(139 109 46);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, .2));
}

.icono-redes svg {
    width: 20px;
    height: 20px;
}