.highlight {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: var(--blue-color);
}

header {
    padding-top: 64px;
}

.highlight-container {
    width: 100%;

    padding: 64px;

    max-width: var(--max-width);
}

.highlight-title {
    line-height: 64px;

    font-size: 32px;
    font-weight: 600;

    color: #fff;
}


.highlight-title-bold {
    font-size: 32px;
    font-weight: 900;

    text-decoration: dashed;

    color: var(--orage-color) !important;
}

@media screen and (max-width: 1200px) {
    .highlight-container {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .highlight-container {
        padding-top: 0px;
    }

    .highlight-title {
        line-height: 32px;

        padding-top: 32px;
    }
}


/* Texto introdutório alá softclever */
.introduction {
    width: 100%;

    max-width: var(--max-width);

    padding: var(--padding);

    column-count: 2;
    /* Define o número de colunas desejado */
    column-gap: 32px;
    /* Espaçamento entre as colunas (opcional) */
}

.introduction p {
    font-size: 18px;

    line-height: 32px;

    text-align: justify;
}

@media screen and (max-width: 767px) {
    .introduction {
        column-count: 1;
    }
}