.container-vallesul-section-metricas {
    width: 100%;
    border-radius: 24px;
    padding-top: 64px;
    padding-right: 75px;
    padding-bottom: 64px;
    padding-left: 75px;
    background-color: #231F20;
    background-image: url('../images/widget-vallesul-section-metricas-bg.png');
    background-repeat: no-repeat;
    background-position: bottom right;
}

.container-vallesul-section-metricas .row {
    width: 100%;
    display: flex;
    gap: 48px;
    flex-direction: column;
}

.container-vallesul-section-metricas .col-header {
    width: 662px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-vallesul-section-metricas .sobtitle {
    border-radius: 4px;
    padding-right: 8px;
    padding-left: 8px;
    background-color: #FFF100;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    width: max-content;
    margin-bottom: 16px;
    color: #000;
}

.container-vallesul-section-metricas .col-header .title {
    margin: 0 0 16px;
}

.container-vallesul-section-metricas .col-header .title h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 38.4px;
    margin: 0;
    color: #fff;
}

.container-vallesul-section-metricas .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
}

.container-vallesul-section-metricas .col-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.container-vallesul-section-metricas .col-content .numbers {
    display: flex;
    gap: 38px;
}

.container-vallesul-section-metricas .col-content .numbers .title {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
}

.container-vallesul-section-metricas .col-content .numbers .number {
    font-weight: 700;
    font-size: 70px;
    line-height: 120%;
    text-align: center;
    color: #FFF100;
}

@media(max-width: 1024px) {
    .container-vallesul-section-metricas {
        background-image: none;
        padding-top: 40px;
        padding-right: 16px;
        padding-bottom: 40px;
        padding-left: 16px;
    }

    .container-vallesul-section-metricas .col-content .numbers {
        flex-wrap: wrap;
    }
}

@media(max-width: 767px) {
    .container-vallesul-section-metricas .row {
        gap: 24px;
    }

    .container-vallesul-section-metricas .col-header {
        width: 100%;
    }

    .container-vallesul-section-metricas .title h2 {
        font-size: 24px;
        line-height: 100%;
    }

    .container-vallesul-section-metricas .col-content .numbers {
        gap: 24px;
        flex-direction: column;
    }

    .container-vallesul-section-metricas .col-content .numbers .number {
        font-size: 56px;
        line-height: 120%;
    }
}