/*
|--------------------------------------------------------------------------
| About / Sobre - First Mobile
|--------------------------------------------------------------------------
*/

.igor-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(196, 27, 27, 0.13), transparent 34%),
        radial-gradient(circle at 82% 68%, rgba(163, 23, 23, 0.12), transparent 38%),
        #070707;
}

.igor-about__texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.26;
    background:
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

.igor-about__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    width: 90%;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    gap: 36px;
}

.igor-about__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.igor-about__content .igor-section-heading {
    align-items: center;
    text-align: center;
}

.igor-about__content .igor-section-heading__eyebrow,
.igor-about__content .igor-section-heading__title,
.igor-about__content .igor-section-heading__text {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.igor-about__lead {
    max-width: 760px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
    color: var(--igor-white);
    font-size: clamp(21px, 6.4vw, 30px);
    font-weight: 800;
    line-height: 1.34;
    letter-spacing: -0.035em;
    text-align: center;
}

.igor-about__text {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin-top: 22px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.igor-about__text p {
    margin-right: auto;
    margin-left: auto;
    color: var(--igor-muted);
    font-size: 15px;
    line-height: 1.72;
    text-align: center;
}

.igor-about__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

/*
|--------------------------------------------------------------------------
| Tags / Pills
|--------------------------------------------------------------------------
*/

.igor-about__pills .igor-inline-pill {
    position: relative;
    isolation: isolate;
    cursor: default;
    overflow: hidden;
    user-select: none;
    min-height: 36px;
    padding: 0 15px;
    border-radius: var(--igor-radius-full);
    transform: translate3d(0, 0, 0);
    transition:
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        color 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease;
}

.igor-about__pills .igor-inline-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0;
    background: linear-gradient(135deg, rgba(163, 23, 23, 0.94), rgba(196, 27, 27, 0.94));
    transition: opacity 280ms ease;
}

.igor-about__pills .igor-inline-pill::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -80%;
    z-index: -1;
    width: 55%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-18deg) translateX(0);
    transition:
        opacity 280ms ease,
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.igor-about__pills .igor-inline-pill:hover {
    color: var(--igor-white);
    border-color: rgba(196, 27, 27, 0.58);
    background: rgba(196, 27, 27, 0.14);
    box-shadow: 0 16px 42px rgba(196, 27, 27, 0.2);
    transform: translate3d(0, -2px, 0);
}

.igor-about__pills .igor-inline-pill:hover::before {
    opacity: 1;
}

.igor-about__pills .igor-inline-pill:hover::after {
    opacity: 1;
    transform: skewX(-18deg) translateX(330%);
}

.igor-about__pills .igor-inline-pill.is-red {
    color: var(--igor-white);
    border-color: rgba(196, 27, 27, 0.58);
    background: rgba(196, 27, 27, 0.14);
    box-shadow: 0 16px 42px rgba(196, 27, 27, 0.2);
    transform: translate3d(0, -2px, 0);
}

.igor-about__pills .igor-inline-pill.is-red::before {
    opacity: 1;
}

.igor-about__pills .igor-inline-pill.is-red:hover {
    border-color: rgba(255, 56, 56, 0.78);
    box-shadow: 0 18px 52px rgba(196, 27, 27, 0.28);
}

/*
|--------------------------------------------------------------------------
| Imagem rotativa
|--------------------------------------------------------------------------
*/

.igor-about__media-column {
    position: relative;
    width: 100%;
    min-height: auto;
    align-self: auto;
}

.igor-about__media-sticky {
    position: relative;
    width: 100%;
    transform: none;
    will-change: auto;
}

.igor-about__rotator {
    position: relative;
    width: 100%;
    height: clamp(330px, 104vw, 520px);
    overflow: hidden;
    border-radius: 0;
    background: #030303;
    box-shadow: none;
    transform: translateZ(0);
}

.igor-about__rotator::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 34%, rgba(0,0,0,0.28) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.22) 0%, transparent 42%, rgba(196,27,27,0.08) 100%);
}

.igor-about__rotator::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.08);
}

.igor-about__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.045);
    filter: grayscale(0.18) contrast(1.08) saturate(0.88);
    transition:
        opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 2800ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 1100ms ease;
}

.igor-about__image.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: grayscale(0.05) contrast(1.1) saturate(0.95);
}

/*
|--------------------------------------------------------------------------
| Até 420px
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {
    .igor-about__lead {
        font-size: clamp(20px, 6vw, 25px);
    }

    .igor-about__text p {
        font-size: 14.5px;
    }

    .igor-about__pills {
        gap: 8px;
    }

    .igor-about__pills .igor-inline-pill {
        min-height: 34px;
        padding: 0 13px;
        font-size: 11px;
    }

    .igor-about__rotator {
        height: clamp(310px, 100vw, 440px);
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (min-width: 768px) {
    .igor-about__container {
        gap: 46px;
    }

    .igor-about__lead {
        margin-top: 30px;
        font-size: clamp(24px, 4vw, 34px);
        line-height: 1.32;
    }

    .igor-about__text {
        margin-top: 24px;
        gap: 17px;
    }

    .igor-about__text p {
        font-size: 16px;
        line-height: 1.78;
    }

    .igor-about__pills {
        margin-top: 30px;
    }

    .igor-about__rotator {
        height: clamp(430px, 68vw, 640px);
    }
}

/*
|--------------------------------------------------------------------------
| Desktop
|--------------------------------------------------------------------------
*/

@media (min-width: 992px) {
    .igor-about__container {
        grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
        align-items: start;
        justify-items: stretch;
        width: min(var(--igor-container-fluid, 90%), var(--igor-container, 1180px));
        max-width: var(--igor-container, 1180px);
        gap: clamp(34px, 6vw, 92px);
    }

    .igor-about__content {
        max-width: 690px;
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .igor-about__content .igor-section-heading {
        align-items: flex-start;
        text-align: left;
    }

    .igor-about__content .igor-section-heading__eyebrow,
    .igor-about__content .igor-section-heading__title,
    .igor-about__content .igor-section-heading__text {
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .igor-about__lead {
        max-width: none;
        margin-top: 34px;
        margin-right: 0;
        margin-left: 0;
        font-size: clamp(20px, 2.2vw, 30px);
        line-height: 1.34;
        text-align: left;
    }

    .igor-about__text {
        max-width: none;
        gap: 18px;
        margin-top: 26px;
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .igor-about__text p {
        margin-right: 0;
        margin-left: 0;
        font-size: 16px;
        line-height: 1.78;
        text-align: left;
    }

    .igor-about__pills {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .igor-about__pills .igor-inline-pill:hover {
        transform: translate3d(0, -3px, 0);
    }

    .igor-about__pills .igor-inline-pill.is-red {
        transform: translate3d(0, -3px, 0);
    }

    .igor-about__media-column {
        min-height: 100%;
        align-self: stretch;
    }

    .igor-about__media-sticky {
        position: relative;
        width: 100%;
        will-change: transform;
        transform: translate3d(0, 0, 0);
    }

    .igor-about__rotator {
        height: clamp(460px, 58vh, 620px);
    }
}

/*
|--------------------------------------------------------------------------
| Desktop grande
|--------------------------------------------------------------------------
*/

@media (min-width: 1200px) {
    .igor-about__rotator {
        height: clamp(480px, 60vh, 650px);
    }
}

@media (min-width: 1440px) {
    .igor-about__container {
        gap: clamp(54px, 6vw, 104px);
    }

    .igor-about__rotator {
        height: clamp(500px, 62vh, 680px);
    }
}


/*
|--------------------------------------------------------------------------
| About / Sobre - First Mobile
|--------------------------------------------------------------------------
*/

.igor-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(196, 27, 27, 0.13), transparent 34%),
        radial-gradient(circle at 82% 68%, rgba(163, 23, 23, 0.12), transparent 38%),
        #070707;
}

.igor-about__texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.26;
    background:
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

.igor-about__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    width: 90%;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    gap: 36px;
}

.igor-about__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.igor-about__content .igor-section-heading {
    align-items: center;
    text-align: center;
}

.igor-about__content .igor-section-heading__eyebrow,
.igor-about__content .igor-section-heading__title,
.igor-about__content .igor-section-heading__text {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.igor-about__lead {
    max-width: 760px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
    color: var(--igor-white);
    font-size: clamp(21px, 6.4vw, 30px);
    font-weight: 800;
    line-height: 1.34;
    letter-spacing: -0.035em;
    text-align: center;
}

.igor-about__text {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin-top: 22px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.igor-about__text p {
    margin-right: auto;
    margin-left: auto;
    color: var(--igor-muted);
    font-size: 15px;
    line-height: 1.72;
    text-align: center;
}

.igor-about__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

/*
|--------------------------------------------------------------------------
| Tags / Pills
|--------------------------------------------------------------------------
*/

.igor-about__pills .igor-inline-pill {
    position: relative;
    isolation: isolate;
    cursor: default;
    overflow: hidden;
    user-select: none;
    min-height: 36px;
    padding: 0 15px;
    border-radius: var(--igor-radius-full);
    transform: translate3d(0, 0, 0);
    transition:
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        color 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease;
}

.igor-about__pills .igor-inline-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0;
    background: linear-gradient(135deg, rgba(163, 23, 23, 0.94), rgba(196, 27, 27, 0.94));
    transition: opacity 280ms ease;
}

.igor-about__pills .igor-inline-pill::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -80%;
    z-index: -1;
    width: 55%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-18deg) translateX(0);
    transition:
        opacity 280ms ease,
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.igor-about__pills .igor-inline-pill:hover {
    color: var(--igor-white);
    border-color: rgba(196, 27, 27, 0.58);
    background: rgba(196, 27, 27, 0.14);
    box-shadow: 0 16px 42px rgba(196, 27, 27, 0.2);
    transform: translate3d(0, -2px, 0);
}

.igor-about__pills .igor-inline-pill:hover::before {
    opacity: 1;
}

.igor-about__pills .igor-inline-pill:hover::after {
    opacity: 1;
    transform: skewX(-18deg) translateX(330%);
}

.igor-about__pills .igor-inline-pill.is-red {
    color: var(--igor-white);
    border-color: rgba(196, 27, 27, 0.58);
    background: rgba(196, 27, 27, 0.14);
    box-shadow: 0 16px 42px rgba(196, 27, 27, 0.2);
    transform: translate3d(0, -2px, 0);
}

.igor-about__pills .igor-inline-pill.is-red::before {
    opacity: 1;
}

.igor-about__pills .igor-inline-pill.is-red:hover {
    border-color: rgba(255, 56, 56, 0.78);
    box-shadow: 0 18px 52px rgba(196, 27, 27, 0.28);
}

/*
|--------------------------------------------------------------------------
| Imagem rotativa
|--------------------------------------------------------------------------
*/

.igor-about__media-column {
    position: relative;
    width: 100%;
    min-height: auto;
    align-self: auto;
}

.igor-about__media-sticky {
    position: relative;
    width: 100%;
    transform: none;
    will-change: auto;
}

.igor-about__rotator {
    position: relative;
    width: 100%;
    height: clamp(330px, 104vw, 520px);
    overflow: hidden;
    border-radius: 0;
    background: #030303;
    box-shadow: none;
    transform: translateZ(0);
}

.igor-about__rotator::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 34%, rgba(0,0,0,0.28) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.22) 0%, transparent 42%, rgba(196,27,27,0.08) 100%);
}

.igor-about__rotator::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.08);
}

.igor-about__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.045);
    filter: grayscale(0.18) contrast(1.08) saturate(0.88);
    transition:
        opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 1100ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 2800ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 1100ms ease;
}

.igor-about__image.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: grayscale(0.05) contrast(1.1) saturate(0.95);
}

/*
|--------------------------------------------------------------------------
| Fallback lateral sem imagem
|--------------------------------------------------------------------------
*/

.igor-about__media-empty {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: clamp(330px, 104vw, 520px);
    padding: 34px 24px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.igor-about__media-empty-icon {
    display: grid;
    place-items: center;
    width: auto;
    height: auto;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.86);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.igor-about__media-empty-icon i {
    display: block;
    color: inherit;
    font-size: 30px;
    line-height: 1;
}

.igor-about__media-empty-title {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.igor-about__media-empty-text {
    width: 100%;
    max-width: 360px;
    margin: 10px auto 0;
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

/*
|--------------------------------------------------------------------------
| Até 420px
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {
    .igor-about__lead {
        font-size: clamp(20px, 6vw, 25px);
    }

    .igor-about__text p {
        font-size: 14.5px;
    }

    .igor-about__pills {
        gap: 8px;
    }

    .igor-about__pills .igor-inline-pill {
        min-height: 34px;
        padding: 0 13px;
        font-size: 11px;
    }

    .igor-about__rotator {
        height: clamp(310px, 100vw, 440px);
    }

    .igor-about__media-empty {
        min-height: clamp(310px, 100vw, 440px);
        padding: 28px 18px;
    }

    .igor-about__media-empty-icon i {
        font-size: 26px;
    }

    .igor-about__media-empty-title {
        font-size: 20px;
    }

    .igor-about__media-empty-text {
        font-size: 13px;
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (min-width: 768px) {
    .igor-about__container {
        gap: 46px;
    }

    .igor-about__lead {
        margin-top: 30px;
        font-size: clamp(24px, 4vw, 34px);
        line-height: 1.32;
    }

    .igor-about__text {
        margin-top: 24px;
        gap: 17px;
    }

    .igor-about__text p {
        font-size: 16px;
        line-height: 1.78;
    }

    .igor-about__pills {
        margin-top: 30px;
    }

    .igor-about__rotator {
        height: clamp(430px, 68vw, 640px);
    }

    .igor-about__media-empty {
        min-height: clamp(430px, 68vw, 640px);
    }
}

/*
|--------------------------------------------------------------------------
| Desktop
|--------------------------------------------------------------------------
*/

@media (min-width: 992px) {
    .igor-about__container {
        grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
        align-items: start;
        justify-items: stretch;
        width: min(var(--igor-container-fluid, 90%), var(--igor-container, 1180px));
        max-width: var(--igor-container, 1180px);
        gap: clamp(34px, 6vw, 92px);
    }

    .igor-about__content {
        max-width: 690px;
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .igor-about__content .igor-section-heading {
        align-items: flex-start;
        text-align: left;
    }

    .igor-about__content .igor-section-heading__eyebrow,
    .igor-about__content .igor-section-heading__title,
    .igor-about__content .igor-section-heading__text {
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .igor-about__lead {
        max-width: none;
        margin-top: 34px;
        margin-right: 0;
        margin-left: 0;
        font-size: clamp(20px, 2.2vw, 30px);
        line-height: 1.34;
        text-align: left;
    }

    .igor-about__text {
        max-width: none;
        gap: 18px;
        margin-top: 26px;
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .igor-about__text p {
        margin-right: 0;
        margin-left: 0;
        font-size: 16px;
        line-height: 1.78;
        text-align: left;
    }

    .igor-about__pills {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .igor-about__pills .igor-inline-pill:hover {
        transform: translate3d(0, -3px, 0);
    }

    .igor-about__pills .igor-inline-pill.is-red {
        transform: translate3d(0, -3px, 0);
    }

    .igor-about__media-column {
        min-height: 100%;
        align-self: stretch;
    }

    .igor-about__media-sticky {
        position: relative;
        width: 100%;
        will-change: transform;
        transform: translate3d(0, 0, 0);
    }

    .igor-about__rotator {
        height: clamp(460px, 58vh, 620px);
    }

    .igor-about__media-empty {
        min-height: clamp(460px, 58vh, 620px);
    }
}

/*
|--------------------------------------------------------------------------
| Desktop grande
|--------------------------------------------------------------------------
*/

@media (min-width: 1200px) {
    .igor-about__rotator {
        height: clamp(480px, 60vh, 650px);
    }

    .igor-about__media-empty {
        min-height: clamp(480px, 60vh, 650px);
    }
}

@media (min-width: 1440px) {
    .igor-about__container {
        gap: clamp(54px, 6vw, 104px);
    }

    .igor-about__rotator {
        height: clamp(500px, 62vh, 680px);
    }

    .igor-about__media-empty {
        min-height: clamp(500px, 62vh, 680px);
    }
}