.over-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400% 400%;
    mix-blend-mode: multiply;
    background: linear-gradient(230deg, #b3b3b300, #d8d8d800, #c3c7cb, #dfdfdfab);
    background-size: 800% 800%;

    -webkit-animation: anima-cores 10s ease infinite;
    -moz-animation: anima-cores 10s ease infinite;
    -o-animation: anima-cores 10s ease infinite;
    animation: anima-cores 10s ease infinite;
}

@-webkit-keyframes anima-cores {
    0% {
        background-position: 0% 91%
    }

    50% {
        background-position: 100% 10%
    }

    100% {
        background-position: 0% 91%
    }
}

@-moz-keyframes anima-cores {
    0% {
        background-position: 0% 91%
    }

    50% {
        background-position: 100% 10%
    }

    100% {
        background-position: 0% 91%
    }
}

@-o-keyframes anima-cores {
    0% {
        background-position: 0% 91%
    }

    50% {
        background-position: 100% 10%
    }

    100% {
        background-position: 0% 91%
    }
}

@keyframes anima-cores {
    0% {
        background-position: 0% 91%
    }

    50% {
        background-position: 100% 10%
    }

    100% {
        background-position: 0% 91%
    }
}

.bg-hero-bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url(../assets/imagens/hero-03.webp);
    background-size: cover;
    z-index: -2;
}

.container-hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.container-hero img {
    position: absolute;
    width: 97%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
    scale: 1.1;
}

.container-hero h2 {
    z-index: 3;
    position: relative;
    color: white;
    font-size: min(90px, 6vw);
    text-transform: uppercase;
    text-align: left;
    opacity: .8;
}

@media (max-width: 800px) {
    .container-hero h2 {
        font-size: 50px;
    }
}