.testimonials-bg {
    background-color: var(--cor-c12);
    padding: 120px 0 80px 0;
}

.testimonials-bg h1 {
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
}

.testimonials {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.client {
    padding-top: 80px;
}

.client p {
    margin-bottom: 40px;
}

.vanessa, .john, .carol, .fernanda, .stefan, .mohammad {
    margin-bottom: 8px;
    position: relative;
}

.vanessa::before, .john::before, .carol::before, .fernanda::before, .stefan::before, .mohammad::before {
    content: '';
    display: block;
    width: 55px;
    height: 55px;
    position: absolute;
    top: -80px;
}

.vanessa::before {
    background-image: url('/imgs/testimonials/vanessa.png');
    background-size:contain;
}

.john::before {
    background-image: url('/imgs/testimonials/john.png');
    background-size: contain;
}

.carol::before {
    background-image: url('/imgs/testimonials/carol.png');
    background-size: contain;
}

.fernanda::before {
    background-image: url('/imgs/testimonials/Fernanda.png');
    background-size: contain;
}

.stefan::before {
    background-image: url('/imgs/testimonials/stefan.png');
    background-size: contain;
}

.mohammad::before {
    background-image: url('/imgs/testimonials/mohammad.png');
    background-size: contain;
}

.client h3 {
    margin-bottom: 16px;
}


@media(max-width:820px) {
    .testimonials-bg {
        padding: 80px 0;
    }

    .testimonials-bg h1 {
        padding-bottom: 60px;
    }

    .testimonials {
        gap: 60px;
    }

    .vanessa::before, .john::before, .carol::before, .fernanda::before, .stefan::before, .mohammad::before {
        display: inline;
        top: 0;
        left: 0px;
    }

    .client {
        padding-top: 0;
    }

    .client h2, .client h3 {
        padding-left: 80px;
    }

    .client p {
        margin-bottom: 0;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media(max-width:750px) {
    .testimonials-bg h1 {
        padding-bottom: 40px;
    }
}

@media(max-width:480px) {
    .testimonials-bg h1 {
        padding-bottom: 60px;
    }
} 