.btn-redes-sociales {
    z-index: 1000;
    position: fixed;
    bottom: 40px;
    right: 40px;
    transition: all 300ms ease 0ms;
    cursor: pointer;
}

.btn-redes-sociales a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid #FF6400;
    background-color: #6A6967;
    margin: 0 0 1rem;
    cursor: pointer;
}

.btn-redes-sociales a:hover {
    border: 2px solid #f6f6f6;
    background-color: #FF6400;
}

.btn-redes-sociales a:active {
    border: 1px solid #f6f6f6;
    background-color: #FF6400;
}

.btn-redes-sociales a:focus {
    border: 1px solid #f6f6f6;
    background-color: #FF6400;
}

.btn-redes-sociales a img {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 1200px) {
    .btn-redes-sociales {
        right: 20px;
    }
}

@media screen and (max-width: 980px) {
    .btn-redes-sociales a {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 560px) {
    .btn-redes-sociales {
        right: 0;
        display: flex;
        bottom: 10px;
        gap: 10px;
        left: 0;
        justify-content: center;
    }
}