.produtos3 {
    background: #fafafa;
    padding: 48px 24px 48px 24px;
}

.produtos3__container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.produtos3__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.produtos3__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 14px;
    border-radius: 9999px;
    background: #f0fff7;
    color: #11875c;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.produtos3__tag-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.produtos3__tag-icon img {
    position: absolute;
}

.produtos3__title {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #176848;
    text-align: left;
}

.produtos3__subtitle {
    margin: 0;
    max-width: 914px;
    font-size: 12px;
    line-height: 16px;
    color: #707070;
    text-align: left;
}

.produtos3__stats {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(201px, 1fr)); */
    /* custom gap */
    gap: 15px;
}

.produtos3__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px 12px 16px;
}

.produtos3__stat-title {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #0f4c81;
    letter-spacing: -0.48px;
}

.produtos3__stat-value {
    margin: 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    color: #0027b4;
    letter-spacing: -0.96px;
}

.produtos3__stat-suffix {
    font-size: 40px;
    font-weight: 600;
    margin-right: 4px;
    color: #0027b4;
}

.produtos3__stat-text {
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    color: #0f4c81;
}

@media screen and (min-width: 800px) {
    .produtos3 {
        padding: 50px 24px 50px 24px;
    }

    .produtos3__title {
        font-size: 28px;
        line-height: 36px;
    }

    .produtos3__heading {
        padding: 0 22px;
    }

    .produtos3__subtitle {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }

    .produtos3__stat-title {
        font-size: 24px;
        line-height: 29px;
    }

    .produtos3__stat-value {
        font-size: 48px;
        line-height: 56px;
    }

    .produtos3__stat-text {
        font-size: 16px;
        line-height: 22px;
    }

    .produtos3__stats {
        justify-content: start;
        grid-template-columns: repeat(auto-fill, minmax(201px, 1fr));
    }
}