.sec-sobre {
    /*
    min-height: 50vh;
    background-image: url("../../../imgs/background/background-feedback2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    */
    max-height: 100vh;
    background-color: #050505;
   
    background-position-x: 0%;
}

section.sec-sobre .flex {
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
}

.sec-sobre .txt-topo-site h1 {
    text-align: center;
    color: #d0804e !important;
    font-size: 4em;
    font-family: Espiritu Cond;
    margin-top: -7%;
}

.sec-sobre .container {
    height: 100%;
    width: 70%;
    background-color: #d0804e63;
    gap: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    /*animation: aparecer-img-txt1 .5s ease-out alternate;*/
}

.container img.img-esquerda {
    height: 200px;
    width: auto;
    border-radius: 20px;

    box-shadow: 0px 0px 50px rgba(0, 0, 0, 1.5);
}

.container .txt-direita {
    height: 100%;
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: justify;
    text-indent: 40px;
}

.txt-direita h1 {
    font-family: Poppins-SemiBold;
    font-weight: 10;
    font-size: 15px;
    color: #fff;
}

@media screen and (max-width: 960px) {

    .sec-sobre {
        min-height: 70vh;
    }

    section.sec-sobre .flex {
        height: 70vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
    }
    
    .sec-sobre .txt-topo-site h1 {
        margin-top: 0%;
        font-size: 2em;
    }

    .sec-sobre .container {
        height: 50%;
        width: 90%;
        padding: 5px 2%;
        gap: 10px;
    }

    .container img.img-esquerda {
        height: 70%;
    }

    .container .txt-direita {
        height: 80%;
        line-height: 1.2em;

        text-indent: 10px;
    }

    .txt-direita h1 {
        font-size: 10px;
    }
    
    .txt-direita h1 span.line-bottom {
        position: relative;
        top: 0;
    }
    
    .txt-direita h1 span.font-edt {
        font-size: 12px;
    }
    
}