.barra-video-home {
    height: auto;
    position: relative;
    text-align: center;
    padding:  0px 0px 40px 0px;
    /* background: rgb(62,64,149); */
    background: linear-gradient(90deg, #014083 20%, rgba(38,126,112,1) 80%);
    margin-top: 0px;
}
.barra-video-home .container #videos-home{
    margin-top: -110px;
}

.barra-degrade{
    width: 100%;
    height: 160px;
    /* background: linear-gradient(-45deg, #FFF, #F5F5F5, #FFF, #F5F5F5); */
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}