body {
    font-family: var(--igor-font-body);
    color: var(--igor-white);
    background: var(--igor-black);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--igor-white);
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.igor-font-display {
    font-family: var(--igor-font-title);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| Eyebrow / título pequeno
|--------------------------------------------------------------------------
| Removido o risquinho antes e depois dos títulos pequenos.
|--------------------------------------------------------------------------
*/

.igor-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    color: var(--igor-red-3);
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.igor-eyebrow::before,
.igor-eyebrow::after,
.igor-section-heading--center .igor-eyebrow::before,
.igor-section-heading--center .igor-eyebrow::after {
    display: none !important;
    content: none !important;
}

.igor-section-title {
    margin-top: 18px;
    font-size: clamp(34px, 6vw, 72px);
    font-family: var(--igor-font-title);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.igor-section-title strong,
.igor-section-title span {
    color: var(--igor-red-3);
    font-weight: inherit;
}

.igor-section-text {
    max-width: 680px;
    margin-top: 18px;
    color: var(--igor-muted);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.75;
}

.igor-section-heading--center {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.igor-section-heading--center .igor-eyebrow {
    justify-content: center;
}

.igor-section-heading--center .igor-section-text {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .igor-eyebrow {
        gap: 0;
        font-size: 10px;
        letter-spacing: 0.24em;
    }

    .igor-section-title {
        margin-top: 14px;
        font-size: clamp(34px, 14vw, 54px);
    }

    .igor-section-text {
        margin-top: 14px;
        font-size: 15px;
    }
}