section.avaliacoes {
    background: none;
    background-color: #222;
    position: relative;
}

section.avaliacoes .title-av {
    color: #fff;
}

section.avaliacoes .img-avaliacoes {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -100px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.container-avaliacoes {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.container-avaliacoes::-webkit-scrollbar {
    display: none;
}

.container-avaliacoes .sub-container {
    display: flex;
    height: 550px;
    justify-content: center;
    max-width: 980px;
    padding-block: 0 10rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container-avaliacoes .sub-container .container-cards {
    display: flex;
    gap: 36px;
    justify-content: center;
    left: 0;
    margin-top: 3rem;
    position: absolute;
    transform: translateX(21px);
    transition: transform 1s ease;
    width: auto;
}

.flex-infos {
    align-items: center;
    display: flex;
    gap: 3rem;
    justify-content: center;
    width: 100%;
}

.container-avaliacoes .sub-container .container-cards .cards {
    border-radius: 1rem;
    box-shadow: 0 0 10px 0.1px rgba(234, 234, 234, .78);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    gap: 20px;
    justify-content: center;
    max-width: 450px;
    padding: 2rem;
    text-align: left;
    width: 90vw;
}

.cards .author-img .avater img {
    border-radius: 100%;
}

.cards .author-info .info .nome-avaliacao {
    color: #e2252d;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: capitalize;
}

.cards .author-info .info .data_avaliacao {
    font-weight: 400;
}

.cards .author-info .estrelas {
    margin-top: .5rem;
}

.cards .content {
    margin-top: .5rem;
}

.cards .content .avaliacao-texto {
    font-size: 1rem;
    text-align: center;
}