.footer-bar {
    margin-top: 40px;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: .95rem;
}
.footer-brand {
    color: #ff8c00;
    font-weight: 600;
}
/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff7a00 #f3f3f3;
}

/* Chrome, Edge y Opera */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient( 180deg, #ffb347 0%, #ff7a00 45%, #e85d04 100% );
    border-radius: 20px;
    border: 2px solid #f3f3f3;
    transition: background .25s ease;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient( 180deg, #ff8c00 0%, #ff5e00 100% );
    }

::-webkit-scrollbar-corner {
    background: #f3f3f3;
}