.section-compras {
    width: 100%;
    height: 800px;
    background-color: #F6FBFC;
    opacity: 1;
}

@media (max-width: 768px) {
    .section-compras {
        height: auto;
        padding: 60px 0;
    }

    .section-compras .row {
        text-align: center;
    }

    .compras-img {
        margin-top: 32px;
    }
}


.compras-text-box {
    width: 406px;
    height: 393px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
}

.compras-title {
    font-family: 'Circular', sans-serif;
    font-size: 40px;
    line-height: 42px;
    font-weight: 700;
    color: #283E80;
    max-width: 284px;
}

.compras-title .highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #283E81;
    color: #FFFFFF;

    font-family: 'Circular', sans-serif;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;

    padding: 2px 6px;
    border-radius: 0;
}

@media (max-width: 768px) {
    .compras-title .highlight {
        width: auto;
        height: auto;
        padding: 6px 10px;
    }
}

.compras-subtitle {
    font-family: 'Circular', sans-serif;
    font-size: 21px;
    line-height: 23px;
    font-weight: 700;
    color: #283E80;
    max-width: 402px;
}

.compras-description {
    font-family: 'Circular', sans-serif;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #283E80;
    max-width: 339px;
}

.compras-description .highlight-bold {
    font-weight: 700; /* mais grosso, sem exagerar */
}

@media (max-width: 768px) {

    /* SECTION */
    .section-compras {
        padding: 60px 0;
        height: auto;
    }

    /* TEXTO */
    .compras-text-box {
        width: 100%;
        height: auto;

        align-items: flex-start;
        text-align: left;

        gap: 16px;
    }

    /* TÍTULO */
    .compras-title {
        font-size: 32px;
        line-height: 34px;
        max-width: 100%;
    }

    .compras-title .highlight {
        font-size: 32px;
        line-height: 34px;
        padding: 2px 6px;
    }

    /* SUBTÍTULO */
    .compras-subtitle {
        font-size: 18px;
        line-height: 22px;
        max-width: 100%;
    }

    /* DESCRIÇÃO */
    .compras-description {
        font-size: 15px;
        line-height: 22px;
        max-width: 100%;
    }

    /* IMAGEM */
    .compras-img {
        max-width: 85%;
        margin: 32px auto 0;
        display: block;
    }
}


@media (min-width: 992px) {
    .section-compras .col-lg-6:first-child {
        padding-right: 40px;
    }

    .section-compras .col-lg-6:last-child {
        padding-left: 40px;
    }
}
