@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

:root {
    --azul-escuro: #223C57;
    --laranja: #FF7300;
    --cinza-texto: #808183;
    --white: #fff;
    --bg-gray-light: #EDEFF2;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Titillium Web', sans-serif;
}

body {
    overflow-x: hidden;
}

.marker-laranja li::marker {
    color: var(--laranja);
}

.text-gray {
    color: var(--cinza-texto);
}

.text-azul {
    color: var(--azul-escuro);
}

.text-laranja {
    color: var(--laranja);
}

.p-padrao {
    padding-top: 10px;
    line-height: 36px;
    font-size: 34px;
    color: var(--cinza-texto);
}

.h2-padrao,
.h3-padrao {
    font-size: 48px;
    font-weight: bold;
    color: var(--azul-escuro);
    line-height: 56px;
}

.main-onboarding {
    background-color: var(--azul-escuro);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    .onboarding {
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1 {
            font-size: 60px;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
        }

        div {
            display: flex;
            flex-direction: row;
            gap: 30px;

            a {
                background-color: var(--laranja);
                color: var(--white);
                font-size: 40px;
                font-weight: 800;
                text-decoration: none;
                padding: 7px 60px;
                border-radius: 15px;
                text-align: center;

                transition: transform .3s ease;
            }

            a:hover {
                transform: scale(1.05);
            }
        }
    }
}

.header {
    background: url(../assets/images/onboarding/banner-home.png);
    background-position: center;
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    img {
        width: 411px;
    }

    article {
        color: var(--white);
        text-align: center;
        margin-top: 45px;

        h1 {
            font-size: 72px;
            line-height: 80px;
            font-weight: bold;
        }

        p {
            font-size: 48px;
            line-height: 56px;
            font-weight: lighter;
        }
    }
}

.section-essencia {
    max-width: 85%;
    margin: 100px auto;
    display: flex;
    justify-content: center;

    article:nth-child(2) {
        max-width: 850px;
    }
}

.section-tabs-swiper {
    background-color: var(--bg-gray-light);
    padding: 36px 20px;
    margin-bottom: 60px;

    .mainSwiper {
        .swiper-wrapper {
            .swiper-slide {
                text-align: center;
            }
        }
    }
}

.nav-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;

    .btn-nav {
        width: 223px;
        padding: 8px 0px;
        border-radius: 40px;
        border: none;
        background: var(--azul-escuro);
        cursor: pointer;
        font-size: 24px;
        line-height: 36px;
        font-weight: bold;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        &.active {
            background: var(--laranja);
        }
    }
}

.section-valores {
    text-align: center;
    height: 560px;
    margin-bottom: 50px;

    h2 {
        margin-bottom: 29px;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        gap: 230px;

        .value-item {
            h3 {
                font-size: 34px;
                font-weight: bold;
                color: var(--azul-escuro);
                line-height: 36px;
            }
        }
    }

    .container-pagination {
        margin-top: 80px;
        position: relative;
        z-index: 99;
    }

    .icon-box {
        background: var(--azul-escuro);
        width: 127px;
        height: 128px;
        border-radius: 12px;
        margin: 0 auto 20px;
        padding: 20px;

        img {
            width: 100%;
        }
    }

    .swiper-pagination-bullet {
        width: 35px;
        height: 35px;
        background: var(--azul-escuro);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: var(--laranja) !important;
    }
}

.section-move {
    background-color: var(--bg-gray-light);
    padding: 100px 0;
    display: flex;
    justify-content: center;

    .container-move {
        max-width: 85%;
        width: 100%;

        h2 {
            margin-bottom: 50px;
        }

        .move-item {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;

            &:last-child {
                margin-bottom: 0;
            }

            .icon-box {
                background: var(--azul-escuro);
                min-width: 100px;
                height: 100px;
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 25px;

                img {
                    width: 100%;
                    height: auto;
                    object-fit: contain;
                }
            }

            .move-text {
                h3 {
                    font-size: 34px;
                    font-weight: bold;
                    color: var(--azul-escuro);
                    line-height: 40px;
                    margin-bottom: 8px;
                }

                p {
                    font-size: 34px;
                    line-height: 36px;
                    color: var(--cinza-texto);
                    font-weight: normal;
                }
            }
        }
    }
}

.section-historia {
    margin: 100px auto;
    max-width: 85%;
    display: flex;
    align-items: start;
    gap: 60px;

    article:nth-child(1) {
        .title-orange {
            font-size: 82px;
            line-height: 56px;
            color: var(--laranja);
            font-weight: 300;
        }

        .subtitle-blue {
            font-size: 32px;
            color: var(--azul-escuro);
            font-weight: bold;
        }

        .p-padrao {
            padding: 12px 0px;
        }

        .sub-title {
            color: var(--azul-escuro);
            font-weight: bold;
            font-size: 34px;
        }

        .content-text {
            margin-top: 12px;

            strong {
                font-size: 34px;
                line-height: 36px;
                color: var(--azul-escuro);
            }
        }
    }

    .image-container {
        img {
            border-radius: 20px;
        }
    }
}

.section-logotipo {
    width: 100%;
    background-color: var(--bg-gray-light);
    padding: 60px 0;
    text-align: center;

    h2 {
        margin-bottom: 50px;
    }

    .timeline-container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        max-width: 85%;
        margin: 0 auto 40px auto;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            bottom: 17px;
            left: 5%;
            right: 5%;
            height: 2px;
            background-color: #bcbec0;
            z-index: 1;
        }

        .logo-item {
            flex: 1;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;

            .logo-wrapper {
                height: 120px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;

                img {
                    max-width: 93%;
                    max-height: 100%;
                    object-fit: contain;
                }
            }

            .year-wrapper {
                background-color: var(--bg-gray-light);
                padding: 0 15px;

                span {
                    font-size: 28px;
                    font-weight: bold;
                    color: var(--azul-escuro);
                }
            }

            &.current {
                .year-wrapper span {
                    color: var(--laranja);
                }
            }
        }
    }

    .timeline-footer {
        max-width: 780px;
        margin: 0 auto;
        font-size: 34px;
        line-height: 36px;
        color: var(--cinza-texto);
    }
}

.section-meaning {
    max-width: 85%;
    margin: 100px auto;

    .meaning-container {
        display: flex;
        justify-content: center;
        margin-top: 60px;

        .main-logo {
            width: 95%;
            height: auto;
        }

        article {
            display: none;
        }
    }
}

.section-para-voce {
    max-width: 85%;
    margin: 100px auto;
    position: relative;

    .para-voce-container {
        display: flex;
        align-items: center;
        gap: 60px;
        padding-bottom: 80px;

        .image-box {
            flex: 1;

            img {
                width: 100%;
                max-width: 411px;
                border-radius: 40px;
                display: block;
            }
        }

        .text-box {
            flex: 2;

            h2 {
                margin-bottom: 30px;
                font-weight: 300 !important;

                span {
                    font-weight: 800;
                }
            }
        }
    }

    .swiper-pagination {
        bottom: 0 !important;

        .swiper-pagination-bullet {
            width: 35px;
            height: 35px;
            background: var(--azul-escuro);
            opacity: 1;
            margin: 0 8px !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--laranja) !important;
        }
    }
}

.section-inspiracao {
    max-width: 85%;
    margin: 100px auto;

    .container-inspiracao {
        display: flex;
        align-items: center;
        gap: 60px;

        .text-box {
            flex: 1.2;

            h2 {
                margin-bottom: 30px;
            }
        }

        .image-box {
            flex: 1;

            img {
                width: 100%;
                border-radius: 40px;
                display: block;
            }
        }
    }
}

.section-futuro {
    background: url('../assets/images/onboarding/bg-espaco.png') no-repeat center center;
    background-size: cover;
    padding: 36px 0;
    display: flex;
    justify-content: center;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .container-futuro {
        max-width: 85%;
        width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: flex-start;

        .text-box {
            max-width: 700px;

            .h2-padrao {
                color: var(--white);
                margin-bottom: 14px;
            }

            p {
                color: var(--white);
            }
        }
    }
}

.section-crencas {
    max-width: 85%;
    margin: 100px auto;

    .container-crencas {
        h2 {
            margin-bottom: 40px;
        }

        .list-crencas {
            list-style: none;
            padding: 0;

            li {
                font-size: 34px;
                line-height: 50px;
                color: var(--cinza-texto);
                position: relative;
                padding-left: 35px;
                margin-bottom: 15px;

                &::before {
                    content: "●";
                    color: var(--laranja);
                    font-size: 50px;
                    position: absolute;
                    left: 0;
                    top: -5px;
                    line-height: 50px;
                }

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}

.section-expectativas {
    background-color: #f4f4f4;
    padding: 80px 0;

    .container {
        margin: 0 auto;
        max-width: 85%;
    }

    .expectativas-slider {
        margin-top: 60px;
        padding-bottom: 50px;
    }

    .expectativas-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 20px 0;

        .item {
            display: flex;
            align-items: flex-start;
            gap: 20px;

            .num-outline {
                font-size: 80px;
                font-weight: 900;
                line-height: 0.8;
                color: transparent;
                -webkit-text-stroke: 2px #ff7300;
                font-family: sans-serif;
            }

            .text {
                h3 {
                    color: #223c57;
                    font-size: 34px;
                    font-weight: bold;
                    margin-bottom: 0px;
                }

                p {
                    padding: 0;
                }
            }
        }
    }

    .swiper-pagination-bullet {
        width: 35px;
        height: 35px;
        background: var(--azul-escuro);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: var(--laranja) !important;
    }
}

.section-hierarquia {
    max-width: 85%;
    margin: 0 auto;
    padding: 80px 0;
    background-color: #fff;
    text-align: start;
    position: relative;
    z-index: 2;

    .nav-buttons-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        row-gap: 24px;
        max-width: 85%;
        margin: 40px auto;

        .btn-nav-2 {
            background-color: #223c57;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: background 0.3s ease;

            img {
                width: 31px;
                filter: brightness(0) invert(1);
            }
        }

        .btn-nav-2.active {
            background-color: #ff7300 !important;
            color: #fff;
        }
    }

    .hierarchy-display {
        display: flex;
        flex-direction: column;
        align-items: center;

        img {
            max-width: 100%;
        }
    }

    .quadrados-bg {
        position: absolute;
        right: -25%;
        top: 33%;
        z-index: -1;
    }
}

.section-trabalho {
    max-width: 85%;
    margin: 100px auto;
    display: flex;
    justify-content: flex-start;

    .container-trabalho {
        width: 100%;

        .title-orange {
            font-size: 82px;
            line-height: 80px;
            color: var(--laranja);
            font-weight: 300;
            margin: 0;
        }

        .h3-padrao {
            margin-bottom: 20px;
        }

        .content-group {
            margin-bottom: 40px;

            .sub-title {
                display: block;
                color: var(--azul-escuro);
                font-weight: bold;
                font-size: 34px;
                margin: 0;
            }

            .p-padrao {
                padding: 0;
            }

            .list-crencas {
                margin: 25px 0 25px 32px;

                li {
                    font-size: 34px;
                    color: var(--cinza-texto);
                    line-height: 60px;

                    &::marker {
                        color: var(--laranja);
                    }
                }

                &:last-child {
                    margin-top: 0;
                }
            }

            .text-highlight {
                font-size: 34px;
                font-weight: bold;
                color: var(--cinza-texto);
                margin-top: 20px;
            }
        }

        .footer-statement {
            margin-top: 60px;

            p {
                font-size: 34px;
                font-weight: bold;
                color: var(--azul-escuro);
                line-height: 40px;
            }

            strong {
                font-size: 34px;
                font-weight: 800;
                color: var(--azul-escuro);
                line-height: 40px;
            }
        }
    }
}

.section-faq {
    max-width: 85%;
    margin: 60px auto;

    .accordion-item {
        border: none;
        border-bottom: 1px solid #bcbec0;
        background: transparent;

        &:last-child {
            border-bottom: 2px solid #bcbec0;
        }
    }

    .accordion-button {
        padding: 20px 0;
        font-size: 34px;
        font-weight: bold;
        color: var(--azul-escuro);
        background-color: transparent !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;

        &::after {
            display: none;
        }

        &::before {
            content: "▶";
            color: var(--laranja);
            font-size: 20px;
            margin-right: 20px;
            transition: transform 0.3s ease;
        }

        &:not(.collapsed)::before {
            transform: rotate(90deg);
        }
    }

    .accordion-body {
        padding: 0 0 30px 40px;
        font-size: 28px;
        line-height: 36px;
        color: var(--cinza-texto);

        .quadro {
            width: 100%;
            border: 2px solid var(--cinza-texto);
            text-align: center;
            padding: 36px 20px;
            border-radius: 30px;
        }
    }
}

.section-fornecedores {
    background-color: var(--bg-gray-light);
}

.content-fornecedores,
.section-freela {
    max-width: 85%;
    margin: 100px auto;
    padding: 36px 0px;

    .content-flex {
        display: flex;
        align-items: center;
        gap: 60px;

        .image-box {
            flex: 1;

            img {
                width: 100%;
                border-radius: 40px;
                display: block;
            }
        }

        .text-box {
            flex: 1.5;

            .h3-padrao {
                margin-bottom: 20px;
            }
        }
    }
}

.section-freela {
    .content-flex {
        .text-box {
            .list-crencas {
                margin-top: 20px;

                li {
                    font-size: 34px;
                    color: var(--cinza-texto);
                    line-height: 60px;

                    &::marker {
                        color: var(--laranja);
                    }
                }
            }
        }
    }
}

.section-info-uteis {
    background-color: var(--bg-gray-light);
    padding: 80px 0;

    .container-info {
        max-width: 85%;
        margin: 0 auto;

        h2 {
            margin-bottom: 50px;
        }

        .infoUteisSwiper {
            padding-bottom: 60px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 40px;
            text-align: left;

            &:last-child {
                margin-bottom: 0;
            }

            .icon-box {
                background: var(--azul-escuro);
                min-width: 100px;
                height: 100px;
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;

                img {
                    width: 100%;
                    height: auto;
                    object-fit: contain;
                }
            }

            .info-text {
                h3 {
                    font-size: 34px;
                    font-weight: bold;
                    color: var(--azul-escuro);
                    line-height: 40px;
                    margin-bottom: 5px;
                }

                .p-padrao {
                    font-size: 28px;
                    line-height: 34px;
                    padding-top: 0;

                    strong {
                        color: var(--azul-escuro);
                        font-weight: bold;
                    }
                }
            }
        }

        .swiper-pagination-bullet {
            width: 25px;
            height: 25px;
            background: var(--azul-escuro);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--laranja) !important;
        }
    }
}

.section-contatos {
    max-width: 85%;
    margin: 60px auto;
}

.contatos-titulo {
    font-size: 40px;
    font-weight: bold;
    color: var(--azul-escuro);
    line-height: 48px;
    margin-bottom: 24px;
}

.contatos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    margin-top: 25px;
}

.contato-item {
    margin-bottom: 24px;

    strong {
        display: block;
        font-size: 34px;
        font-weight: bold;
        color: var(--azul-escuro);
        line-height: 36px;
    }

    p {
        font-size: 34px;
        color: var(--cinza-texto);
        line-height: 36px;
        margin: 0;
    }
}

.container-keep-in-mind {
    background-color: var(--bg-gray-light);
}

.section-keep-in-mind {
    max-width: 85%;
    margin: 60px auto 0px auto;
    padding: 41px 0px;
}

.keep-item .keep-titulo {
    font-size: 40px;
    font-weight: bold;
    color: var(--azul-escuro);
    line-height: 48px;
    margin-bottom: 24px;
}

.keep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    margin-top: 25px;
}

.keep-item {
    margin-bottom: 24px;

    strong {
        display: block;
        font-size: 34px;
        font-weight: bold;
        color: var(--azul-escuro);
        line-height: 36px;
    }

    p {
        font-size: 34px;
        color: var(--cinza-texto);
        line-height: 36px;
        margin: 0;
    }
}

.footer-redes {
    background-color: var(--azul-escuro);
    padding: 40px 20px;
    text-align: center;

    p {
        color: var(--white);
        font-size: 28px;
        font-weight: normal;
        margin-bottom: 20px;
    }

    .footer-icons {
        display: flex;
        justify-content: center;
        gap: 24px;

        a {
            color: var(--white);
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: opacity 0.3s ease;

            svg {
                width: 80px;
                height: 80px;
            }

            &:hover {
                opacity: 0.75;
            }
        }
    }
}

.main-logo-mobile {
    display: none;
}

@media screen and (max-width: 1282px) {
    .main-onboarding {
        .onboarding {
            div {
                margin-top: 40px;
                flex-direction: column;
            }
        }
    }
}

@media (max-width: 992px) {
    .section-para-voce .para-voce-container {
        flex-direction: column;
        text-align: center;
    }

    .section-historia {
        flex-direction: column;
        align-items: center;
    }

    .section-essencia {
        flex-direction: column;
        align-items: center;
    }

    .section-inspiracao {
        .container-inspiracao {
            flex-direction: column;
            text-align: center;

            .image-box {
                order: -1;
                width: 100%;
            }
        }
    }

    .section-expectativas {
        .expectativas-container {
            .expectativas-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
        }
    }

    .section-fornecedores,
    .section-freela {
        .content-flex {
            flex-direction: column;
            text-align: center;

            .image-box {
                order: -1;
                width: 100%;
                max-width: 500px;
            }
        }
    }

    .section-meaning {
        & .meaning-container {
            display: flex;
            flex-direction: column;
            align-items: center;

            .main-logo {
                display: none;
            }

            article {
                display: block;
                text-align: center;
            }
        }
    }

    .main-logo-mobile {
        display: block;
        width: 90%;
    }
}

@media (max-width: 768px) {

    .h2-padrao,
    .h3-padrao {
        font-size: 28px;
        line-height: 36px;
    }

    .p-padrao {
        font-size: 18px;
        line-height: 28px;
        padding-top: 8px;
    }

    .main-onboarding .onboarding h1 {
        font-size: 36px;
        line-height: 44px;
        padding: 0 16px;
    }

    .main-onboarding .onboarding div {
        margin-top: 32px;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .main-onboarding .onboarding div a {
        font-size: 22px;
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .header {
        height: auto;
        min-height: 280px;
        padding: 40px 20px;
        text-align: center;
    }

    .header img {
        width: 60%;
        max-width: 260px;
    }

    .header article {
        margin-top: 24px;
    }

    .header article h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .header article p {
        font-size: 18px;
        line-height: 26px;
    }

    .section-essencia {
        flex-direction: column;
        align-items: center;
        max-width: 90%;
        margin: 50px auto;
        gap: 30px;
        text-align: center;
    }

    .section-essencia article:nth-child(1) img {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto;
    }

    .section-essencia article:nth-child(2) {
        max-width: 100% !important;
    }

    .section-move {
        & .container-move {
            & .move-item {
                .move-text {
                    h3 {
                        font-size: 22px;
                    }

                    p {
                        font-size: 16px;
                        line-height: 29px;
                    }
                }
            }
        }
    }

    .section-logotipo {
        & .timeline-container {
            &::before {
                display: none;
            }
        }
    }

    .nav-buttons {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 12px;
    }

    .nav-buttons .btn-nav {
        width: auto;
        flex: 1 1 calc(50% - 8px);
        min-width: 120px;
        font-size: 16px;
        padding: 8px 12px;
    }

    .section-tabs-swiper {
        padding: 24px 16px;
        margin-bottom: 40px;
    }

    .section-valores {
        height: auto;
        min-height: unset;
        padding-bottom: 60px;
        margin-bottom: 20px;
    }

    .section-valores h2 {
        margin-bottom: 20px;
        padding: 0 16px;
    }

    .section-valores .swiper-slide {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .section-valores .value-item h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .section-valores .icon-box {
        width: 90px;
        height: 90px;
    }

    .section-valores .container-pagination {
        bottom: -60px;
    }

    .section-valores .swiper-pagination-bullet {
        width: 22px;
        height: 22px;
    }

    .section-move {
        padding: 60px 0;
    }

    .section-move .container-move {
        max-width: 90%;
    }

    .section-move .container-move .move-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .section-move .container-move .move-text h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .section-move .container-move .move-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .section-historia {
        flex-direction: column;
        max-width: 90%;
        gap: 30px;
        margin: 50px auto;
    }

    .section-historia article:nth-child(1) .title-orange {
        font-size: 46px;
        line-height: 48px;
    }

    .section-historia article:nth-child(1) .subtitle-blue {
        font-size: 20px;
    }

    .section-historia article:nth-child(1) .sub-title {
        font-size: 20px;
    }

    .section-historia article:nth-child(1) .content-text strong {
        font-size: 20px;
        line-height: 28px;
    }

    .section-historia .image-container {
        width: 100%;
    }

    .section-historia .image-container img {
        width: 100%;
        border-radius: 16px;
    }

    .section-logotipo {
        padding: 40px 0;
    }

    .section-logotipo h2 {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .section-logotipo .timeline-container {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        max-width: 100%;
        padding: 0 20px 20px;
        gap: 0;
        scrollbar-width: thin;
    }

    .section-logotipo .timeline-container .logo-item {
        flex: 0 0 120px;
        min-width: 120px;
    }

    .section-logotipo .timeline-container .logo-item .logo-wrapper {
        height: 80px;
    }

    .section-logotipo .timeline-container .year-wrapper span {
        font-size: 18px;
    }

    .section-logotipo .timeline-footer {
        font-size: 18px;
        line-height: 26px;
        padding: 0 20px;
    }

    .section-meaning {
        max-width: 90%;
        margin: 50px auto;
    }

    .section-meaning .meaning-container {
        margin-top: 30px;
    }

    .section-para-voce {
        max-width: 90%;
        margin: 50px auto;
    }

    .section-para-voce .para-voce-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-bottom: 60px;
    }

    .section-para-voce .para-voce-container .image-box img {
        max-width: 280px;
        margin: 0 auto;
    }

    .section-para-voce .para-voce-container .text-box h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .section-inspiracao {
        max-width: 90%;
        margin: 50px auto;
    }

    .section-inspiracao .container-inspiracao {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .section-inspiracao .container-inspiracao .image-box {
        width: 100%;
    }

    .section-futuro {
        padding: 50px 0;
        text-align: center;
    }

    .section-futuro .container-futuro {
        max-width: 90%;
        justify-content: center;
    }

    .section-futuro .container-futuro .text-box {
        max-width: 100%;
    }

    .section-futuro .container-futuro .text-box .h2-padrao {
        font-size: 26px;
        line-height: 34px;
    }

    .section-futuro .container-futuro .text-box p {
        font-size: 16px;
        line-height: 24px;
    }

    .section-crencas {
        max-width: 90%;
        margin: 50px auto;
    }

    .section-crencas .container-crencas .list-crencas li {
        font-size: 18px;
        line-height: 32px;
        padding-left: 28px;
    }

    .section-crencas .container-crencas .list-crencas li::before {
        font-size: 32px;
        top: -2px;
    }

    .section-expectativas {
        padding: 50px 0;
    }

    .section-expectativas .expectativas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-expectativas .expectativas-grid .item .num-outline {
        font-size: 54px;
    }

    .section-expectativas .expectativas-grid .item .text h3 {
        font-size: 20px;
    }

    .section-expectativas .swiper-pagination-bullet {
        width: 25px;
        height: 25px;
    }

    .section-para-voce {
        & .swiper-pagination {
            .swiper-pagination-bullet {
                width: 25px;
                height: 25px;
            }
        }
    }

    .section-hierarquia {
        padding: 50px 0;
    }

    .section-hierarquia .nav-buttons-grid {
        gap: 12px;
        row-gap: 12px;
        max-width: 100%;
        padding: 0 16px;
    }

    .section-hierarquia .nav-buttons-grid .btn-nav-2 {
        font-size: 16px;
        padding: 8px 14px;
        gap: 8px;
    }

    .section-hierarquia .nav-buttons-grid .btn-nav-2 img {
        width: 22px;
    }

    .section-hierarquia .quadrados-bg {
        display: none;
    }

    .section-trabalho {
        max-width: 90%;
        margin: 50px auto;
    }

    .section-trabalho .container-trabalho .title-orange {
        font-size: 44px;
        line-height: 50px;
    }

    .section-trabalho .container-trabalho .h3-padrao {
        font-size: 24px;
        line-height: 32px;
    }

    .section-trabalho .container-trabalho .content-group .sub-title {
        font-size: 20px;
    }

    .section-trabalho .container-trabalho .content-group .list-crencas li {
        font-size: 18px;
        line-height: 36px;
    }

    .section-trabalho .container-trabalho .content-group .text-highlight {
        font-size: 18px;
    }

    .section-trabalho .container-trabalho .footer-statement p,
    .section-trabalho .container-trabalho .footer-statement strong {
        font-size: 20px;
        line-height: 28px;
    }

    .section-faq {
        max-width: 90%;
    }

    .section-faq .accordion-button {
        font-size: 18px;
        line-height: 26px;
    }

    .section-faq .accordion-body {
        font-size: 16px;
        line-height: 24px;
    }

    .content-fornecedores,
    .section-freela {
        max-width: 90%;
        margin: 50px auto;
    }

    .section-fornecedores .content-flex,
    .section-freela .content-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .section-fornecedores .content-flex .image-box,
    .section-freela .content-flex .image-box {
        order: -1;
        width: 100%;
    }

    .section-fornecedores .content-flex .text-box .h3-padrao,
    .section-freela .content-flex .text-box .h3-padrao {
        font-size: 24px;
        line-height: 32px;
    }

    .section-freela .content-flex .text-box .list-crencas li {
        font-size: 18px;
        line-height: 36px;
    }

    .section-info-uteis {
        padding: 50px 0;
    }

    .section-info-uteis .container-info {
        max-width: 90%;
    }

    .section-info-uteis .container-info .info-item .info-text h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .section-info-uteis .container-info .info-item .info-text .p-padrao {
        font-size: 16px;
        line-height: 24px;
    }

    .section-contatos {
        max-width: 90%;
        margin: 40px auto;
    }

    .contatos-titulo {
        font-size: 24px;
        line-height: 32px;
    }

    .contatos-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contato-item strong {
        font-size: 20px;
        line-height: 28px;
    }

    .contato-item p {
        font-size: 18px;
        line-height: 26px;
    }

    .section-keep-in-mind {
        max-width: 90%;
        padding: 30px 0;
    }

    .keep-item .keep-titulo {
        font-size: 24px;
        line-height: 32px;
    }

    .keep-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .keep-item strong {
        font-size: 20px;
        line-height: 28px;
    }

    .keep-item p {
        font-size: 18px;
        line-height: 26px;
    }

    .footer-redes {
        padding: 30px 16px;
    }

    .footer-redes p {
        font-size: 18px;
    }

    .footer-redes .footer-icons a svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {

    .h2-padrao,
    .h3-padrao {
        font-size: 22px;
        line-height: 30px;
    }

    .p-padrao {
        font-size: 16px;
        line-height: 24px;
    }

    .main-onboarding .onboarding h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .main-onboarding .onboarding div a {
        font-size: 18px;
        border-radius: 10px;
    }

    .header img {
        width: 70%;
        max-width: 200px;
    }

    .header article h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .header article p {
        font-size: 15px;
        line-height: 22px;
    }

    .nav-buttons .btn-nav {
        flex: 1 1 100%;
        font-size: 15px;
    }

    .section-valores .value-item h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .section-historia article:nth-child(1) .title-orange {
        font-size: 36px;
        line-height: 40px;
    }

    .section-trabalho .container-trabalho .title-orange {
        font-size: 34px;
        line-height: 40px;
    }

    .section-hierarquia .nav-buttons-grid .btn-nav-2 {
        font-size: 14px;
        padding: 7px 10px;
    }

    .section-faq .accordion-button {
        font-size: 16px;
    }

    .contato-item strong,
    .keep-item strong {
        font-size: 17px;
    }

    .contato-item p,
    .keep-item p {
        font-size: 15px;
    }
}