.depoimentos {
    display: flex;
    padding: 0px 32px;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto;
    margin-bottom: 96px;
}

.depoimentos__container {

    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    border-radius: 16px;
    background: rgba(195, 25, 25, 0.03);
}

.depoimentos__subheading {
    color: #8E2424;
    text-align: center;

    /* Text sm/Semibold */
    font-size: 14px;

    font-weight: 600;
    line-height: 20px;
}

.depoimentos__heading {
    color: #101828;
    text-align: center;

    /* Display md/Medium */
    font-size: 24px;

    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.72px;
}

.depoimentos__avatar {
    width: 56px;
    height: 56px;
    border-radius: 200px;
    margin-bottom: 16px;
    background: url(<path-to-image>), lightgray 50% / cover no-repeat;
}

.depoimentos__cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.depoimentos__card {
    display: flex;
    flex-direction: column;
    min-height: 100px;
    height: auto;
    width: 280px;
    border-radius: 8px;
    padding: 16px 0px;
    box-shadow: 1px 2px 5px 0px rgba(7, 0, 0, 0.248);
    height: auto;
    align-items: center;
}

.depoimentos__nome-pessoa {
    color: var(--gray-900, #101828);
    text-align: center;

    /* Text md/Medium */
    font-size: 16px;

    font-weight: 500;
    line-height: 24px;
}

.depoimentos__habilidade-pessoa {
    color: var(--gray-500, #667085);
    text-align: center;

    /* Text sm/Normal */
    font-size: 14px;

    font-weight: 400;
    line-height: 20px;
}

@media screen and (min-width: 768px) {
    .depoimentos {
        width: 1280px;
    }
    .depoimentos__container{
        padding: 64px;
    }
    .depoimentos__heading {
        font-size: 36px;
        line-height: 44px;
    }
}