
        /* =====================================================
                            VARIÁVEIS
        ===================================================== */

        :root {

            --primary: green;

            --primary-dark: green;

            --secondary: green;

            --dark: #101820;

            --text: #303840;

            --muted: #707982;

            --light: #f5f7f9;

            --white: #ffffff;

            --border: #e2e7eb;

        }


        /* =====================================================
                              RESET
        ===================================================== */

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        html {

            scroll-behavior: smooth;

        }


        body {

            font-family:
                "Inter",
                Arial,
                sans-serif;

            color:
                var(--text);

            background:
                #ffffff;

            overflow-x:
                hidden;

        }


        a {

            text-decoration: none;

        }


        button {

            font-family: inherit;

        }


        img {

            max-width: 100%;

        }


        .container {

            width:
                min(
                    1200px,
                    calc(100% - 40px)
                );

            margin:
                0 auto;

        }


        /* =====================================================
                              HEADER
        ===================================================== */

        .main-header {

            position:
                absolute;

            top:
                0;

            left:
                0;

            width:
                100%;

            z-index:
                1000;

            background:
                rgba(
                    255,
                    255,
                    255,
                    .96
                );

            border-bottom:
                1px solid
                rgba(
                    0,
                    0,
                    0,
                    .05
                );

        }


        .header-container {

            height:
                82px;

            display:
                flex;

            align-items:
                center;

            justify-content:
                space-between;

        }


        /* =====================================================
                              LOGO
        ===================================================== */

        .brand {

            display:
                flex;

            flex-direction:
                column;

            color:
                var(--dark);

        }


        .brand-name {

            font-size:
                21px;

            font-weight:
                800;

            letter-spacing:
                2px;

            line-height:
                1;

        }


        .brand-subtitle {

            margin-top:
                5px;

            color:
                #7c858d;

            font-size:
                7px;

            font-weight:
                600;

            letter-spacing:
                1.5px;

        }


        /* =====================================================
                              MENU
        ===================================================== */

        .main-nav {

            display:
                flex;

            align-items:
                center;

            gap:
                34px;

        }


        .main-nav a {

            position:
                relative;

            color:
                #4f5860;

            font-size:
                12px;

            font-weight:
                600;

            transition:
                .3s;

        }


        .main-nav a::after {

            content:
                "";

            position:
                absolute;

            left:
                0;

            bottom:
                -8px;

            width:
                0;

            height:
                2px;

            background:
                var(--primary);

            transition:
                .3s;

        }


        .main-nav a:hover {

            color:
                var(--primary);

        }


        .main-nav a:hover::after {

            width:
                100%;

        }


        /* =====================================================
                        ÁREA DO CLIENTE
        ===================================================== */

        .client-button {

            display:
                inline-flex;

            align-items:
                center;

            gap:
                9px;

            padding:
                12px 19px;

            border:
                1px solid
                var(--primary);

            color:
                var(--primary);

            font-size:
                11px;

            font-weight:
                700;

            transition:
                .3s;

        }


        .client-button:hover {

            background:
                var(--primary);

            color:
                #ffffff;

        }


        /* =====================================================
                         MENU MOBILE
        ===================================================== */

        .menu-button {

            display:
                none;

            width:
                42px;

            height:
                42px;

            border:
                1px solid
                var(--border);

            background:
                #ffffff;

            color:
                var(--dark);

            font-size:
                21px;

            cursor:
                pointer;

        }


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

        .hero-stellantis {

            position:
                relative;

            min-height:
                720px;

            display:
                flex;

            align-items:
                center;

            overflow:
                hidden;

            background:
                #eef3f7;

        }


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

        .hero-background {

            position:
                absolute;

            inset:
                0;

            background:
                linear-gradient(
                    105deg,
                    #eef3f7 0%,
                    #f7f9fa 48%,
                    #dce6ed 100%
                );

        }


        .hero-background::before {

            content:
                "";

            position:
                absolute;

            right:
                -200px;

            top:
                -300px;

            width:
                750px;

            height:
                750px;

            border-radius:
                50%;

            background:
                rgba(
                    0,
                    87,
                    184,
                    .06
                );

        }


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

        .hero-container {

            position:
                relative;

            z-index:
                2;

            display:
                grid;

            grid-template-columns:
                48% 52%;

            align-items:
                center;

            min-height:
                720px;

        }


        /* =====================================================
                        CONTEÚDO HERO
        ===================================================== */

        .hero-content {

            padding-top:
                70px;

            position:
                relative;

            z-index:
                5;

        }


        .hero-tag {

            display:
                inline-flex;

            align-items:
                center;

            gap:
                9px;

            margin-bottom:
                20px;

            color:
                var(--primary);

            font-size:
                10px;

            font-weight:
                800;

            letter-spacing:
                1.8px;

        }


        .hero-tag::before {

            content:
                "";

            width:
                28px;

            height:
                2px;

            background:
                var(--primary);

        }


        .hero-content h1 {

            max-width:
                600px;

            margin-bottom:
                23px;

            color:
                var(--dark);

            font-size:
                clamp(
                    43px,
                    5vw,
                    67px
                );

            line-height:
                1.05;

            letter-spacing:
                -3px;

            font-weight:
                400;

        }


        .hero-content h1 strong {

            display:
                block;

            color:
                var(--primary);

            font-weight:
                800;

        }


        .hero-content p {

            max-width:
                490px;

            margin-bottom:
                32px;

            color:
                #68737d;

            font-size:
                14px;

            line-height:
                1.8;

        }


        /* =====================================================
                         BOTÕES HERO
        ===================================================== */

        .hero-buttons {

            display:
                flex;

            align-items:
                center;

            gap:
                12px;

            flex-wrap:
                wrap;

        }


        .btn-primary {

            display:
                inline-flex;

            align-items:
                center;

            gap:
                10px;

            padding:
                16px 23px;

            background:
                var(--primary);

            color:
                #ffffff;

            font-size:
                11px;

            font-weight:
                700;

            transition:
                .3s;

        }


        .btn-primary:hover {

            background:
                var(--primary-dark);

            gap:
                14px;

        }


        .btn-outline {

            display:
                inline-flex;

            align-items:
                center;

            padding:
                15px 22px;

            border:
                1px solid
                #cbd3d9;

            color:
                #4c565e;

            font-size:
                11px;

            font-weight:
                600;

            background:
                rgba(
                    255,
                    255,
                    255,
                    .6
                );

            transition:
                .3s;

        }


        .btn-outline:hover {

            border-color:
                var(--primary);

            color:
                var(--primary);

            background:
                #ffffff;

        }


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

        .hero-image-area {

            position:
                relative;

            height:
                100%;

            min-height:
                620px;

            display:
                flex;

            align-items:
                center;

            justify-content:
                center;

        }


        .hero-car {

            position:
                relative;

            z-index:
                3;

            width:
                720px;

            height:
                500px;

            overflow:
                hidden;

            transform:
                translateX(30px);

        }


        .hero-car img {

            width:
                100%;

            height:
                100%;

            display:
                block;

            object-fit:
                cover;

            object-position:
                center;

            mix-blend-mode:
                multiply;

        }


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

        .hero-glow {

            position:
                absolute;

            width:
                500px;

            height:
                500px;

            border-radius:
                50%;

            background:
                rgba(
                    0,
                    87,
                    184,
                    .08
                );

            filter:
                blur(5px);

        }


        /* =====================================================
                          SCROLL
        ===================================================== */

        .hero-scroll {

            position:
                absolute;

            z-index:
                5;

            bottom:
                25px;

            left:
                50%;

            transform:
                translateX(-50%);

            display:
                flex;

            align-items:
                center;

            gap:
                10px;

            color:
                #7c8790;

            font-size:
                9px;

            font-weight:
                600;

            letter-spacing:
                1px;

            text-transform:
                uppercase;

        }


        .hero-scroll i {

            font-size:
                13px;

            animation:
                heroScroll 1.5s infinite;

        }


        @keyframes heroScroll {

            0%,
            100% {

                transform:
                    translateY(0);

            }

            50% {

                transform:
                    translateY(5px);

            }

        }


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

        @media(max-width: 950px) {

            .main-nav {

                display:
                    none;

            }


            .menu-button {

                display:
                    flex;

                align-items:
                    center;

                justify-content:
                    center;

            }


            .client-button {

                margin-left:
                    auto;

                margin-right:
                    10px;

            }


            .hero-container {

                grid-template-columns:
                    1fr;

                padding-top:
                    100px;

                padding-bottom:
                    70px;

            }


            .hero-content {

                padding-top:
                    40px;

            }


            .hero-image-area {

                min-height:
                    350px;

                margin-top:
                    -30px;

            }


            .hero-car {

                width:
                    min(
                        700px,
                        100vw
                    );

                height:
                    400px;

                transform:
                    none;

            }

        }


        @media(max-width: 600px) {

            .container {

                width:
                    calc(
                        100% - 30px
                    );

            }


            .header-container {

                height:
                    72px;

            }


            .brand-name {

                font-size:
                    18px;

            }


            .client-button {

                display:
                    none;

            }


            .hero-stellantis {

                min-height:
                    760px;

            }


            .hero-container {

                min-height:
                    760px;

                padding-top:
                    80px;

            }


            .hero-content h1 {

                font-size:
                    42px;

                letter-spacing:
                    -2px;

            }


            .hero-content p {

                font-size:
                    13px;

            }


            .hero-buttons {

                flex-direction:
                    column;

                align-items:
                    stretch;

            }


            .btn-primary,
            .btn-outline {

                width:
                    100%;

                justify-content:
                    center;

            }


            .hero-image-area {

                min-height:
                    260px;

            }


            .hero-car {

                width:
                    100%;

                height:
                    270px;

            }


            .hero-scroll {

                display:
                    none;

            }

        }



/* =====================================================
                         SOBRE
===================================================== */

.about-section {

    position:
        relative;

    padding:
        115px 0;

    background:
        #f5f7f9;

    overflow:
        hidden;

}


/* =====================================================
                        GRID
===================================================== */

.about-grid {

    display:
        grid;

    grid-template-columns:
        48% 52%;

    align-items:
        center;

    gap:
        80px;

}


/* =====================================================
                        IMAGEM
===================================================== */

.about-image {

    position:
        relative;

    min-height:
        570px;

}


.about-image-main {

    position:
        relative;

    width:
        100%;

    height:
        570px;

    overflow:
        hidden;

    background:
        #dce4e9;

}


.about-image-main::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.18)
        );

}


.about-image-main img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        transform .8s ease;

}


.about-image:hover
.about-image-main img {

    transform:
        scale(1.04);

}


/* =====================================================
                    CARD FLUTUANTE
===================================================== */

.about-floating-card {

    position:
        absolute;

    right:
        -30px;

    bottom:
        35px;

    z-index:
        5;

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    min-width:
        220px;

    padding:
        18px 20px;

    background:
        #ffffff;

    box-shadow:
        0 18px 45px
        rgba(
            16,
            24,
            32,
            .14
        );

}


.about-floating-icon {

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #eaf3fb;

    color:
        var(--primary);

    font-size:
        19px;

}


.about-floating-card strong {

    display:
        block;

    margin-bottom:
        4px;

    color:
        var(--dark);

    font-size:
        10px;

    font-weight:
        800;

}


.about-floating-card span {

    display:
        block;

    color:
        #89939b;

    font-size:
        9px;

}


/* =====================================================
                      CONTEÚDO
===================================================== */

.about-content {

    padding:
        10px 0;

}


.about-content h2 {

    max-width:
        570px;

    margin-bottom:
        23px;

    color:
        var(--dark);

    font-size:
        clamp(
            36px,
            4vw,
            53px
        );

    line-height:
        1.08;

    font-weight:
        400;

    letter-spacing:
        -2.5px;

}


.about-content h2 strong {

    display:
        block;

    color:
        var(--primary);

    font-weight:
        800;

}


.about-content p {

    max-width:
        540px;

    margin-bottom:
        15px;

    color:
        #68737d;

    font-size:
        12px;

    line-height:
        1.85;

}


.about-content .about-lead {

    color:
        #414b53;

    font-size:
        14px;

    line-height:
        1.7;

}


/* =====================================================
                       BENEFÍCIOS
===================================================== */

.about-benefits {

    display:
        flex;

    flex-direction:
        column;

    gap:
        17px;

    margin:
        30px 0;

}


.about-benefit {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.benefit-icon {

    flex-shrink:
        0;

    width:
        39px;

    height:
        39px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #e8f1f8;

    color:
        var(--primary);

    font-size:
        15px;

}


.about-benefit strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        var(--dark);

    font-size:
        10px;

    font-weight:
        800;

}


.about-benefit span {

    display:
        block;

    color:
        #89939b;

    font-size:
        9px;

}


/* =====================================================
                       BOTÃO
===================================================== */

.about-button {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        15px 21px;

    background:
        var(--dark);

    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        700;

    transition:
        .3s;

}


.about-button i {

    transition:
        .3s;

}


.about-button:hover {

    background:
        var(--primary);

}


.about-button:hover i {

    transform:
        translateX(4px);

}


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

@media(max-width: 950px) {

    .about-grid {

        grid-template-columns:
            1fr;

        gap:
            55px;

    }


    .about-image {

        max-width:
            700px;

        width:
            100%;

        margin:
            0 auto;

    }


    .about-content {

        max-width:
            700px;

    }

}


@media(max-width: 600px) {

    .about-section {

        padding:
            75px 0;

    }


    .about-grid {

        gap:
            40px;

    }


    .about-image {

        min-height:
            420px;

    }


    .about-image-main {

        height:
            420px;

    }


    .about-floating-card {

        right:
            12px;

        bottom:
            20px;

        min-width:
            200px;

        padding:
            14px 16px;

    }


    .about-content h2 {

        font-size:
            37px;

        letter-spacing:
            -1.8px;

    }


    .about-content .about-lead {

        font-size:
            13px;

    }


    .about-content p {

        font-size:
            11px;

    }

}

/* =====================================================
                       SERVIÇOS
===================================================== */

.services-section {

    position:
        relative;

    padding:
        115px 0;

    background:
        #ffffff;

}


/* =====================================================
                     CABEÇALHO
===================================================== */

.services-header {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        60px;

    margin-bottom:
        48px;

}


.services-header h2 {

    max-width:
        650px;

    color:
        var(--dark);

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    line-height:
        1.08;

    font-weight:
        400;

    letter-spacing:
        -2.5px;

}


.services-header h2 strong {

    color:
        var(--primary);

    font-weight:
        800;

}


.services-header > p {

    max-width:
        330px;

    margin-bottom:
        4px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.8;

}


/* =====================================================
                     GRID
===================================================== */

.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

}


/* =====================================================
                     CARD
===================================================== */

.service-card {

    position:
        relative;

    min-height:
        405px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        30px;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    overflow:
        hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.service-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        0;

    width:
        100%;

    height:
        4px;

    background:
        var(--primary);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .4s ease;

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(
            0,
            87,
            184,
            .25
        );

    box-shadow:
        0 22px 50px
        rgba(
            16,
            24,
            32,
            .10
        );

}


.service-card:hover::before {

    transform:
        scaleX(1);

}


/* =====================================================
                  CARD DESTACADO
===================================================== */

.service-card.service-featured {

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-dark)
        );

    border-color:
        var(--primary);

    color:
        #ffffff;

}


.service-card.service-featured::before {

    background:
        #ffffff;

}


.service-featured .service-card-number {

    color:
        rgba(
            255,
            255,
            255,
            .45
        );

}


.service-featured .service-icon {

    background:
        rgba(
            255,
            255,
            255,
            .14
        );

    color:
        #ffffff;

}


.service-featured .service-label {

    color:
        rgba(
            255,
            255,
            255,
            .65
        );

}


.service-featured .service-content p {

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

}


.service-featured .service-link {

    border-color:
        rgba(
            255,
            255,
            255,
            .18
        );

    color:
        #ffffff;

}


/* =====================================================
                       NÚMERO
===================================================== */

.service-card-number {

    position:
        absolute;

    top:
        25px;

    right:
        28px;

    color:
        #c4cbd0;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1px;

}


/* =====================================================
                        ÍCONE
===================================================== */

.service-icon {

    width:
        60px;

    height:
        60px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        42px;

    background:
        #edf4fa;

    color:
        var(--primary);

    font-size:
        23px;

    transition:
        transform .35s ease,
        background .35s ease;

}


.service-card:hover .service-icon {

    transform:
        translateY(-4px)
        rotate(-3deg);

}


.service-card:not(.service-featured):hover
.service-icon {

    background:
        var(--primary);

    color:
        #ffffff;

}


/* =====================================================
                      CONTEÚDO
===================================================== */

.service-label {

    display:
        block;

    margin-bottom:
        10px;

    color:
        #89939b;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1.6px;

}


.service-content h3 {

    margin-bottom:
        15px;

    color:
        inherit;

    font-size:
        22px;

    line-height:
        1.15;

    font-weight:
        700;

    letter-spacing:
        -.7px;

}


.service-content p {

    max-width:
        310px;

    color:
        var(--muted);

    font-size:
        11px;

    line-height:
        1.8;

}


/* =====================================================
                        LINK
===================================================== */

.service-link {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    margin-top:
        auto;

    padding-top:
        20px;

    border-top:
        1px solid
        var(--border);

    color:
        var(--primary);

    font-size:
        10px;

    font-weight:
        800;

}


.service-link i {

    font-size:
        14px;

    transition:
        transform .3s ease;

}


.service-card:hover
.service-link i {

    transform:
        translate(
            4px,
            -4px
        );

}


/* =====================================================
                    BARRA INFORMATIVA
===================================================== */

.services-info {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    margin-top:
        35px;

    padding:
        20px 24px;

    border:
        1px solid
        var(--border);

    background:
        #f7f9fa;

}


.services-info-icon {

    flex-shrink:
        0;

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #eaf3fa;

    color:
        var(--primary);

    font-size:
        17px;

}


.services-info strong {

    display:
        block;

    margin-bottom:
        4px;

    color:
        var(--dark);

    font-size:
        10px;

    font-weight:
        800;

}


.services-info p {

    margin:
        0;

    color:
        var(--muted);

    font-size:
        9px;

    line-height:
        1.5;

}


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

@media(max-width: 900px) {

    .services-header {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;

    }


    .services-header > p {

        max-width:
            550px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            350px;

    }

}


@media(max-width: 600px) {

    .services-section {

        padding:
            75px 0;

    }


    .services-header {

        margin-bottom:
            35px;

    }


    .services-header h2 {

        font-size:
            37px;

        letter-spacing:
            -1.7px;

    }


    .services-card {

        min-height:
            330px;

    }


    .service-card {

        min-height:
            340px;

        padding:
            25px;

    }


    .service-icon {

        margin-bottom:
            35px;

    }


    .services-info {

        align-items:
            flex-start;

        padding:
            18px;

    }

}

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

.cta-section {

    position: relative;

    padding: 110px 0;

    background: #f5f7f9;

}


.cta-box {

    position: relative;

    display: grid;

    grid-template-columns:
        1.6fr .7fr;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

}


/* =====================================================
                    CONTEÚDO CTA
===================================================== */

.cta-content {

    position: relative;

    z-index: 2;

    padding: 70px;

}


.cta-content::before {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    left: -200px;

    bottom: -280px;

    background:
        rgba(
            255,
            255,
            255,
            .05
        );

}


.cta-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color:
        rgba(
            255,
            255,
            255,
            .65
        );

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.cta-eyebrow::before {

    content: "";

    width: 28px;

    height: 2px;

    background: #ffffff;

}


.cta-content h2 {

    max-width: 650px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size:
        clamp(
            38px,
            5vw,
            57px
        );

    line-height: 1.05;

    letter-spacing: -2.5px;

    font-weight: 400;

}


.cta-content h2 strong {

    display: block;

    font-weight: 800;

}


.cta-content > p {

    max-width: 560px;

    margin-bottom: 30px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 12px;

    line-height: 1.8;

}


/* =====================================================
                    BOTÕES CTA
===================================================== */

.cta-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


.cta-button-primary,
.cta-button-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 22px;

    font-size: 10px;

    font-weight: 800;

    transition: .3s;

}


.cta-button-primary {

    background: #ffffff;

    color: var(--primary);

}


.cta-button-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(
            0,
            0,
            0,
            .15
        );

}


.cta-button-primary i {

    font-size: 17px;

}


.cta-button-secondary {

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .35
        );

    color: #ffffff;

}


.cta-button-secondary:hover {

    background:
        rgba(
            255,
            255,
            255,
            .10
        );

    border-color: #ffffff;

}


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

.cta-side {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px 45px;

    background:
        rgba(
            0,
            0,
            0,
            .12
        );

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );

}


.cta-side-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    background:
        rgba(
            255,
            255,
            255,
            .12
        );

    color: #ffffff;

    font-size: 25px;

}


.cta-side > span {

    margin-bottom: 10px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.cta-side > strong {

    margin-bottom: 15px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.25;

}


.cta-side > p {

    max-width: 230px;

    color:
        rgba(
            255,
            255,
            255,
            .60
        );

    font-size: 10px;

    line-height: 1.7;

}


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

@media(max-width: 850px) {

    .cta-box {

        grid-template-columns: 1fr;

    }


    .cta-side {

        border-left: none;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                .12
            );

    }

}


@media(max-width: 600px) {

    .cta-section {

        padding: 70px 0;

    }


    .cta-content {

        padding: 45px 25px;

    }


    .cta-content h2 {

        font-size: 37px;

        letter-spacing: -1.8px;

    }


    .cta-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .cta-button-primary,
    .cta-button-secondary {

        width: 100%;

    }


    .cta-side {

        padding: 40px 25px;

    }

}

/* =====================================================
                  DÚVIDAS FREQUENTES
===================================================== */

.faq-section {

    padding: 115px 0;

    background: #ffffff;

}


.faq-grid {

    display: grid;

    grid-template-columns:
        38% 62%;

    gap: 90px;

    align-items: flex-start;

}


/* =====================================================
                      INTRODUÇÃO
===================================================== */

.faq-intro {

    position: sticky;

    top: 120px;

}


.faq-intro h2 {

    max-width: 430px;

    margin-bottom: 22px;

    color: var(--dark);

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -2.5px;

}


.faq-intro h2 strong {

    display: block;

    color: var(--primary);

    font-weight: 800;

}


.faq-intro > p {

    max-width: 400px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;

}


/* =====================================================
                      BOTÃO
===================================================== */

.faq-contact-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 15px 20px;

    background: var(--dark);

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    transition: .3s;

}


.faq-contact-button i {

    font-size: 16px;

}


.faq-contact-button:hover {

    background: var(--primary);

    transform: translateY(-2px);

}


/* =====================================================
                       LISTA FAQ
===================================================== */

.faq-list {

    border-top:
        1px solid
        var(--border);

}


.faq-item {

    border-bottom:
        1px solid
        var(--border);

}


/* =====================================================
                       PERGUNTA
===================================================== */

.faq-question {

    width: 100%;

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 24px 5px;

    border: 0;

    background: transparent;

    color: var(--dark);

    text-align: left;

    cursor: pointer;

}


.faq-question span {

    font-size: 14px;

    font-weight: 700;

    line-height: 1.4;

}


.faq-question i {

    flex-shrink: 0;

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f1f5f8;

    color: var(--primary);

    font-size: 14px;

    transition: .3s;

}


/* =====================================================
                       RESPOSTA
===================================================== */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .4s ease,
        opacity .3s ease;

}


.faq-answer p {

    max-width: 650px;

    padding:
        0 60px 25px 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


/* =====================================================
                    FAQ ABERTO
===================================================== */

.faq-item.active
.faq-answer {

    max-height: 250px;

    opacity: 1;

}


.faq-item.active
.faq-question {

    color: var(--primary);

}


.faq-item.active
.faq-question i {

    transform: rotate(45deg);

    background: var(--primary);

    color: #ffffff;

}


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

@media(max-width: 900px) {

    .faq-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .faq-intro {

        position: static;

    }

}


@media(max-width: 600px) {

    .faq-section {

        padding: 75px 0;

    }


    .faq-intro h2 {

        font-size: 37px;

        letter-spacing: -1.8px;

    }


    .faq-question {

        min-height: 75px;

        padding: 20px 0;

    }


    .faq-question span {

        font-size: 12px;

    }


    .faq-answer p {

        padding:
            0 45px 22px 0;

        font-size: 10px;

    }

}

/* =====================================================
                        FOOTER
===================================================== */

.main-footer {

    padding: 80px 0 0;

    background: #101820;

    color: #ffffff;

}


/* =====================================================
                     GRID FOOTER
===================================================== */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 65px;

}


/* =====================================================
                         MARCA
===================================================== */

.footer-logo {

    display: inline-flex;

    flex-direction: column;

    margin-bottom: 22px;

}


.footer-logo-name {

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1;

}


.footer-logo-subtitle {

    margin-top: 5px;

    color: rgba(255,255,255,.45);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.5px;

}


.footer-brand > p {

    max-width: 290px;

    color: rgba(255,255,255,.48);

    font-size: 10px;

    line-height: 1.8;

}


/* =====================================================
                    COLUNAS
===================================================== */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column > strong {

    position: relative;

    margin-bottom: 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

}


.footer-column > strong::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 25px;

    height: 2px;

    background: var(--primary);

}


.footer-column > a {

    margin-bottom: 13px;

    color: rgba(255,255,255,.52);

    font-size: 9px;

    transition: .3s;

}


.footer-column > a:hover {

    color: #ffffff;

    transform: translateX(3px);

}


/* =====================================================
                    ATENDIMENTO
===================================================== */

.footer-contact > p {

    max-width: 220px;

    margin-bottom: 18px;

    color: rgba(255,255,255,.50);

    font-size: 9px;

    line-height: 1.7;

}


.footer-column .footer-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    padding: 12px 15px;

    border: 1px solid rgba(255,255,255,.15);

    color: #ffffff;

    font-weight: 700;

}


.footer-column .footer-whatsapp:hover {

    background: var(--primary);

    border-color: var(--primary);

    transform: none;

}


.footer-whatsapp i {

    font-size: 15px;

}


/* =====================================================
                    PARTE INFERIOR
===================================================== */

.footer-bottom {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255,255,255,.08);

}


.footer-bottom p {

    color: rgba(255,255,255,.35);

    font-size: 8px;

}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 25px;

}


.footer-bottom-links a {

    color: rgba(255,255,255,.35);

    font-size: 8px;

    transition: .3s;

}


.footer-bottom-links a:hover {

    color: #ffffff;

}


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

@media(max-width: 900px) {

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 50px;

    }

}


@media(max-width: 600px) {

    .main-footer {

        padding-top: 60px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 50px;

    }


    .footer-bottom {

        padding: 25px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-bottom-links {

        flex-wrap: wrap;

        gap: 15px;

    }

}

