:root{
    --background-color-orange: #F48D02;
    --background-color-white: #fff;
    --color-text: rgba(29, 29, 27, 0.50);
    --color-text-2: rgba(29, 29, 27, 0.50);
    --color-primary: #F48D02;
    --color-white: #fff;
    --color-cream: #FCE2C0;
    --standart-font-size: 13px;
    --primary-font: 'Inter Tight';
    --alternate-font: 'SPBLUNT';
    /*--color-subtitle: rgba(0, 0, 0, 0.30);*/
    --color-subtitle: rgba(29, 29, 27, 0.50);
}

html, body{
    padding: 0;
    margin: 0;
}

body{
    background-color: #F0F4FA;
    font-family: 'Lexend';

    &.white{
        background-color: #fff;
    }
}

.custom_container2{
    max-width: 1650px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.btn1{
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    background-color: #F48D02;
    color: #FFFFFF;
    border: 1px solid transparent;
}

.btn2{
    padding: 20px 50px;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #FFFFFF;
    background: #523D83;
    border: 1px solid #523D83;
    border-radius: 64px;
}

.btn3{
    padding: 20px 45px;
    border: 1px solid #F48D02;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    background-color: transparent;
    color: #F48D02;
}

.btn4{
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    background-color: #E6E4FF;
    color: #523D83;
    border: 1px solid transparent;
}


@media (min-width: 768px){
    .custom_container {
        max-width: 750px;
    }
}

@media (min-width: 992px){
    .custom_container {
        max-width: 970px;
    }
}


@media (min-width: 1200px){
    .custom_container {
        max-width: 1155px;
    }
}


@media (min-width: 1300px){
    .custom_container {
        max-width: 1175px;
    }
}

@media (min-width: 1400px){
    .custom_container {
        max-width: 1275px;
    }
}

@media (min-width: 1500px){
    .custom_container {
        max-width: 1375px;
    }
}

@media (min-width: 1600px){
    .custom_container {
        max-width: 1475px;
    }
}

.custom_container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}



a{
    color: inherit;
    text-decoration: none;

    &.link{
        font-family: 'DM Sans';
        font-weight: 400;
        font-size: 11px;
        line-height: 24px;
        text-decoration-line: underline;
        color: #F48D02;

        &.purple{
            font-size: 16px;
            color: #523D83;
        }
    }
}

img{
    max-width: 100%;
}

.color-orange{
    color: #F48D02;
}

.hidden{
    display: none;
}

.form-generic{
    .field-holder{
        background: #FFFFFF;
        border-radius: 44px;
        padding: 15px 40px;
        position: relative;

        &.readonly{
            background: rgba(255, 255, 255, 0.5);

            &:after{
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                background-color: transparent;
                width: 100%;
                height: 100%;
            }
        }

        label{
            font-weight: 400;
            font-size: 15px;
            line-height: 26px;
            color: #523D83;
            display: block;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"],
        textarea{
            background-color: transparent;
            outline: none;
            border: none;
            width: 100%;
        }

        textarea{
            min-height: 120px;
            resize: vertical;
        }

        select{
            background-color: transparent;
            outline: none;
            border: none;
            width: 100%;
        }

        .intl-tel-input .flag-dropdown{
            z-index: 4;
            top: 0px;
            left: 0px;
        }

    }

    .rgpd_auth_checkbox{
        position: relative;
        display: inline-block;

        label{
            font-weight: 400;
            font-size: 11px;
            line-height: 26px;
            color: #523D83;
            cursor: pointer;
        }

        input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            margin-left: 30px;
            margin-top: 0;
            margin-bottom: 0;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        input:checked ~ .checkmark:after {
            display: block;
        }

        .checkmark:before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #F7F7FB;
            border: 1px solid #523D83;
            border-radius: 64px;
            left: 0;
            top: 3px;
        }

        .checkmark:after {
            left: 5px;
            top: 8px;
            position: absolute;
            width: 10px;
            height: 10px;
            background: #523D83;
            border: 1px solid #523D83;
            border-radius: 64px;
        }

    }

    input#indicativo_telefonico,
    input#indicativo_telefonico_reserva{
        background-color: transparent;
        position: absolute;
        z-index: 3;
        width: 95px;
        border: none;
    }

    input#contacto_telefonico,
    input#contacto_telefonico_reserva{
        padding-left: 90px !important;
    }

    button.submit-btn{
        margin-top: 40px;
        padding: 20px 50px;
        font-weight: 400;
        font-size: 17px;
        line-height: 30px;
        color: #FFFFFF;
        background: #523D83;
        border: 1px solid #523D83;
        border-radius: 64px;
    }
}


/*==================================================================================================*/
/*ANIMACOES*/
/*==================================================================================================*/

.rodar{
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);

    transition: .8s all .5s ease-in-out;
    -moz-transition: .8s all .5s ease-in-out;
    -webkit-transition: .8s all .5s ease-in-out;

}
.rodar.appear{
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}


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

.topbar{
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    padding-top: 40px;
    background-color: #F0F4FA;
    z-index: 99;


    .topbar_blocks {
        display: flex;

        .menu_holder {
            width: Calc(100% - 285px);
            background-color: var(--background-color-orange);
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
            padding: 50px 90px;
            display: flex;
            align-items: center;
            min-height: 150px;
            position: relative;

            @media (max-width: 1400px){
                &{
                    padding: 50px 40px;
                }
            }

            @media (max-width: 1099px){
                & {
                    padding: 50px 30px;
                }
            }

            .navbar-header{
                width: 230px;

                @media (max-width: 1199px){
                    &{
                        width: 170px;
                    }
                }

            }

            .menu-toggler{
                display: none;
            }

            .menu{
                width: Calc( 100% - 230px );

                @media (max-width: 1199px){
                    &{
                        width: Calc( 100% - 170px );
                    }
                }

                .menu-nav{
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    text-align: center;

                    li{
                        display: inline-block;
                        margin: 0 28px;

                        font-style: normal;
                        font-weight: 800;
                        font-size: 16px;
                        line-height: 24px;
                        color: #FFFFFF;

                        @media (max-width: 1400px){
                            &{
                                margin: 0 20px;
                            }
                        }

                        @media (max-width: 1199px){
                            &{
                                font-size: 14px;
                                margin: 0 17px;
                            }
                        }

                        @media (max-width: 1099px){
                            & {
                                font-size: 14px;
                                margin: 0 11px;
                            }
                        }

                    }
                }
            }

        }

        .btn_holder {
            width: 365px;
            position: relative;
            display: flex;

            &:after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                background-color: var(--background-color-orange);
                top: 0;
                left: 0;
            }

            .bg_helper {
                background-color: #F0F4FA;
                position: relative;
                z-index: 2;
                height: 100%;
                width: 100%;
                border-bottom-left-radius: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;

                button{
                    padding: 25px 35px;
                    border: none;
                    background: #523D83;
                    backdrop-filter: blur(10px);
                    border-radius: 999px;
                    font-family: 'Lexend';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 24px;
                    color: #FFFFFF;

                    span{
                        display: inline-block;
                        margin-left: 10px;
                    }
                }
            }
        }
    }

}

body.white{
    .topbar{
        background-color: #fff;

        .btn_holder{
            .bg_helper{
                background-color: #fff;
            }
        }
    }
}

header.grey{
    .topbar {
        .topbar_blocks {
            .menu_holder {
                background-color: #F5F7FA;
                .menu {
                    .menu-nav {
                        li {
                            color: #050B20;
                        }
                    }
                }
            }

            .btn_holder {
                &:after {
                    background-color: #F5F7FA;
                }
            }
        }
    }

}

header.purple{
    .topbar {
        .topbar_blocks {
            .menu_holder {
                background-color: #523D83;
            }

            .btn_holder {
                &:after {
                    background-color: #523D83;
                }
            }
        }
    }

}

header.white{
    .topbar {
        .topbar_blocks {
            .menu_holder {
                background-color: #fff;
                .menu {
                    .menu-nav {
                        li {
                            color: #050B20;
                        }
                    }
                }
            }

            .btn_holder {
                &:after {
                    background-color: #fff;
                }
            }
        }
    }

}

@media (max-width: 991px){

    .topbar {
        .topbar_blocks {
            .menu_holder {

                .menu {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    z-index: 2;
                    width: 100%;
                    background-color: var(--background-color-orange);
                    border-bottom-right-radius: 40px;
                    border-bottom-left-radius: 40px;
                    padding-bottom: 10px;

                    .menu-nav{
                        text-align: left;
                        padding: 0 15px;

                        li{
                            display: block;
                            margin: 10px 0;
                        }
                    }
                }

                .menu-toggler {
                    display: inline-block;
                    position: absolute;
                    right: 25px;
                    top: Calc(50% - 12px);
                    width: 35px;
                    padding: 0;
                    border: none;
                    background-color: transparent;

                    #nav-icon1{
                        width: 35px;
                        height: 25px;
                        position: relative;
                        margin: 0 auto;
                        -webkit-transform: rotate(0deg);
                        -moz-transform: rotate(0deg);
                        -o-transform: rotate(0deg);
                        transform: rotate(0deg);
                        -webkit-transition: .5s ease-in-out;
                        -moz-transition: .5s ease-in-out;
                        -o-transition: .5s ease-in-out;
                        transition: .5s ease-in-out;
                        cursor: pointer;
                    }

                    #nav-icon1 span {
                        display: block;
                        position: absolute;
                        height: 5px;
                        width: 100%;
                        background: #fff;
                        border-radius: 5px;
                        opacity: 1;
                        left: 0;
                        -webkit-transform: rotate(0deg);
                        -moz-transform: rotate(0deg);
                        -o-transform: rotate(0deg);
                        transform: rotate(0deg);
                        -webkit-transition: .25s ease-in-out;
                        -moz-transition: .25s ease-in-out;
                        -o-transition: .25s ease-in-out;
                        transition: .25s ease-in-out;
                    }
                    #nav-icon1 span:nth-child(1) {
                        top: 0px;
                    }
                    #nav-icon1 span:nth-child(2) {
                        top: 10px;
                    }
                    #nav-icon1 span:nth-child(3) {
                        top: 20px;
                    }

                    #nav-icon1.open span:nth-child(1) {
                        top: 10px;
                        -webkit-transform: rotate(140deg);
                        -moz-transform: rotate(140deg);
                        -o-transform: rotate(140deg);
                        transform: rotate(140deg);
                    }
                    #nav-icon1.open span:nth-child(2) {
                        opacity: 0;
                        left: -60px;
                    }
                    #nav-icon1.open span:nth-child(3) {
                        top: 10px;
                        -webkit-transform: rotate(-140deg);
                        -moz-transform: rotate(-140deg);
                        -o-transform: rotate(-140deg);
                        transform: rotate(-140deg);
                    }

                }
            }
        }
    }

}

@media (max-width: 650px){

    .topbar {
        .topbar_blocks {
            .menu_holder {
                width: Calc(100% - 210px);
            }
        }
    }

    .topbar {
        .topbar_blocks {
            .btn_holder {
                width: 210px;

                .bg_helper {
                    button {
                        padding: 18px 25px;
                        font-size: 12px;
                    }
                }
            }
        }
    }

}

@media (max-width: 575px){

    .topbar {
        .topbar_blocks {
            .menu_holder {
                width: 100%;
                min-height: 100px;
                padding: 20px 30px;
                border-radius: 40px;

                &.open{
                    border-bottom-left-radius: 0px;
                    border-bottom-right-radius: 0px;
                }

                .menu-nav{
                    .btn-holder{
                        button{
                            padding: 25px 35px;
                            border: none;
                            background: #523D83;
                            backdrop-filter: blur(10px);
                            border-radius: 999px;
                            font-family: 'Lexend';
                            font-style: normal;
                            font-weight: 700;
                            font-size: 14px;
                            line-height: 24px;
                            color: #FFFFFF;
                        }
                    }
                }
            }
        }
    }

    .topbar {
        .topbar_blocks {
            .btn_holder {
                display: none;
            }
        }
    }

}


.fake_banner{
    height: 190px;
}


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/

.banner{
    background-color: var(--background-color-orange);
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;

    @media (max-width: 1099px) {
        &{
            border-radius: 20px;
        }
    }

    .single_banner{
        .img{
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .conteudo{
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 40px 15px 0;

            .nome{
                font-family: 'Lexend';
                font-style: normal;
                font-weight: 700;
                font-size: 4.2vw;
                line-height: 1.2;
                color: #FFFFFF;
                max-width: 1000px;
                margin: 0px auto;
            }
        }

    }

    form.pesquisa_veiculos_home{
        max-width: 1180px;
        margin: 40px auto 0;
        padding: 0 15px;

        @media (max-width: 1099px) {
            &.hide_mobile{
                display: none;
            }
        }

        .fields_holder{
            display: flex;
            background-color: #fff;
            border-radius: 80px;
            padding: 10px;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 1099px) {
                & {
                    flex-direction: column;
                    gap: 30px;
                    border-radius: 30px;
                }
            }

            .field_block{
                padding: 0 40px;
                text-align: left;
                flex: 1;
                position: relative;

                @media (max-width: 1099px) {
                    &{
                        width: 100%;
                    }
                }

                &:after{
                    content: '';
                    height: 40px;
                    width: 1px;
                    background-color: #E9E9E9;
                    position: absolute;
                    right: 0;
                    top: Calc( 50% - 20px );
                }

                @media (max-width: 1099px) {
                    &:after{
                        display: none;
                    }
                }

                &:nth-child(5):after{
                    opacity: 0;
                }

                select{
                    border: none;
                    width: 100%;
                    outline: none;
                }
            }

            .btn_holder{
                width: 55px;
                height: 55px;

                button{
                    width: 100%;
                    height: 100%;
                    background-color: #523D83;
                    border-radius: 50%;
                    border: none;
                }
            }

        }
    }

    .link_pesquisa_avancada{
        color: #fff;
        margin-top: 30px;
        padding-bottom: 90px;
    }

}

.pesquisa_avancada{
    max-width: 1185px;
    width: Calc( 100% - 30px );
    border-radius: 40px;
    background-color: #fff;
    padding: 35px 45px;
    position: absolute;
    top: Calc(100% - 220px);
    z-index: 2;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;

    .title{
        font-family: 'Lexend';
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: #523D83;
    }

    .fields{
        margin-top: 25px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        align-items: flex-start;

        .field_holder{
            flex: 1 0 calc(25% - 20px);
            background: #F7F7FB;
            border-radius: 40px;
            padding: 10px 25px;

            @media (max-width: 1099px) {
                &{
                    flex: 1 0 Calc(33.333333% - 20px);
                }
            }

            @media (max-width: 700px) {
                &{
                    flex: 1 0 Calc(50% - 20px);
                }
            }

            label{
                display: block;
                font-family: 'DM Sans';
                font-weight: 400;
                font-size: 13px;
                line-height: 24px;
                color: #523D83;
            }

            select{
                border: none;
                background-color: transparent;
                display: block;
                width: 100%;
                font-family: 'DM Sans';
                font-weight: 400;
                font-size: 15px;
                line-height: 28px;
                color: #050B20;
                outline: none;
            }

        }

        .btn_holder{
            flex: 1 0 calc(25% - 20px);
            font-family: 'DM Sans';
            font-weight: 400;
            font-size: 14px;
            line-height: 28px;
            color: #523D83;
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 15px;
            justify-content: flex-end;

            button{
                width: 55px;
                height: 55px;
                border-radius: 50%;
                background-color: #523D83;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                border: none;
            }
        }

    }
}

.bloco{
    padding: 80px 0;

    &.purple{background-color: #523D83;}
    &.purple-light{background: rgba(82, 61, 131, 0.19);}
    &.grey{background-color: #F7F7FB;}
    &.white{background-color: #FFF;}
    &.orange{background-color: #F48D02;}

    &.small{
        padding: 40px 0;
    }

    h1{
        font-family: 'Lexend';
        font-weight: 700;
        font-size: 64px;
        line-height: 1.3;

        &.white{
            color: #fff;
        }

        @media (max-width: 991px) {
            &{
                font-size: 52px;
            }
        }

    }

    h2{
        font-weight: 700;
        font-size: 48px;
        line-height: 60px;

        &.orange{color: #F48D02;}
        &.white{color: #fff;}

        @media (max-width: 991px) {
            &{
                font-size: 40px;
            }
        }

    }

    h3{
        font-weight: 500;
        font-size: 40px;
        line-height: 40px;

        @media (max-width: 991px) {
            &{
                font-size: 30px;
            }
        }

        &.orange{color: #F48D02;}
        &.white{color: #fff;}
    }

    h4{
        font-weight: 700;
        font-size: 24px;
        line-height: 40px;

        &.purple{color: #523D83;}
    }

}

.titulo-arrows{
    padding-right: 160px;
}

.holder_slider_produtos{

    @media (max-width: 575px) {
        &{
            margin-top: 35px;
        }
    }

    &.owl-carousel .owl-stage-outer{
        overflow: inherit;
    }

    .owl-nav{
        position: absolute;
        top: -110px;
        right: 0;
        display: flex !important;
        gap: 30px;
        z-index: 1;

        @media (max-width: 575px) {
            &{
                top: -70px;
            }
        }

    }

    .bloco_produto{
        max-width: 500px;
        border-radius: 23px;
        overflow: hidden;
        margin: 0 10px;

        .img{
            position: relative;

            .coracao{
                position: absolute;
                right: 20px;
                top: 25px;
            }
        }

        .content{
            padding: 40px;
            background-color: #fff;

            .nome{
                font-weight: 700;
                font-size: 36px;
                line-height: 1.1;
                color: #523D83;
                margin-bottom: 30px;
            }

            .preco{
                font-weight: 400;
                font-size: 36px;
                line-height: 22px;
                color: rgba(82, 61, 131, 0.8);
                margin-bottom: 30px;

                .simbolo{
                    font-size: 20px;
                }

            }

            .descricao{
                font-weight: 200;
                font-size: 20px;
                line-height: 25px;
                color: #050B20;
                margin-bottom: 30px;
            }

            .informacoes{
                display: flex;
                gap: 25px;
                align-items: center;
                font-weight: 300;
                font-size: 14px;
                line-height: 14px;
                color: #050B20;
                flex-wrap: wrap;

                .informacao{
                    display: inline-flex;
                    gap: 5px;
                    align-items: center;
                }
            }

        }

        @media (max-width: 766px) {
            & {
                max-width: unset;
            }
        }

    }
}

.top-purple-home{
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;

    .holder_marcas_home{
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;

        .bloco_marca{
            width: 223px;
            max-width: 100%;
            border-radius: 16px;
            border: 1px solid #E9E9E9;
            padding: 40px 50px;
            background-color: #fff;
            text-align: center;

            .img img{
                width: 100px;
                height: 100px;
                object-fit: contain;
            }
        }
    }

}

.home-hr{
    border: 1px solid #301F59;
    margin: 0;
}

.banner_gostaria{
    position: relative;

    .conteudo{
        position: absolute;
        width: 100%;
        text-align: center;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);

        .nome{
            font-weight: 700;
            font-size: 3.7vw;
            line-height: 1.3;
            color: #FFFFFF;
            max-width: 820px;
            margin: 0 auto 30px;
        }

        button{
            padding: 24px 45px;
            background: #523D83;
            backdrop-filter: blur(10px);
            border-radius: 999px;
            font-weight: 700;
            font-size: 16px;
            line-height: 24px;
            color: #FFFFFF;
            border: none;

            @media (max-width: 991px) {
                & {
                    padding: 15px 33px;
                    font-size: 14px;
                }
            }
        }

    }
}

.banner_destaque{
    background-size: cover;
    color: #FFFFFF;
    font-weight: 400;
    background-position: center center;

    .sticker{
        margin-top: -100px;
    }

    .nome{
        font-size: 32px;
        line-height: 60px;
    }

    .text{
        font-weight: 700;
        /*font-size: 86px;*/
        font-size: 5vw;
        line-height: 1.2;
        margin-bottom: 30px;

        @media (max-width: 991px) {
            &{
                font-size: 42px;
            }
        }

    }

    .price{
        font-size: 40px;
        line-height: 60px;
    }

    .link{
        margin-top: 130px;
        margin-bottom: 80px;

        @media (max-width: 991px) {
            &{
                margin-top: 50px;
                margin-bottom: 50px;
            }
        }
    }

    .informacoes {
        text-align: right;
        padding-top: 110px;

        table {
            text-align: left;
            border: none;
            margin-left: auto;

            td{
                background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(4px);
                border-radius: 16px;
                padding: 45px 30px 30px;

                font-family: 'DM Sans';
                font-weight: 400;
                font-size: 15px;
                line-height: 1;
                margin: 7.5px 10px;
                display: inline-block;
                width: 165px;



                strong{
                    font-family: 'Inter';
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 20px;
                    padding-top: 5px;
                    display: inline-block;
                }

                img{
                    width: 60px;
                    height: 60px;
                    object-fit: contain;
                    object-position: bottom left;
                    margin-bottom: 10px;
                }
            }

            @media (max-width: 991px) {
                & {
                    margin: 0 auto;
                }
            }

        }

        @media (max-width: 991px) {
            & {
                padding-top: 0px;
                padding-bottom: 30px;
            }
        }

    }
}

.bloco_vantagens{

    .desc{
        font-weight: 400;
        font-size: 32px;
        line-height: 28px;
        color: #F48D02;
        margin-bottom: 20px;
    }

    .desc2{
        font-weight: 400;
        font-size: 32px;
        color: #050B20;
        margin-bottom: 20px;
    }

    .title{
        font-weight: 700;
        font-size: 64px;
        line-height: 1.2;
        color: #050B20;
        margin-bottom: 30px;

        @media (max-width: 991px) {
            & {
                font-size: 40px;
            }
        }

    }

    .vantagens{
        position: relative;

        &:before{
            content: '';
            height: 100%;
            width: 1px;
            background-color: #523D83;
            position: absolute;
            top: 0;
            left: 36px;
        }

        .vantagem{
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;

            .number{
                border: 1px solid #050B20;
                backdrop-filter: blur(10px);
                border-radius: 999px;
                width: 72px;
                height: 72px;
                font-weight: 500;
                font-size: 20px;
                line-height: 24px;
                color: #050B20;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;

                cursor: pointer;
            }

            &.active .number{
                background-color: #050B20;
                color: #fff;
            }

            .content{
                width: Calc(100% - 112px);
                padding-top: 20px;
                cursor: pointer;

                .nome{
                    font-weight: 500;
                    font-size: 32px;
                    line-height: 28px;
                    color: #050B20;
                    margin-bottom: 15px;

                    @media (max-width: 991px) {
                        & {
                            font-size: 25px;
                        }
                    }

                }

                .descricao{
                    font-family: 'Inter';
                    font-weight: 400;
                    font-size: 17px;
                    line-height: 28px;
                    color: #050B20;
                }

            }

        }
    }
}

.holder_slider_testemunhos{

    &.owl-carousel .owl-stage-outer{
        overflow: inherit;
    }

    &.owl-carousel .owl-stage{
        display: flex;

        .owl-item{
            float: none;
        }
    }

    .slider_testemunho{
        padding: 50px 55px;
        background: #FFFFFF;
        border: 1px solid #EFF0F7;
        box-shadow: 0px 5px 14px rgba(8, 15, 52, 0.04);
        border-radius: 20px;
        max-width: 500px;
        color: #170F49;
        margin: 0 10px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .content{
            .nome{
                font-family: 'Inter';
                font-weight: 700;
                font-size: 18px;
                line-height: 20px;
                color: #170F49;
            }

            .title{
                font-family: 'Inter';
                font-weight: 400;
                font-size: 18px;
                line-height: 20px;
                color: #6F6C90;
            }

        }
    }
}

.texto_ajudar{
    font-weight: 600;
    font-size: 64px;
    line-height: 80px;
    color: #FFFFFF;

    @media (max-width: 1199px) {
        & {
            font-size: 40px;
        }
    }

    @media (max-width: 991px) {
        & {
            text-align: center;
        }
    }

}

/*==================================================================================================*/
/*PESQUISA*/
/*==================================================================================================*/

#pesquisa,#a-minha-conta {

    .btn-alert {
        border: none;
        background: #E6E4FF;
        backdrop-filter: blur(10px);
        border-radius: 999px;
        padding: 25px 35px;

        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #523D83;
    }

    .ordenacao{
        padding: 15px 35px;
        border-radius: 40px;
        background-color: #fff;

        label{
            display: block;
            font-weight: 400;
            font-size: 13px;
            line-height: 19px;
            color: #523D83;
        }

        select{
            border: none;
            background-color: transparent;
            width: 155px;
            outline: none;
        }

    }

    .lista_resultados{

        .lista_produtos {
            display: flex;
            margin-top: 35px;
            gap: 15px;
            flex-wrap: wrap;

            .bloco_produto {
                width: Calc( 100% / 4 - 15px );
                border-radius: 23px;
                overflow: hidden;

                .img{
                    position: relative;

                    .coracao{
                        position: absolute;
                        right: 20px;
                        top: 25px;
                    }
                }

                .content {
                    padding: 40px 30px;
                    background-color: #fff;

                    .nome {
                        font-weight: 700;
                        font-size: 28px;
                        line-height: 1.1;
                        color: #523D83;
                        margin-bottom: 30px;
                    }

                    .preco {
                        font-weight: 400;
                        font-size: 28px;
                        line-height: 22px;
                        color: rgba(82, 61, 131, 0.8);
                        margin-bottom: 30px;

                        .simbolo {
                            font-size: 15px;
                        }

                    }

                    .descricao {
                        font-weight: 200;
                        font-size: 15px;
                        line-height: 25px;
                        color: #050B20;
                        margin-bottom: 30px;
                    }

                    .informacoes {
                        display: flex;
                        gap: 20px;
                        align-items: center;
                        font-weight: 300;
                        font-size: 11px;
                        line-height: 14px;
                        color: #050B20;
                        flex-wrap: wrap;

                        .informacao {
                            display: inline-flex;
                            gap: 5px;
                            align-items: center;
                        }
                    }

                }

                @media (max-width: 1399px) {
                    & {
                        width: Calc( 100% / 3 - 15px );
                    }
                }

                @media (max-width: 991px) {
                    & {
                        width: Calc( 100% / 2 - 15px );
                    }
                }

                @media (max-width: 650px) {
                    & {
                        width: 100%;
                    }
                }

            }
        }

        .paginacao{
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
            align-items: center;

            .single_pag:not(.seta){
                width: 80px;
                height: 80px;
                background-color: transparent;
                border: 1px solid #523D83;
                display: flex;
                align-items: center;
                justify-content: center;

                font-weight: 400;
                font-size: 22px;
                line-height: 24px;
                color: #523D83;
                border-radius: 50%;

                &.active{
                    background-color: #fff;
                    border-color: #fff;
                    font-weight: 700;
                }

                &:not(.active){
                    cursor: pointer;
                }

            }
        }

    }


}


/*==================================================================================================*/
/*VEICULOS*/
/*==================================================================================================*/

#veiculos{

    .holder_slider_segmentos{

        @media (max-width: 575px) {
            &{
                margin-top: 35px;
            }
        }

        &.owl-carousel .owl-stage-outer{
            overflow: inherit;
        }

        .owl-nav{
            position: relative;
            display: flex !important;
            gap: 30px;
            z-index: 1;
            margin-top: 30px;
            margin-bottom: 30px;

        }

        .slide_segmento{
            max-width: 500px;
            border-radius: 23px;
            overflow: hidden;
            margin: 0 10px;

        }
    }

    .holder-tags {
        width: Calc( 100% - 72px );
        .tag-veiculos {
            background: rgba(82, 61, 131, 0.19);
            border-radius: 44px;
            font-family: 'DM Sans';
            font-weight: 500;
            font-size: 15px;
            line-height: 18px;
            color: #FFFFFF;
            padding: 13px 27px;
        }
    }

    .simbolo{
        background-color: #fff;
        border-radius: 50px;
        width: 72px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .lista_produtos {
        display: flex;
        margin-top: 35px;
        gap: 15px;
        flex-wrap: wrap;
        flex-direction: column;

        @media (max-width: 991px) {
            & {
                flex-direction: row;
            }
        }

        .bloco_produto {
            width: 100%;
            border-radius: 23px;
            overflow: hidden;
            display: flex;

            @media (max-width: 991px) {
                & {
                    flex-direction: column;
                    width: Calc( 50% - 15px );
                    height: 100%;
                }
            }

            .img{
                position: relative;
                width: 400px;

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

                .coracao{
                    position: absolute;
                    right: 20px;
                    top: 25px;
                }

                @media (max-width: 991px) {
                    & {
                        width: 100%;
                    }
                }

            }

            .content {
                padding: 4.4% 5.5% 2.2%;
                background-color: #fff;
                width: Calc(100% - 400px);
                display: flex;
                flex-wrap: wrap;

                @media (max-width: 991px) {
                    & {
                        width: 100%;
                    }
                }

                .nome {
                    font-weight: 700;
                    font-size: 28px;
                    line-height: 1.1;
                    color: #523D83;
                    margin-bottom: 20px;
                    width: 50%;

                    @media (max-width: 991px) {
                        & {
                            width: 100%;
                        }
                    }

                }

                .preco {
                    font-weight: 400;
                    font-size: 28px;
                    line-height: 22px;
                    color: rgba(82, 61, 131, 0.8);
                    margin-bottom: 30px;
                    width: 50%;
                    text-align: right;

                    @media (max-width: 991px) {
                        & {
                            width: 100%;
                            text-align: left;
                        }
                    }

                    .simbolo {
                        font-size: 15px;
                    }

                }

                .descricao {
                    font-weight: 200;
                    font-size: 15px;
                    line-height: 25px;
                    color: #050B20;
                    margin-bottom: 30px;
                    width: 100%;
                }

                .informacoes {
                    display: flex;
                    gap: 20px;
                    align-items: center;
                    font-weight: 300;
                    font-size: 11px;
                    line-height: 14px;
                    color: #050B20;
                    flex-wrap: wrap;
                    width: 70%;

                    .informacao {
                        display: inline-flex;
                        gap: 5px;
                        align-items: center;
                    }
                }

                .btn-reservar-holder{
                    width: 30%;
                    text-align: right;

                    .btn-reservar{
                        padding: 25px 50px;
                        background-color: #F48D02;
                        border: none;
                        border-radius: 50px;

                        font-weight: 700;
                        font-size: 16px;
                        line-height: 24px;
                        color: #FFFFFF;

                        @media (max-width: 991px) {
                            & {
                                font-size: 13px;
                                padding: 15px 35px;
                            }
                        }

                    }

                    @media (max-width: 991px) {
                        & {
                            width: 100%;
                            text-align: center;
                            margin-top: 30px;
                            margin-bottom: 20px;
                        }
                    }

                }

            }

            @media (max-width: 650px) {
                & {
                    width: 100%;
                }
            }

        }
    }

    .bloco-cta{
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        padding: 15% 10%;
        height: 100%;

        .img{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;

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

        .content {
            z-index: 3;
            position: relative;

            .title {
                font-weight: 700;
                font-size: 36px;
                line-height: 45px;
                color: #FFFFFF;
            }

            .desc {
                font-weight: 400;
                font-size: 15px;
                line-height: 18px;
                color: #FFFFFF;
                margin: 30px 0;
            }

            .btn-holder a {
                background-color: #fff;
                border-radius: 30px;
                padding: 15px 40px;
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #374151;
                display: inline-block;
            }

        }

    }

}


/*==================================================================================================*/
/*VEICULO*/
/*==================================================================================================*/

#veiculo{

    .banner {
        .single_banner {

            .conteudo {
                text-align: left;
                padding: 9% 90px 13%;

                @media (max-width: 991px) {
                    & {
                        padding: 9% 40px 13%;
                    }
                }

                .nome {
                    margin: 0px;
                }

                .descricao{
                    font-weight: 400;
                    font-size: 40px;
                    line-height: 60px;
                    color: #FFFFFF;
                    margin-bottom: 40px;
                }

                button{
                    padding: 25px 50px;

                    border: none;
                    border-radius: 50px;

                    font-weight: 700;
                    font-size: 16px;
                    line-height: 24px;

                    &.v1{
                        background-color: #FFFFFF;
                        color: #F48D02;
                    }
                    &.v2{
                        background-color: #F48D02;
                        color: #FFFFFF;
                    }

                }

            }
        }
    }

    .form-agendar-visita,
    .form-reservar{
        position: absolute;
        left: 0;
        top: 0;
        padding: 90px 90px;
        width: 100%;
        background-color: var(--background-color-orange);
        z-index: 2;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        display: none;

        &.show{
            display: block;
        }

        .close{
            position: absolute;
            right: 60px;
            top: 110px;
            z-index: 2;
            cursor: pointer;
        }

        h2{
            font-weight: 700;
            font-size: 86px;
            line-height: 96px;
            color: #FFFFFF;
            margin-bottom: 90px;
        }

    }

    .info-principal{
        h1{

        }
        h3{
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 400;
            margin-top: 20px;
        }
    }

    .barra-visitas{
        background: #FFF6EA;
        border-radius: 44px;
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
        color: #F48D02;
        display: inline-block;
        padding: 15px;
        margin-top: 35px;

        svg{
            vertical-align: middle;
            display: inline-block;
            margin-right: 10px;
        }
    }

    .blocos-especificacoes{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

        .bloco-especificacao{
            padding: 40px 35px;
            background: linear-gradient(0deg, #F5F7FA, #F5F7FA), rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            gap: 45px;
            width: Calc( 50% - 10px );

            @media (max-width: 1399px) {
                & {
                    width: 100%;
                }
            }

            @media (max-width: 991px) {
                & {
                    width: Calc( 50% - 10px );
                }
            }

            @media (max-width: 649px) {
                & {
                    width: 100%;
                }
            }

            .label{
                font-family: 'DM Sans';
                font-weight: 400;
                font-size: 15px;
                line-height: 28px;
                color: #050B20;
            }

            .valor{
                font-family: 'Inter';
                font-weight: 600;
                font-size: 20px;
                line-height: 20px;
                color: #050B20;
            }
        }
    }

    .holder_slider_imagens_prod{
        padding: 35px 0;

        &.owl-carousel .owl-stage-outer{
            overflow: initial;
        }

        .owl-nav{
            position: absolute;
            right: 0;
            top: 0px;
            z-index: 3;
        }

        .owl-dots {
            position: absolute;
            left: 0;
            bottom: 15px;
            width: 100%;
            padding: 0 40px;
            display: flex;
            z-index: 2;
        }

        .owl-dot {
            background-color: rgba(0, 0, 0, 0.17);
            height: 2px;
            flex: 1;
            border: 0;

            &.active {
                background-color: #F48D02;
                height: 4px;
            }
        }

        .slide_imagem{
            .img{
                border-radius: 15px;
                overflow: hidden;
                padding: 0 10px;

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

    .small-size{
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
    }

    .valor-desde{
        font-weight: 400;
        font-size: 40px;
        line-height: 1;
        margin-top: 0px;
    }

    .extra_content {

        .nav-item{
            flex: 1;
            min-width: 240px;
        }

        .nav-tabs .nav-link {
            color: inherit;
            border: 0;
            width: 100%;
            text-align: left;
        }

        .nav-tabs .nav-item.show .nav-link,
        .nav-tabs .nav-link.active {
            border-radius: 0px;
            border: 0;
            background-color: transparent;
            border-bottom: 2px solid var(--color-primary);
            font-weight: 600;
        }

        .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
            border: none;
            border-bottom: 2px solid var(--color-primary);
        }

        .especificacoes_tecnicas{
            padding: 60px 0;
            font-weight: 400;
            font-size: 32px;
            line-height: 1.3;
            color: #050B20;

            @media (max-width: 991px) {
                & {
                    font-size: 25px;
                }
            }

            h4{
                font-weight: 700;
                font-size: 40px;
                line-height: 50px;
                color: #050B20;

                @media (max-width: 991px) {
                    & {
                        font-size: 32px;
                    }
                }
            }

            .blocos-especificacoes{

                .bloco-especificacao{
                    background: #fff;
                    width: auto;
                    min-width: 256px;
                }
            }

        }

        .detalhe_equipamento{
            padding: 60px 0;

            h4{
                font-weight: 700;
                font-size: 40px;
                line-height: 50px;
                color: #050B20;
            }

            table{
                border: none;
                margin-top: 35px;
                border-top: 1px solid rgba(0, 0, 0, 0.17);
                width: 100%;

                tr{
                    display: flex;
                    flex-wrap: wrap;

                    td{
                        width: Calc( 100% / 4);
                        font-family: 'DM Sans';
                        font-weight: 400;
                        font-size: 17px;
                        line-height: 28px;
                        color: rgba(5, 11, 32, 0.4);
                        padding-top: 35px;
                        padding-bottom: 20px;

                        h5{
                            font-weight: 700;
                            font-size: 32px;
                            line-height: 40px;
                            color: #050B20;
                            margin-top: 25px;
                        }

                        strong{
                            margin-top: 15px;
                            display: inline-block;
                            font-family: 'Inter';
                            font-weight: 600;
                            font-size: 21px;
                            line-height: 20px;
                            color: #050B20;
                        }
                    }
                }

            }
        }

        .extras_modelo{
            padding: 60px 0;
        }

    }


    .bloco_passos{

        .desc{
            font-weight: 400;
            font-size: 32px;
            line-height: 28px;
            color: #F48D02;
            margin-bottom: 20px;
        }

        .title{
            font-weight: 700;
            font-size: 64px;
            line-height: 1.2;
            color: #050B20;
            margin-bottom: 30px;

            @media (max-width: 991px) {
                & {
                    font-size: 40px;
                }
            }

        }

        .passos{
            position: relative;

            &:before{
                content: '';
                height: 100%;
                width: 1px;
                background-color: #523D83;
                position: absolute;
                top: 0;
                left: 36px;
            }

            .passo{
                display: flex;
                gap: 40px;
                margin-bottom: 60px;
                position: relative;
                z-index: 2;

                .number{
                    border: 1px solid #050B20;
                    backdrop-filter: blur(10px);
                    border-radius: 999px;
                    width: 72px;
                    height: 72px;
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 24px;
                    color: #050B20;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;

                    cursor: pointer;
                }

                &.active .number{
                    background-color: #050B20;
                    color: #fff;
                }

                .content{
                    width: Calc(100% - 112px);
                    padding-top: 20px;
                    cursor: pointer;

                    .nome{
                        font-weight: 500;
                        font-size: 32px;
                        line-height: 28px;
                        color: #050B20;
                        margin-bottom: 15px;

                        @media (max-width: 991px) {
                            & {
                                font-size: 25px;
                            }
                        }

                    }

                    .descricao{
                        font-family: 'Inter';
                        font-weight: 400;
                        font-size: 17px;
                        line-height: 28px;
                        color: #050B20;
                    }

                }

            }
        }

        .tipo_carro_pretende{
            .topo{
                display: flex;
                justify-content: space-between;

                .esquerda{
                    border-top-right-radius: 40px;
                    border-top-left-radius: 40px;
                    background-color: #F6F6F6;
                    padding: 50px;
                    width: Calc( 100% - 180px );
                }
                .direita{
                    background-color: #F6F6F6;
                    width: 180px;

                    .helper{
                        background-color: #fff;
                        border-bottom-left-radius: 40px;
                        padding: 30px;
                        height: 100%;
                    }
                }
            }

            .content{
                background-color: #F6F6F6;
                padding: 0 50px 40px;
                border-top-right-radius: 40px;
                border-bottom-left-radius: 40px;
                border-bottom-right-radius: 40px;

                h4{
                    font-weight: 700;
                    font-size: 46px;
                    line-height: 1.3;
                    color: #050B20;
                    margin-bottom: 30px;

                    @media (max-width: 991px) {
                        & {
                            font-size: 36px;
                        }
                    }
                }


                .holder-tags {
                    margin-bottom: 50px;

                    .tag-veiculos {
                        background: #fff;
                        border-radius: 44px;
                        font-family: 'DM Sans';
                        font-weight: 500;
                        font-size: 15px;
                        line-height: 18px;
                        color: #523D83;
                        padding: 13px 27px;
                    }
                }

                .holder_slider_tipo_carro_pretende{
                    .bloco_produto{
                        max-width: 500px;
                        border-radius: 23px;
                        overflow: hidden;
                        margin: 0 10px;
                        background-color: #fff;

                        .img{
                            position: relative;
                        }

                        .content{
                            padding: 35px;
                            background-color: #fff;

                            .nome{
                                font-weight: 700;
                                font-size: 24px;
                                line-height: 1.1;
                                color: #523D83;
                                margin-bottom: 30px;
                            }

                            .descricao{
                                font-weight: 200;
                                font-size: 14px;
                                line-height: 25px;
                                color: #050B20;
                                margin-bottom: 30px;
                            }

                        }

                        @media (max-width: 766px) {
                            & {
                                max-width: unset;
                            }
                        }

                    }

                }

            }

        }

    }

    .banner_gostaria{
        background: #523D83;
        border-radius: 22px;
        padding: 60px 30px;
        text-align: center;

        h3{
            max-width: 767px;
            font-weight: 700;
            font-size: 64px;
            line-height: 1.4;
            color: #FFFFFF;
            margin: 0 auto;

            @media (max-width: 1200px) {
                & {
                    font-size: 46px;
                }
            }
        }
    }

}

/*==================================================================================================*/
/*RETOMA*/
/*==================================================================================================*/

#retoma{

    .form-avaliacao-gratis{
        border-radius: 40px;

        max-width: 1180px;
        margin: 20px auto 60px;
        padding: 45px;
        text-align: left;
        position: relative;

        .aux_form{
            display: none;
        }

        &.active{
            background-color: #fff;
            .aux_form{
                display: block;
            }

            .open-avaliacao-gratis{
                display: none;
            }

        }

        .numbers{
            display: flex;
            gap: 65px;
            flex-direction: column;
            position: absolute;
            left: 45px;
            top: 45px;

            &:after{
                content: '';
                width: 1px;
                height: 65px;
                background-color: #523D83;
                left: 28px;
                top: 56px;
                position: absolute;
            }

            .number {
                width: 56px;
                height: 56px;
                border: 0.784314px solid #523D83;
                backdrop-filter: blur(7.84314px);
                border-radius: 783px;
                display: flex;
                align-items: center;
                justify-content: center;

                &.active{
                    background-color: #523D83;
                    color: #fff;

                }
            }

            @media (max-width: 600px) {
                &{
                    display: none;
                }
            }

        }

        .campos-topo{
            display: flex;
            gap: 45px;
            justify-content: center;

            .campo-matricula {
                width: 305px;
                height: 76px;
                background-size: 100% 100%;
                background-image: url('/site/imagens/campo-matricula.png');
                padding-left: 80px;
                display: flex;

                input {
                    width: 100%;
                    background-color: transparent;
                    border: none;
                    outline: none;
                    font-size: 19px;
                }
            }

            .campo-kms {
                width: 305px;
                height: 76px;
                background-size: 100% 100%;
                background-image: url('/site/imagens/campo-kms.png');
                padding-left: 80px;
                display: flex;
                flex-direction: column;
                justify-content: center;

                label{
                    font-weight: 400;
                    font-size: 15px;
                    line-height: 26px;
                    color: #523D83;
                    display: block;
                }

                input {
                    font-family: 'DM Sans';
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 28px;
                    color: #050B20;
                    width: 100%;
                    background-color: transparent;
                    border: none;
                    outline: none;
                }
            }

            @media (max-width: 767px) {
                &{
                    flex-direction: column;
                    align-items: center;
                }
            }

        }

        .title{
            font-family: 'DM Sans';
            font-weight: 700;
            font-size: 16px;
            line-height: 28px;
            color: #523D83;
            text-align: center;
            margin-top: 30px;
        }

        .subtitle{
            font-family: 'Inter';
            font-weight: 400;
            font-size: 14px;
            line-height: 28px;
            text-align: center;
            color: #050B20;
            margin-bottom: 30px;
        }

        .field-holder{
            background: #F7F7FB;
        }

    }

}


/*==================================================================================================*/
/*PONTO DE ENTREGA*/
/*==================================================================================================*/

#ponto_de_entrega{

    .banner{
        .single_banner{
            min-height: 440px;
            display: flex;
            align-items: center;
            justify-content: center;

            .conteudo{
                padding-top: 0;
            }
        }
    }

    .bloco_sinta_casa{
        .title{
            font-weight: 700;
            font-size: 64px;
            line-height: 1.2;
            color: #050B20;
            margin-bottom: 100px;
            max-width: 550px;

            @media (max-width: 1399px) {
                &{
                    font-size: 45px;
                }
            }

            @media (max-width: 991px) {
                &{
                    margin-bottom: 50px;
                }
            }
        }

        .caixas{
            display: flex;
            gap: 20px;

            @media (max-width: 991px) {
                &{
                    margin-top: 50px;
                }
            }

            @media (max-width: 767px) {
                &{
                    flex-direction: column;
                }
            }

            .caixa{
                flex: 1;
                border-radius: 22px;
                background-color: #fff;
                padding: 50px 30px;

                .img{
                    margin-bottom: 40px;
                }

                .nome{
                    font-weight: 600;
                    font-size: 36px;
                    line-height: 40px;
                    color: #1E1E1E;
                    margin-bottom: 15px;
                }

                .descricao{
                    font-weight: 200;
                    font-size: 20px;
                    line-height: 25px;
                    color: #050B20;
                }

            }
        }

    }

    .holder_slider_galeria{
        position: initial;
        padding-bottom: 40px;

        &.owl-carousel .owl-stage-outer{
            overflow: initial;
        }

        .owl-nav{
            position: absolute;
            right: 0;
            top: 0px;
            z-index: 3;
        }

        .owl-dots {
            position: absolute;
            left: 0;
            bottom: 15px;
            width: 100%;
            padding: 0 40px;
            display: flex;
            z-index: 2;
        }

        .owl-dot {
            background-color: rgba(0, 0, 0, 0.17);
            height: 2px;
            flex: 1;
            border: 0;

            &.active {
                background-color: #F48D02;
                height: 4px;
            }
        }

        .slide_imagem{
            padding: 0 10px;
            .img{
                padding-top: 61.3%;
                position: relative;

                img{
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    object-fit: cover;
                    border-radius: 15px;
                    overflow: hidden;
                }
            }
        }
    }

    .bloco_estacoes{
        color: #fff;
        font-weight: 400;
        font-size: 19px;
        line-height: 1.6;

        h2{
            font-weight: 700;
            font-size: 48px;
            line-height: 60px;
            color: #F48D02;
            margin-bottom: 30px;
        }

        h3{
            font-weight: 600;
            font-size: 32px;
            line-height: 48px;
            color: #F48D02;
            margin-bottom: 30px;
        }

        .caixa_pesquisa_pontos{
            background-color: #F6F6F6;
            padding: 50px 35px;
            border-radius: 40px;

            @media (max-width: 991px) {
                &{
                    margin-bottom: 50px;
                }
            }

            h4{
                color: #050B20;
            }

            .field_pesquisa{
                margin-bottom: 35px;

                .field{
                    display: inline-block;
                    width: Calc( 100% - 70px );
                    position: relative;

                    &:after {
                        content: '';
                        width: 16px;
                        height: 16px;
                        position: absolute;
                        top: 21px;
                        left: 34px;
                        background-image: url(/site/views/icons/lupa.svg);
                    }

                    input{
                        width: 100%;
                        background: #FFFFFF;
                        border-radius: 40px;
                        padding: 15px 30px 15px 80px;
                        border: 0;
                        outline: none;

                        font-family: 'DM Sans';
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 28px;
                        color: #050B20;
                    }
                }

                .btn_holder{
                    display: inline-block;
                    margin-left: 15px;
                    button{
                        width: 55px;
                        height: 55px;
                        border: none;
                        border-radius: 50%;
                        background-color: #523D83;
                    }
                }

            }

            .estacoes_pesquisa{
                max-height: 325px;
                overflow: auto;
                padding-right: 30px;

                .estacao_pesquisa{

                    input{
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        height: 0;
                        width: 0;
                    }

                    label{
                        display: block;
                        background: #FFFFFF;
                        border-radius: 22px;
                        padding: 35px;
                        border: 2px solid #fff;
                        margin-top: 15px;

                        .nome{
                            font-weight: 600;
                            font-size: 24px;
                            line-height: 22px;
                            color: #523D83;
                            margin-bottom: 15px;
                        }

                        .descricao{
                            font-weight: 200;
                            font-size: 14px;
                            line-height: 18px;
                            color: #050B20;
                        }

                    }

                    input:checked ~ label{
                        border-color: #F48D02
                    }

                }
            }

            .no-option{
                color: #050B20;
            }

            .selecionar_estacao{
                margin-top: 35px;
            }

        }

        .estacoes_btns{
            margin-top: 30px;
            display: flex;
            gap: 35px;
            flex-wrap: wrap;

            @media (max-width: 649px) {
                &{
                    flex-direction: column;
                }
            }

            .estacao_btn {
                background: transparent;
                border: 1px solid #FFFFFF;
                border-radius: 60px;
                padding: 25px 15px;

                font-weight: 700;
                font-size: 26px;
                line-height: 28px;
                color: #FFFFFF;
                flex: 1 Calc( 50% - 20px );
                text-align: center;
                cursor: pointer;

                display: inline-flex;
                justify-content: center;
                align-items: center;

                &.active {
                    background-color: #F48D02;
                    border-color: #F48D02;
                }
            }

        }

        .informacao_estacao{
            .tabela_proximidades{
                table{
                    border: 0;
                    width: 100%;

                    tr{
                        display: flex;
                        flex-direction: column;
                        gap: 23px;

                        td{
                            border-radius: 16px;
                            background-color: #fff;
                            padding: 40px 35px;
                            font-family: 'DM Sans';
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 1.5;
                            color: #050B20;

                            img{
                                width: 70px !important;
                                height: 70px !important;
                                object-fit: contain;
                                margin-right: 25px;
                                float: left;
                            }

                            strong{
                                font-family: 'Inter';
                                font-weight: 600;
                                font-size: 19px;
                                line-height: 20px;
                                color: #050B20;
                            }
                        }
                    }
                }
            }
        }

    }

}


/*==================================================================================================*/
/*LOGIN*/
/*==================================================================================================*/

#login{

    .caixa_form_login{
        background-color: #523D83;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        overflow: hidden;
        padding-left: 90px;

        .fields{
            max-width: 540px;
        }
    }

}

/*==================================================================================================*/
/*LOGIN*/
/*==================================================================================================*/

#a-minha-conta{

    .caixa_topo_conta{
        background-color: #fff;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        overflow: hidden;
        padding-left: 90px;
    }

    .account-page{
        .account-navigation{
            ul{
                list-style: none;
                padding-left: 0;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 20px;

                li.account-navigation-link{
                    border-radius: 37px;
                    border: 2px solid #523D83;
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 34px;
                    color: #523D83;
                    padding: 15px 40px;

                    svg path{
                        stroke: #523D83;
                    }

                    &.active{
                        background: #523D83;
                        color: #FFFFFF;
                        font-weight: 600;

                        svg path{
                            stroke: #fff;
                        }
                    }
                }
            }
        }

        .account-content{
            #form_pesquisa_reservas{

                .filtros-veiculos{
                    margin-top: 75px;
                    margin-bottom: 40px;

                    .holder_filtro{
                        display: inline-block;
                        position: relative;
                        margin-right: 15px;
                        margin-bottom: 15px;
                        cursor: pointer;

                        input{
                            position: absolute;
                            opacity: 0;
                            cursor: pointer;
                            height: 0;
                            width: 0;
                        }

                        label{
                            display: inline-block;
                            margin-bottom: 0;
                            text-align: center;
                            position: relative;
                            cursor: pointer;
                            background: transparent;
                            border-radius: 44px;
                            color: #523D83;
                            border: 1px solid #523D83;
                            padding: 18px 25px;
                            font-family: 'DM Sans';
                            font-weight: 500;
                            font-size: 15px;
                            line-height: 18px;
                            color: #523D83;
                        }

                        input:checked ~ label{
                            background: #E6E4FF;
                            font-weight: 600;
                            border-color: transparent;
                        }

                    }
                }

                .holder_fields{
                    display: flex;
                    justify-content: space-between;
                    gap: 20px;
                    flex-wrap: wrap;

                    .helper_search{
                        position: relative;

                        .search_field{
                            max-width: 100%;
                            width: 760px;
                            background: #FFFFFF;
                            border-radius: 80px;
                            padding: 25px 35px;

                            input{
                                border: none;
                                background-color: transparent;
                                outline: none;
                                font-family: 'DM Sans';
                                font-weight: 400;
                                font-size: 13px;
                                line-height: 24px;
                                color: #523D83;
                                width: 100%;
                            }


                            @media (max-width: 991px) {
                                & {
                                    width: 470px;
                                }
                            }

                            @media (max-width: 650px) {
                                & {
                                    width: 100%;
                                }
                            }

                        }

                        .btn_search{
                            width: 55px;
                            height: 55px;
                            border: none;
                            border-radius: 50%;
                            background-color: #523D83;
                            position: absolute;
                            top: 10px;
                            right: 20px;
                        }
                    }

                    .fields{
                        display: flex;
                        gap: 20px;
                        flex-wrap: wrap;

                        .field-holder{
                            width: 225px;

                        }
                    }

                    @media (max-width: 650px) {
                        & {
                            flex-direction: column;
                        }
                    }

                }

            }

            .listagem_reservas {

                .lista_produtos {
                    display: flex;
                    margin-top: 35px;
                    gap: 15px;
                    flex-wrap: wrap;
                    flex-direction: column;

                    @media (max-width: 991px) {
                        & {
                            flex-direction: row;
                        }
                    }

                    .bloco_produto {
                        width: 100%;
                        border-radius: 23px;
                        overflow: hidden;
                        display: flex;

                        @media (max-width: 991px) {
                            & {
                                flex-direction: column;
                                width: Calc(50% - 15px);
                                height: 100%;
                            }
                        }

                        .img {
                            position: relative;
                            width: 400px;

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

                            .coracao {
                                position: absolute;
                                right: 20px;
                                top: 25px;
                            }

                            .label-pago {
                                position: absolute;
                                left: 25px;
                                top: 30px;
                                background: #E6E4FF;
                                border-radius: 44px;
                                padding: 12px;
                                font-weight: 400;
                                font-size: 15px;
                                line-height: 18px;
                                color: #523D83;
                            }

                            @media (max-width: 991px) {
                                & {
                                    width: 100%;
                                }
                            }

                        }

                        .content {
                            padding: 4.4% 5.5% 2.2%;
                            background-color: #fff;
                            width: Calc(100% - 400px);
                            display: flex;
                            flex-wrap: wrap;

                            @media (max-width: 991px) {
                                & {
                                    width: 100%;
                                }
                            }

                            .nome {
                                font-weight: 700;
                                font-size: 28px;
                                line-height: 1.1;
                                color: #523D83;
                                margin-bottom: 20px;
                                width: 50%;

                                @media (max-width: 991px) {
                                    & {
                                        width: 100%;
                                    }
                                }

                            }

                            .preco {
                                font-weight: 400;
                                font-size: 28px;
                                line-height: 22px;
                                color: rgba(82, 61, 131, 0.8);
                                margin-bottom: 30px;
                                width: 50%;
                                text-align: right;

                                @media (max-width: 991px) {
                                    & {
                                        width: 100%;
                                        text-align: left;
                                    }
                                }

                                .simbolo {
                                    font-size: 15px;
                                }

                            }

                            .descricao {
                                font-weight: 200;
                                font-size: 15px;
                                line-height: 25px;
                                color: #050B20;
                                margin-bottom: 30px;
                                width: 100%;
                            }

                            .informacoes {
                                display: flex;
                                gap: 20px;
                                align-items: center;
                                font-weight: 300;
                                font-size: 11px;
                                line-height: 14px;
                                color: #050B20;
                                flex-wrap: wrap;
                                width: 70%;

                                .informacao {
                                    display: inline-flex;
                                    gap: 5px;
                                    align-items: center;
                                }
                            }

                            .valor-reserva {
                                width: 30%;
                                text-align: right;
                                display: flex;
                                justify-content: flex-end;

                                @media (max-width: 991px) {
                                    & {
                                        width: 250px;
                                    }
                                }

                                .helper {
                                    width: 54px;
                                    height: 54px;
                                    padding: 15px 13px;
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;
                                    border-radius: 60px;
                                    background-color: #E6E4FF;
                                    overflow: hidden;

                                    -webkit-transition: .5s ease-in-out;
                                    -moz-transition: .5s ease-in-out;
                                    -o-transition: .5s ease-in-out;
                                    transition: .5s ease-in-out;

                                    font-family: 'DM Sans';
                                    font-weight: 500;
                                    font-size: 15px;
                                    line-height: 18px;
                                    color: #523D83;

                                    &:hover {
                                        width: 300px;
                                    }

                                    @media (max-width: 991px) {
                                        & {
                                            width: 100%;
                                            text-align: center;
                                            margin-top: 30px;
                                            margin-bottom: 20px;
                                        }
                                    }
                                }

                            }

                        }

                        @media (max-width: 650px) {
                            & {
                                width: 100%;
                            }
                        }

                    }
                }

                .paginacao{
                    display: flex;
                    gap: 15px;
                    margin-top: 30px;
                    justify-content: center;
                    align-items: center;

                    .single_pag:not(.seta){
                        width: 80px;
                        height: 80px;
                        background-color: transparent;
                        border: 1px solid #523D83;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        font-weight: 400;
                        font-size: 22px;
                        line-height: 24px;
                        color: #523D83;
                        border-radius: 50%;

                        &.active{
                            background-color: #fff;
                            border-color: #fff;
                            font-weight: 700;
                        }

                        &:not(.active){
                            cursor: pointer;
                        }

                    }
                }

            }

            .caixa_alerta{
                border: 2px solid #FFFFFF;
                border-radius: 44px;
                padding: 7% 7% 9% 7%;
            }

        }

    }

}


/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/

#contactos{

    .caixa_contactos{
        background-color: #F5F7FA;
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
        border-top-right-radius: 40px;
        padding: 40px 5.5%;

        .text_contactos{
            font-weight: 400;
            font-size: 28px;
            line-height: 38px;
            color: #050B20;

            strong{
                font-weight: 700;
                font-size: 24px;
                line-height: 40px;
                color: #523D83;
            }
        }

        .telefone{
            font-family: 'Inter';
            font-weight: 400;
            font-size: 34px;
            line-height: 20px;
            color: #050B20;
        }

    }

    .form-contactos{
        background-color: #F5F7FA;
        border-radius: 40px;
        padding: 45px 55px;

    }

}


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

footer{
    background-color: #050B20;
    color: #FFFFFF;

    font-family: 'Lexend';
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;

    h4{
        font-family: 'Lexend';
        font-weight: 600;
        font-size: 30px;
        line-height: 30px;
        color: #FFFFFF;
    }

    h5{
        font-family: 'Lexend';
        font-weight: 700;
        font-size: 22px;
        line-height: 24px;
        color: #FFFFFF;
        margin-bottom: 20px;
    }

    p{
        margin: 0;
    }

    ul{
        list-style: none;
        padding: 0;
        li{
            margin: 10px 0;
        }
    }

    .newsletter{
        padding: 45px 0;
        border-bottom: 1px solid #141F45;

        #form_newsletter{
            text-align: right;

            .form_holder{
                display: inline-block;
                text-align: left;

                input[type="email"],
                input[type="text"]{
                    padding: 25px 30px;
                    color: #fff;
                    border: none;
                    outline: none;
                    max-width: 100%;
                    width: 540px;
                    background: rgba(255, 255, 255, 0.13);
                    border-radius: 60px;
                }

                button{
                    position: absolute;
                    z-index: 1;
                    top: 10px;
                    right: 15px;
                    padding: 15px 20px;
                    background-color: var(--background-color-orange);
                    border-radius: 60px;
                    border: none;
                    color: #fff;
                }

                .rgpd{
                    padding-left: 30px;
                }

                .rgpd_auth_checkbox {
                    position: relative;
                    margin-top: 10px;
                }

                .rgpd_auth_checkbox label{
                    font-weight: 400;
                }

                .rgpd_auth_checkbox label a {
                    font-weight: 400;
                    text-decoration: underline;
                }

                .rgpd_auth_checkbox input {
                    position: absolute;
                    opacity: 0;
                    cursor: pointer;
                    height: 0;
                    width: 0;
                }

                .rgpd_auth_checkbox .checkmark {
                    margin-left: 25px;
                    margin-top: 0;
                    margin-bottom: 0;
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 28px;
                    color: rgba(255, 255, 255, 0.61);
                }

                .rgpd_auth_checkbox .checkmark:after {
                    content: "";
                    position: absolute;
                    display: none;
                }

                .rgpd_auth_checkbox input:checked ~ .checkmark:after {
                    display: block;
                }

                .rgpd_auth_checkbox .checkmark:before {
                    content: '';
                    position: absolute;
                    top: 7px;
                    left: 4px;
                    height: 13px;
                    width: 13px;
                    border: 1px solid rgba(255, 255, 255, 0.6);
                    border-radius: 10px;
                }

                .rgpd_auth_checkbox .checkmark:after {
                    left: 11px;
                    top: 1px;
                    width: 4px;
                    height: 14px;
                    border: solid rgba(255, 255, 255, 0.6);
                    border-width: 0 1px 1px 0;
                    -webkit-transform: rotate(37deg);
                    -ms-transform: rotate(37deg);
                    transform: rotate(37deg);
                }

            }

            .alert{
                margin-top: 1rem;
                margin-bottom: 0;
            }

        }
    }

    .main_footer{
        padding: 50px 0;

        .content_marcas{
            text-align: center;

            .helper{
                text-align: left;
                display: inline-block;

                table{
                    border: none;

                    tr{
                        td{
                            padding: 8px 0;
                        }
                        td:first-child{padding-right: 40px;}
                        td:last-child{padding-left: 40px;}
                    }
                }
            }
        }

        .content_siga_nos{
            text-align: center;

            .helper {
                text-align: left;
                display: inline-block;
            }

            .content_morada{
                line-height: 1.4;
            }

        }

        .redes_sociais{
            margin-bottom: 20px;

            span{
                display: inline-block;
                margin: 0 20px;
            }
        }

    }

    .lower_footer{
        font-family: 'Lexend';
        font-weight: 400;
        font-size: 15px;
        line-height: 28px;
        padding: 35px 0;
        border: 2px solid rgba(82, 61, 131, 0.2);
    }

}


@media (max-width: 1200px){

    footer {
        font-size: 12px;

        h5{
            font-size: 19px;
        }

        .newsletter {
            #form_newsletter {
                .form_holder {
                    input[type="email"], input[type="text"] {
                        width: 480px;
                    }
                }
            }
        }
    }

    footer {
        .lower_footer {
            font-size: 12px;
        }
    }

}

@media (max-width: 991px){

    footer {
        font-size: 15px;

        .newsletter {
            #form_newsletter {
                text-align: center;
                margin-top: 25px;;
            }
        }

        .main_footer {
            .content_marcas,
            .content_siga_nos{
                text-align: left;
                margin-top: 40px;
                margin-bottom: 40px;
            }
        }

    }

}


@media (max-width: 767px){

    footer {
        .newsletter {
            #form_newsletter {
                .form_holder {
                    input[type="email"], input[type="text"] {
                        width: 330px;
                    }
                }
            }
        }
    }

}




