/* =========================================================
   PÁGINA A EMPRESA
========================================================= */

:root {
    --company-blue: #0276ac;
    --company-blue-dark: #00588f;
    --company-blue-light: #eaf8fc;
    --company-dark: #071827;
    --company-text: #334155;
    --company-muted: #64748b;
    --company-border: #dce5ef;
    --company-background: #f7fbfe;
    --company-white: #ffffff;
}

/* =========================================================
   BASE
========================================================= */

.company_page {
    overflow: hidden;
    background: #fff;
}

.company_page *,
.company_page *::before,
.company_page *::after {
    box-sizing: border-box;
}

.company_page h1,
.company_page h2,
.company_page h3,
.company_page h4,
.company_page p {
    margin-top: 0;
}

.company_page a {
    text-decoration: none;
}

.company_page .btn_azul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 10px;
    background: var(--company-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition:
        background-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.company_page .btn_azul:hover {
    color: #fff;
    background: var(--company-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(2, 118, 172, .2);
}

/* =========================================================
   ANIMAÇÕES AO ROLAR
========================================================= */

.company_reveal {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(28px);
    transition:
        opacity .8s ease,
        filter .8s ease,
        transform .8s cubic-bezier(.2, .8, .2, 1);
}

.company_reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* =========================================================
   HERO
========================================================= */

.company_hero {
    position: relative;
    padding: 95px 0 100px;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(2, 118, 172, .12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 56%,
            #edf7fc 100%
        );
}

.company_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(2, 118, 172, .04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(2, 118, 172, .04) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 85%,
            transparent
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 85%,
            transparent
        );
}

.company_hero_container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, .95fr);
    gap: 75px;
    align-items: center;
}

.company_label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 15px;
    border: 1px solid #cce5f2;
    border-radius: 999px;
    background: rgba(234, 248, 252, .85);
    color: var(--company-blue-dark);
    font-size: 13px;
    font-weight: 600;
}

.company_label i {
    font-size: 15px;
}

.company_hero_content h1 {
    max-width: 720px;
    margin-bottom: 26px;
    color: var(--company-dark);
    font-size: clamp(45px, 5vw, 55px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.company_hero_content h1 span {
    color: var(--company-blue);
}

.company_hero_content > p {
    max-width: 680px;
    margin-bottom: 32px;
    color: var(--company-text);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.company_hero_actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.company_btn_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 25px;
    border: 1px solid var(--company-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .8);
    color: var(--company-dark);
    font-size: 15px;
    font-weight: 600;
    transition: .25s ease;
}

.company_btn_secondary:hover {
    color: var(--company-blue);
    border-color: var(--company-blue);
    background: #fff;
    transform: translateY(-2px);
}

.company_hero_trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid var(--company-border);
}

.company_hero_trust > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.company_hero_trust i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border: 1px solid #d6eaf4;
    border-radius: 11px;
    background: #fff;
    color: var(--company-blue);
    font-size: 16px;
}

.company_hero_trust span {
    display: flex;
    flex-direction: column;
    color: var(--company-muted);
    font-size: 11px;
    line-height: 1.4;
}

.company_hero_trust strong {
    color: var(--company-dark);
    font-size: 13px;
}

/* =========================================================
   VISUAL DO HERO
========================================================= */

.company_hero_visual {
    position: relative;
    min-height: 590px;
    border: 1px solid var(--company-border);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(2, 118, 172, .21),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #edf6fc,
            #ffffff
        );
    box-shadow: 0 35px 90px rgba(15, 23, 42, .09);
}

.company_visual_grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    opacity: .55;
    background-image:
        linear-gradient(
            rgba(2, 118, 172, .06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(2, 118, 172, .06) 1px,
            transparent 1px
        );
    background-size: 35px 35px;
}

.company_brand_card {
    position: absolute;
    width: 74%;
    padding: 28px;
    border: 1px solid var(--company-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 25px 55px rgba(15, 23, 42, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.company_brand_old {
    top: 65px;
    left: 42px;
    transform: rotate(-2deg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company_brand_new {
    right: 42px;
    bottom: 65px;
    border-color: rgba(2, 118, 172, .3);
    transform: rotate(2deg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company_brand_card_label {
    display: block;
    margin-bottom: 18px;
    color: var(--company-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.company_old_logo {
    color: var(--company-dark);
    font-family: 'MVO', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: normal;
    line-height: 1;
}

.company_old_logo span {
    color: var(--company-blue);
    font-family: 'MVO', sans-serif;
}

.company_new_logo {
    color: var(--company-blue);
    font-family: 'MVO', sans-serif;
    font-size: clamp(75px, 9vw, 116px);
    font-weight: normal;
    line-height: .8;
}

.company_brand_card p {
    margin: 18px 0 0;
    color: var(--company-muted);
    font-size: 13px;
    line-height: 1.6;
}

.company_brand_status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 19px;
    padding-top: 16px;
    border-top: 1px solid var(--company-border);
    color: var(--company-blue-dark);
    font-size: 12px;
    font-weight: 600;
}

.company_brand_status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, .1);
}

.company_evolution_path {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64%;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translate(-50%, -50%) rotate(-7deg);
}

.company_evolution_path > span {
    height: 1px;
    flex: 1;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--company-blue)
        );
}

.company_evolution_path > span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--company-blue),
            transparent
        );
}

.company_evolution_path div {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border: 1px solid #c8e2ef;
    border-radius: 50%;
    background: #fff;
    color: var(--company-blue);
    box-shadow: 0 10px 30px rgba(2, 118, 172, .18);
}

.company_float_card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid var(--company-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .1);
    animation: companyFloat 5s ease-in-out infinite;
}

.company_float_card > i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--company-blue-light);
    color: var(--company-blue);
}

.company_float_card div {
    display: flex;
    flex-direction: column;
}

.company_float_card small {
    color: var(--company-muted);
    font-size: 10px;
}

.company_float_card strong {
    color: var(--company-dark);
    font-size: 12px;
}

.company_float_since {
    right: -28px;
    top: 45px;
}

.company_float_future {
    left: -32px;
    bottom: 38px;
    animation-delay: -2.5s;
}

/* =========================================================
   BARRA DE DESTAQUE
========================================================= */

.company_highlight_bar {
    padding: 28px 0;
    border-top: 1px solid var(--company-border);
    border-bottom: 1px solid var(--company-border);
    background: #fff;
}

.company_highlight_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.company_highlight_item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 26px;
    border-right: 1px solid var(--company-border);
}

.company_highlight_item:first-child {
    padding-left: 0;
}

.company_highlight_item:last-child {
    padding-right: 0;
    border-right: 0;
}

.company_highlight_item > i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--company-blue-light);
    color: var(--company-blue);
    font-size: 19px;
}

.company_highlight_item div {
    display: flex;
    flex-direction: column;
}

.company_highlight_item strong {
    color: var(--company-dark);
    font-size: 14px;
}

.company_highlight_item span {
    margin-top: 3px;
    color: var(--company-muted);
    font-size: 11px;
    line-height: 1.45;
}

/* =========================================================
   TÍTULOS DE SEÇÃO
========================================================= */

.company_section_heading {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.company_section_heading > span,
.company_solutions_label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--company-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.company_section_heading h2,
.company_solutions_content h2,
.company_numbers_intro h2 {
    margin-bottom: 22px;
    color: var(--company-dark);
    font-size: clamp(36px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.company_section_heading p,
.company_solutions_content > p,
.company_numbers_intro > p {
    margin-bottom: 0;
    color: var(--company-text);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

/* =========================================================
   HISTÓRIA
========================================================= */

.company_history {
    padding: 120px 0;
    background: #fff;
}

.company_history_grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

.company_history_grid:first-of-type {
    margin-top: 0;
}

.company_history_grid_reverse {
    grid-template-columns: .85fr 1fr;
}

.company_history_grid_reverse .company_history_content {
    order: 2;
}

.company_history_grid_reverse .company_history_card {
    order: 1;
}

.company_history_number {
    display: block;
    margin-bottom: 15px;
    color: var(--company-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
}

.company_history_content h3 {
    margin-bottom: 23px;
    color: var(--company-dark);
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.company_history_content p {
    margin-bottom: 18px;
    color: var(--company-text);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
}

.company_history_content p:last-child {
    margin-bottom: 0;
}

.company_history_card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border: 1px solid var(--company-border);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(2, 118, 172, .12),
            transparent 32%
        ),
        #f8fbff;
}

.company_history_card::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(2, 118, 172, .1);
    border-radius: 50%;
}

.company_history_card_blue {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 255, 255, .12),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--company-blue-dark),
            var(--company-blue)
        );
}

.company_history_card_icon {
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #d9ecfb;
    color: var(--company-blue);
    font-size: 24px;
}

.company_history_card_blue .company_history_card_icon {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.company_history_card > span {
    color: var(--company-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.company_history_card_blue > span {
    color: rgba(255, 255, 255, .72);
}

.company_history_card h3 {
    margin: 8px 0 15px;
    color: var(--company-dark);
    font-size: 28px;
    font-weight: 600;
}

.company_history_card_blue h3 {
    color: #fff;
}

.company_history_card > p {
    color: var(--company-text);
    font-size: 15px;
    line-height: 1.75;
}

.company_history_card_blue > p {
    color: rgba(255, 255, 255, .8);
}

.company_history_card_line {
    height: 1px;
    margin: 25px 0;
    background: var(--company-border);
}

.company_history_card_blue .company_history_card_line {
    background: rgba(255, 255, 255, .15);
}

.company_history_card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company_history_card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--company-dark);
    font-size: 14px;
}

.company_history_card_blue li {
    color: #fff;
}

.company_history_card li i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e4f4fa;
    color: var(--company-blue);
    font-size: 11px;
}

.company_history_card_blue li i {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

/* =========================================================
   REBRANDING
========================================================= */

.company_rebrand {
    padding: 105px 0;
    background: var(--company-background);
}

.company_rebrand_box {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border: 1px solid var(--company-border);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .07);
}

.company_rebrand_box::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(2, 118, 172, .08);
    filter: blur(4px);
}

.company_rebrand_intro {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
}

.company_rebrand_label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--company-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.company_rebrand_intro h2 {
    margin-bottom: 18px;
    color: var(--company-dark);
    font-size: clamp(38px, 4.5vw, 48px);
    font-weight: 600;
    letter-spacing: -.04em;
}

.company_rebrand_intro p {
    margin: 0;
    color: var(--company-text);
    font-size: 17px;
    line-height: 1.75;
}

.company_rebrand_animation {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    align-items: center;
    gap: 20px;
    min-height: 180px;
}

.company_rebrand_old {
    color: var(--company-dark);
    font-family: 'MVO', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: normal;
    line-height: 1;
    text-align: right;
    transition:
        opacity .8s ease,
        filter .8s ease,
        transform .8s ease;
}

.company_rebrand_old span {
    color: var(--company-blue);
    font-family: 'MVO', sans-serif;
}

.company_rebrand_new {
    color: var(--company-blue);
    font-family: 'MVO', sans-serif;
    font-size: clamp(90px, 11vw, 145px);
    font-weight: normal;
    line-height: .8;
    transition:
        opacity .8s ease,
        filter .8s ease,
        transform .8s ease;
}

.company_rebrand_center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company_rebrand_line {
    height: 1px;
    flex: 1;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--company-blue)
        );
}

.company_rebrand_line:last-child {
    background:
        linear-gradient(
            90deg,
            var(--company-blue),
            transparent
        );
}

.company_rebrand_icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    border: 1px solid #cae4f1;
    border-radius: 50%;
    background: #fff;
    color: var(--company-blue);
    box-shadow: 0 10px 25px rgba(2, 118, 172, .16);
}

.company_rebrand_box.is-animated .company_rebrand-old {
    opacity: .55;
    filter: blur(1px);
}

.company_rebrand_meaning {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.company_rebrand_meaning > div {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 22px;
    border: 1px solid var(--company-border);
    border-radius: 18px;
    background: #f9fcfe;
}

.company_rebrand_meaning strong {
    min-width: 44px;
    color: var(--company-blue);
    font-family: 'MVO', sans-serif;
    font-size: 48px;
    font-weight: normal;
    line-height: 1;
}

.company_rebrand_meaning span {
    display: flex;
    flex-direction: column;
    color: var(--company-muted);
    font-size: 12px;
    line-height: 1.5;
}

.company_rebrand_meaning b {
    margin-bottom: 3px;
    color: var(--company-dark);
    font-size: 15px;
}

.company_rebrand_note {
    position: relative;
    z-index: 2;
    margin: 22px 0 0;
    color: #8493a5;
    font-size: 11px;
    text-align: center;
}

/* =========================================================
   LINHA DO TEMPO
========================================================= */

.company_timeline_section {
    padding: 120px 0;
    background: #fff;
}

.company_timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.company_timeline_progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    overflow: hidden;
    background: #e1eaf1;
    transform: translateX(-50%);
}

.company_timeline_progress span {
    display: block;
    width: 100%;
    height: 0;
    border-radius: 999px;
    background:
        linear-gradient(
            to bottom,
            var(--company-blue),
            #55c3e8
        );
    transition: height .1s linear;
}

.company_timeline_item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 78px 1fr;
    align-items: center;
    min-height: 220px;
}

.company_timeline_date {
    padding-right: 36px;
    text-align: right;
}

.company_timeline_date span {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid var(--company-border);
    border-radius: 999px;
    background: #fff;
    color: var(--company-blue-dark);
    font-size: 12px;
    font-weight: 700;
}

.company_timeline_marker {
    position: relative;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    justify-self: center;
    border: 7px solid #fff;
    border-radius: 50%;
    background: var(--company-blue-light);
    color: var(--company-blue);
    box-shadow: 0 0 0 1px var(--company-border);
    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.company_timeline_item.is-active .company_timeline-marker,
.company_timeline_item.is-active .company_timeline_marker {
    background: var(--company-blue);
    color: #fff;
    transform: scale(1.08);
}

.company_timeline_card {
    margin: 20px 0 20px 36px;
    padding: 28px;
    border: 1px solid var(--company-border);
    border-radius: 21px;
    background: #fff;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.company_timeline_card:hover {
    border-color: #bad8e7;
    box-shadow: 0 22px 50px rgba(15, 23, 42, .08);
    transform: translateY(-4px);
}

.company_timeline_item:nth-child(even) .company_timeline_date {
    grid-column: 3;
    grid-row: 1;
    padding-right: 0;
    padding-left: 36px;
    text-align: left;
}

.company_timeline_item:nth-child(even) .company_timeline_marker {
    grid-column: 2;
    grid-row: 1;
}

.company_timeline_item:nth-child(even) .company_timeline_card {
    grid-column: 1;
    grid-row: 1;
    margin-right: 36px;
    margin-left: 0;
}

.company_timeline_tag {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--company-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.company_timeline_card h3 {
    margin-bottom: 13px;
    color: var(--company-dark);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.25;
}

.company_timeline_card p {
    margin: 0;
    color: var(--company-text);
    font-size: 14px;
    line-height: 1.75;
}

.company_timeline_featured .company_timeline_card {
    border-color: var(--company-blue);
    background:
        linear-gradient(
            145deg,
            #f2faff,
            #fff
        );
    box-shadow: 0 22px 50px rgba(2, 118, 172, .1);
}

.company_timeline_featured .company_timeline_marker {
    background: var(--company-blue);
    color: #fff;
}

/* =========================================================
   NÚMEROS
========================================================= */

.company_numbers {
    padding: 0 0 120px;
    background: #fff;
}

.company_numbers_box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
    padding: 65px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(79, 192, 232, .3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--company-blue-dark),
            var(--company-blue)
        );
}

.company_numbers_intro > span {
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.company_numbers_intro h2 {
    color: #fff;
}

.company_numbers_intro > p {
    color: rgba(255, 255, 255, .76);
}

.company_numbers_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.company_number_item {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 19px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.company_number_item strong {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
}

.company_number_item span {
    margin-top: 9px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

/* =========================================================
   VALORES
========================================================= */

.company_values {
    padding: 120px 0;
    background: var(--company-background);
}

.company_values_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.company_value_card {
    position: relative;
    min-height: 285px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--company-border);
    border-radius: 23px;
    background: #fff;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.company_value_card:hover {
    border-color: #bcd8e7;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .08);
    transform: translateY(-6px);
}

.company_value_card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(2, 118, 172, .08);
    border-radius: 50%;
}

.company_value_icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 16px;
    background: var(--company-blue-light);
    color: var(--company-blue);
    font-size: 21px;
}

.company_value_card > span {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #c8d6e1;
    font-size: 12px;
    font-weight: 700;
}

.company_value_card h3 {
    margin-bottom: 13px;
    color: var(--company-dark);
    font-size: 22px;
    font-weight: 600;
}

.company_value_card p {
    margin: 0;
    color: var(--company-text);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   SOLUÇÕES
========================================================= */

.company_solutions {
    padding: 120px 0;
    background: #fff;
}

.company_solutions_container {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.company_solutions_content {
    position: sticky;
    top: 110px;
}

.company_solutions_content .btn_azul {
    margin-top: 30px;
}

.company_solutions_list {
    display: grid;
    gap: 14px;
}

.company_solution_item {
    display: grid;
    grid-template-columns: 60px 1fr 35px;
    gap: 18px;
    align-items: center;
    padding: 25px;
    border: 1px solid var(--company-border);
    border-radius: 20px;
    background: #fff;
    transition:
        border-color .25s ease,
        background-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.company_solution_item:hover {
    border-color: #bdd9e7;
    background: #f8fcfe;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
    transform: translateX(5px);
}

.company_solution_icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--company-blue-light);
    color: var(--company-blue);
    font-size: 21px;
}

.company_solution_item h3 {
    margin-bottom: 7px;
    color: var(--company-dark);
    font-size: 18px;
    font-weight: 600;
}

.company_solution_item p {
    margin: 0;
    color: var(--company-muted);
    font-size: 13px;
    line-height: 1.65;
}

.company_solution_item > i {
    color: #9eafbd;
    transition:
        color .25s ease,
        transform .25s ease;
}

.company_solution_item:hover > i {
    color: var(--company-blue);
    transform: translate(3px, -3px);
}

/* =========================================================
   CTA
========================================================= */

.company_cta {
    padding: 20px 0 120px;
    background: #fff;
}

.company_cta_box {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            #061827,
            #073753
        );
}

.company_cta_box::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .07) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.company_cta_light {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(2, 118, 172, .5);
    filter: blur(80px);
    transform: translateY(-50%);
}

.company_cta_content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.company_cta_content > span {
    display: block;
    margin-bottom: 16px;
    color: #68c9ed;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.company_cta_content h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(37px, 4.5vw, 57px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.company_cta_content p {
    max-width: 630px;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.75;
}

.company_cta_actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.company_cta_primary,
.company_cta_secondary {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.company_cta_primary {
    background: #fff;
    color: var(--company-dark);
}

.company_cta_primary:hover {
    color: var(--company-blue);
    transform: translateY(-2px);
}

.company_cta_secondary {
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.company_cta_secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

.company_cta_brand {
    position: absolute;
    right: 60px;
    bottom: -25px;
    color: rgba(255, 255, 255, .065);
    font-family: 'MVO', sans-serif;
    font-size: clamp(180px, 19vw, 290px);
    font-weight: normal;
    line-height: .7;
    pointer-events: none;
}

/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes companyFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1200px) {
    .company_hero_container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .company_hero_trust {
        grid-template-columns: 1fr;
    }

    .company_highlight_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .company_highlight_item:nth-child(2) {
        border-right: 0;
    }

    .company_highlight_item:nth-child(3) {
        padding-left: 0;
    }

    .company_numbers_box {
        gap: 40px;
        padding: 50px;
    }
}

@media (max-width: 1000px) {
    .company_hero {
        padding: 70px 0 85px;
    }

    .company_hero_container {
        grid-template-columns: 1fr;
    }

    .company_hero_visual {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .company_history_grid,
    .company_history_grid_reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .company_history_grid_reverse .company_history_content,
    .company_history_grid_reverse .company_history_card {
        order: initial;
    }

    .company_rebrand_box {
        padding: 50px 35px;
    }

    .company_rebrand_animation {
        grid-template-columns: 1fr 100px 1fr;
    }

    .company_rebrand_meaning {
        grid-template-columns: 1fr;
    }

    .company_numbers_box {
        grid-template-columns: 1fr;
    }

    .company_values_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company_solutions_container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .company_solutions_content {
        position: static;
    }
}

@media (max-width: 760px) {
    .company_hero {
        padding: 55px 0 70px;
    }

    .company_hero_content h1 {
        font-size: 42px;
    }

    .company_hero_content > p {
        font-size: 16px;
    }

    .company_hero_actions {
        flex-direction: column;
        align-items: stretch;
    }

    .company_hero_actions a {
        width: 100%;
    }

    .company_hero_visual {
        min-height: 510px;
    }

    .company_brand_card {
        width: calc(100% - 44px);
        padding: 23px;
    }

    .company_brand_old {
        top: 42px;
        left: 22px;
    }

    .company_brand_new {
        right: 22px;
        bottom: 42px;
    }

    .company_old_logo {
        font-size: 38px;
    }

    .company_new_logo {
        font-size: 90px;
    }

    .company_float_since {
        top: 12px;
        right: 8px;
    }

    .company_float_future {
        bottom: 11px;
        left: 8px;
    }

    .company_highlight_grid {
        grid-template-columns: 1fr;
    }

    .company_highlight_item,
    .company_highlight_item:first-child,
    .company_highlight_item:nth-child(3),
    .company_highlight_item:last-child {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--company-border);
    }

    .company_highlight_item:last-child {
        border-bottom: 0;
    }

    .company_history,
    .company_timeline_section,
    .company_values,
    .company_solutions {
        padding: 80px 0;
    }

    .company_section_heading {
        margin-bottom: 50px;
    }

    .company_section_heading h2,
    .company_solutions_content h2,
    .company_numbers_intro h2 {
        font-size: 36px;
    }

    .company_history_grid {
        margin-top: 55px;
    }

    .company_history_card {
        padding: 30px 25px;
    }

    .company_rebrand {
        padding: 75px 0;
    }

    .company_rebrand_box {
        padding: 45px 22px;
        border-radius: 24px;
    }

    .company_rebrand_animation {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .company_rebrand_old {
        text-align: center;
    }

    .company_rebrand-center,
    .company_rebrand_center {
        width: min(220px, 70%);
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .company_timeline_progress {
        left: 25px;
        transform: none;
    }

    .company_timeline_item,
    .company_timeline_item:nth-child(even) {
        grid-template-columns: 52px 1fr;
        min-height: auto;
        margin-bottom: 35px;
    }

    .company_timeline_date,
    .company_timeline_item:nth-child(even) .company_timeline_date {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 10px 18px;
        text-align: left;
    }

    .company_timeline_marker,
    .company_timeline_item:nth-child(even) .company_timeline_marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        margin-top: 3px;
    }

    .company_timeline_card,
    .company_timeline_item:nth-child(even) .company_timeline_card {
        grid-column: 2;
        grid-row: 2;
        margin: 0 0 0 18px;
    }

    .company_numbers {
        padding-bottom: 80px;
    }

    .company_numbers_box {
        padding: 35px 24px;
    }

    .company_numbers_grid {
        grid-template-columns: 1fr 1fr;
    }

    .company_number_item {
        min-height: 125px;
        padding: 18px;
    }

    .company_number_item strong {
        font-size: 38px;
    }

    .company_values_grid {
        grid-template-columns: 1fr;
    }

    .company_value_card {
        min-height: auto;
    }

    .company_solution_item {
        grid-template-columns: 52px 1fr;
    }

    .company_solution_item > i {
        display: none;
    }

    .company_cta {
        padding-bottom: 80px;
    }

    .company_cta_box {
        min-height: 460px;
        padding: 45px 25px;
        border-radius: 25px;
    }

    .company_cta-actions,
    .company_cta_actions {
        flex-direction: column;
        align-items: stretch;
    }

    .company_cta-actions a,
    .company_cta_actions a {
        width: 100%;
    }

    .company_cta_brand {
        right: 10px;
        bottom: -5px;
        font-size: 150px;
    }
}

@media (max-width: 480px) {
    .company_hero_content h1 {
        font-size: 37px;
    }

    .company_hero_visual {
        min-height: 470px;
    }

    .company_brand_card p,
    .company_brand_status {
        font-size: 11px;
    }

    .company_old_logo {
        font-size: 31px;
    }

    .company_new_logo {
        font-size: 78px;
    }

    .company_float_card {
        display: none;
    }

    .company_numbers_grid {
        grid-template-columns: 1fr;
    }

    .company_number_item {
        min-height: 110px;
    }

    .company_rebrand_meaning > div {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .company_reveal {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    .company_float_card {
        animation: none;
    }
}