html, body{
    width: 100%;
    position: relative;
}

body{
    background-color: #F1F1F9;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 130%;

    @media screen and (max-width: 992px){
        &{
            font-size: 14px;
        }
    }
}

h1, h2, h3, h4, h5, h6{
    font-family: "Plus Jakarta Sans", sans-serif;
}
body.open{
    overflow: hidden;
}


.left{ text-align: left; }
.center{ text-align: center; }
.right{ text-align: right; }

.row,
.form-group{
    margin: 0 !important;
    overflow: hidden;
}


.iframe_holder{
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
}

.iframe_holder iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


@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: 1099px;
    }
}


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

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

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

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

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

.btn1{
    display: flex;
    padding: 10px 21px;
    gap: 7px;
    justify-content: center;
    background: #EF7C0F;
    border: 1px solid #EF7C0F;
    border-radius: 60px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    align-items: center;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    svg{
        path{
            transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
        }
    }
    &:hover{
        background: transparent;
        border: 1px solid #EF7C0F;
        color: #EF7C0F;
        svg{
            path{
                fill: #EF7C0F;
            }
        }
    }
}

.bg_light{
    background: #DFDFED;

    .cabecalho {
        .titulo_small {
            color: #EF7C0F;
        }
    }
}
.bg_dark{
    background: #292833;

    .cabecalho {
        .titulo_small {
            color: #fff;
        }
        .descricao {
            color: #fff;
            h2 {
                color: #fff;
                span{
                    color: #EF7C0F !important;
                }
            }
        }
    }
}

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

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    padding: 40px 0;
    width: 100%;
    z-index: 6;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    .navbar-header {
        float: unset;
        width: 299px;
        display: inline-block;
        vertical-align: middle;
        img{
            width: 100%;
            max-width: 100%;
        }
    }
    .menu-toggler{
        background: transparent;
        border: 0;
        width: 35px;
        cursor: pointer;

        display: none;


        #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
            width: 38px;
            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;

            span {
                display: block;
                position: absolute;
                height: 3px;
                width: 100%;
                background: #292833;
                border-radius: 0;
                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;
                &:nth-child(1) {
                    top: 0px;
                }
                &:nth-child(2) {
                    top: 10px;
                }
                &:nth-child(3) {
                    top: 20px;
                }
            }
            &.open span {
                background: #292833;
                -webkit-transition: .25s ease-in-out;
                -moz-transition: .25s ease-in-out;
                -o-transition: .25s ease-in-out;
                transition: .25s ease-in-out;
                &:nth-child(1) {
                    top: 12px;
                    -webkit-transform: rotate(140deg);
                    -moz-transform: rotate(140deg);
                    -o-transform: rotate(140deg);
                    transform: rotate(140deg);
                }
                &:nth-child(2) {
                    opacity: 0;
                    left: -60px;
                }
                &:nth-child(3) {
                    top: 12px;
                    -webkit-transform: rotate(-140deg);
                    -moz-transform: rotate(-140deg);
                    -o-transform: rotate(-140deg);
                    transform: rotate(-140deg);
                }
            }
        }
    }
    .menu{
        margin: 0;
        float: unset;
        color: #F2F2F2;
        width: Calc(100% - 304px);
        text-align: right;
        vertical-align: middle;
        ul{
            padding: 0;
        }

        @media screen and (min-width: 993px) {

            & {
                display: inline-block !important;
            }

        }
    }
    .menu-nav{
        list-style: none;
        margin: 0;
        .dropdown{
            display: inline-block;
            padding: 0 30px;
            cursor: pointer;
            color: #F2F2F2;
            position: relative;
            font-family: "Plus Jakarta Sans", sans-serif;
            &:after{
                content: '';
                border: 1px solid rgba(41, 40, 51, 0.1);
                height: 22px;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
            }
            &:last-child{
                padding: 0 0 0 30px;
            }
            &.not_border{
                &:after{
                    display: none;
                }
            }
            a{
                font-weight: 500;
                font-size: 18px;
                line-height: 150%;
                color: #292833;
                text-decoration: none !important;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
            }
            &.button{
                padding: 0;
                a{
                    display: block;
                    padding: 12px 20px;
                    background: rgba(239, 124, 15, 0.2);
                    border: 1px solid #EF7C0F;
                    border-radius: 40px;
                    &:hover{
                        color: #fff !important;
                        background: #EF7C0F;
                    }
                }
            }

            a:hover,
            &.active > a {
                color: #EF7C0F !important;
                text-decoration: none !important;
            }
            .dropdown-toggle::after {
                border-top: 0.4em solid;
                border-right: .2em solid transparent;
                border-bottom: 0;
                border-left: .2em solid transparent;
                vertical-align: middle;
            }
            .dropdown-menu {
                cursor: default;
                text-align: left;
                color: #000;
                margin-top: 20px !important;
                top: 5px;
                background: #292833;
                border: 1px solid #EF7C0F;
                border-radius: 5px;
                padding: 20px;
                min-width: 270px;
                li{
                    padding: 25px 0;
                    text-align: center;
                    border-bottom: 1px solid #EF7C0F;
                    &:last-child{
                        border-bottom: none;
                    }
                }
                a {
                    font-family: "DM Sans", sans-serif;
                    color: #F2F2F2;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 150%;
                    text-align: center;

                }

                a:hover,
                li.active > a,
                li.active:hover > a {
                    color: #D43838;
                    text-decoration: none !important;
                }

            }
            &.language{
                a{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-transform: uppercase;
                    img{
                        margin-right: 5px;
                    }
                }
            }

        }
    }

    &.open,
    &.scroll{
        background: #F1F1F9;
        box-shadow: 0px 0px 11px rgb(41 41 50 / 20%);
    }
    &.dark.open,
    &.dark.scroll{
        background: #292833;
    }
    &.dark,
    &.dark.open,
    &.dark.scroll{
        .menu-toggler{
            #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
                span {
                    background: #F2F2F2;
                }
                &.open span {
                    background: #F2F2F2;
                }
            }
        }
    }
    &.dark,
    &.dark.scroll{
        .menu-nav {
            .dropdown {
                &:after{
                    border: 1px solid #F2F2F2;
                }
                a {
                    color: #F2F2F2;
                    a:hover,
                    &.active > a,
                    &.active:hover > a {
                        color: #EF7C0F !important;
                        text-decoration: none !important;
                    }
                }
                &.button{
                    a{
                        &:hover{
                            color: #F2F2F2 !important;
                            background: #EF7C0F;
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1500px) {
        &{
            .navbar-header {
                width: 250px;
            }
            .menu {
                width: Calc(100% - 255px);
                .dropdown {
                    a {
                        font-size: 16px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            .menu {
                .dropdown {
                    padding: 0 15px;
                    &:last-child {
                        padding: 0 0 0 15px;
                    }
                    .dropdown-menu {
                        li {
                            padding: 15px 0;
                        }
                    }
                }
            }
        }
    }


    @media screen and (max-width: 1300px) {
        &{
            .navbar-header {
                width: 200px;
            }
            .menu {
                width: Calc(100% - 205px);
                .dropdown {
                    a {
                        font-size: 14px;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1300px) {
        &{
            .navbar-header {
                width: 180px;
            }
            .menu {
                width: Calc(100% - 185px);
                .dropdown {
                    a {
                        font-size: 13px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{

            .navbar-header {
                width: Calc(100% - 40px);
                img{
                    width: 180px;
                }
            }
            .menu-toggler{
                display: inline-block;
                vertical-align: middle;
            }
            .menu{
                width: 100%;
                display: none;
                padding-top: 40px;
                .dropdown {
                    display: block;
                    padding: 15px 0;
                    text-align: center;
                    &:after {
                        content: '';
                        border: 1px solid rgba(41, 40, 51, 0.1);
                        height: 0;
                        position: absolute;
                        left: 50%;
                        top: 0;
                        transform: translateX(-50%);
                        -moz-transform: translateX(-50%);
                        -webkit-transform: translateX(-50%);
                        width: 100%;
                    }
                    a{
                        text-align: center;
                    }
                    &.button {
                        padding: 15px 0 0;
                    }
                    &.language {
                        padding: 30px 0 0;
                        a {
                            justify-content: center;
                        }
                    }
                    .dropdown-menu{
                        position: relative !important;
                        margin: 10px 0 !important;
                        top: unset !important;
                        left: unset !important;
                        width: 100% !important;
                        min-width: unset !important;
                        transform: unset !important;
                        padding-top: 0;
                        padding-bottom: 0;
                        & a {
                            font-size: 14px;
                        }
                    }
                }
            }

        }
    }
}

/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/
.fakebanner{
    height: 133px;

    @media screen and (max-width: 992px){
        & {
            height: 107px;
        }
    }
}

.banner_interno{
    background: #292833;
    text-align: center;
    position: relative;
    .forma{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    h1, h2{
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 40px;
        line-height: 120%;
        color: #FFFFFF;
    }
    .descricao{
        margin-top: 10px;
        color: #FFFFFF;
    }
    @media screen and (max-width: 1400px) {
        &{
            h1, h2{
                font-size: 35px;
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            h1, h2{
                font-size: 30px;
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            h1, h2{
                font-size: 25px;
            }
        }
    }
}

.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    .holder_slider{
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        img{
            width: 100%;
        }
        .single_banner{
            position: relative;
            &:after{
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(269.99deg, rgba(0, 0, 0, 0) 0.01%, rgba(0, 0, 0, 0.7) 75.87%);
            }
            .iframe_holder{
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

            video{
                position: absolute;
                width: 100%;
                top: Calc( 50% - 36px );
                left: 50%;
                -webkit-transform: translate(-50%,-50%);
                -ms-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
                z-index: 1;
            }
            .conteudo{
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                text-align: left;
                margin: auto;
                z-index: 2;

                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                transition: all .3s;

                .descricao{
                    font-family: 'DM Sans', sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 24px;
                    line-height: 31px;
                    color: #F2F2F2;
                    h1, h2{
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 55px;
                        line-height: 65px;
                        color: #F2F2F2;
                        span{
                            color: #EF7C0F !important;
                        }
                    }
                }

            }
        }
    }

    &,
    .holder_slider .single_banner,
    .holder_slider .single_banner .holder_content,
    .holder_slider .single_banner .holder_content_img{
        width: 100%;
        height: 1300px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .owl-dots {
        position: absolute;
        bottom: 20px;
        text-align: center;
        margin: -25px auto 0;
        left: 0;
        right: 0;
        .owl-dot {
            width: 15px;
            height: 15px;
            display: inline-block;
            margin: 0 5px;
            border-radius: 100%;
            border: 2px solid #fff;
            background: #fff;
            &.active {
                background: #F9BC23;
                border: 2px solid #F9BC23;
            }
        }
    }
    .zona_formulario{
        position: absolute;
        top: 310px;
        width: 100%;
        left: 0;
        .holder_formulario{
            margin: 0 auto 0 0;
        }
    }

    @media screen and (max-width: 1400px){
        & {
            .holder_slider {
                .single_banner {
                    .conteudo {
                        .descricao {
                            font-size: 20px;
                            line-height: 27px;
                            h1, h2 {
                                font-size: 50px;
                                line-height: 60px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        & {
            .holder_slider {
                .single_banner {
                    .conteudo {
                        .descricao {
                            font-size: 18px;
                            line-height: 25px;
                            h1, h2 {
                                font-size: 40px;
                                line-height: 50px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        & {
            .holder_slider {
                .single_banner {
                    .conteudo {
                        .descricao {
                            text-align: center;
                            font-size: 16px;
                            line-height: 22px;
                            h1, h2 {
                                font-size: 30px;
                                line-height: 40px;
                            }
                        }
                    }
                }
            }

            .zona_formulario{
                top: 250px;
                .holder_formulario{
                    margin: 0 auto;
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        & {
            .holder_slider {
                .single_banner {
                    .conteudo {
                        .descricao {
                            text-align: center;
                            font-size: 14px;
                            line-height: 20px;
                            h1, h2 {
                                font-size: 25px;
                                line-height: 35px;
                            }
                        }
                    }
                }
            }

            .zona_formulario{
                top: 280px;
            }
        }
    }
}

.holder_formulario{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 70px 45px;
    width: 520px;
    max-width: 100%;
    margin: 0 auto;

    .passo.hide{
        display: none;
    }
    h3{
        font-style: normal;
        font-weight: 600;
        font-size: 38px;
        line-height: 130%;
        color: #292833;
        margin-bottom: 15px;
        text-align: center;
    }
    .descricao{
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        color: #292833;
        text-align: center;
        margin-bottom: 25px;
    }
    .btn1{
        width: 100%;
    }
    .row{
        overflow: unset;
    }
    .single_input{
        margin-bottom: 20px;
        text-align: left;
        .zona_input{
            background: #F2F2F2;
            border: 1px solid #EF7C0F;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

            .input{
                background: transparent;
                border: none;
                width: 100%;
                outline: none;
            }
            textarea{
                height: 100px;
                resize: none;
            }
            .price-filter-range{
                margin: 0 auto 5px auto;
                width: Calc(100% - 10px);
            }
            .input_number{
                display: flex;
                align-items: center;
                justify-content: flex-end;
                input{
                    background: transparent;
                    border: none;
                    outline: none;
                    width: 100%;
                    text-align: right;
                }
                &, input{
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 15px;
                    line-height: 26px;
                    color: rgba(41, 40, 51, 0.7);
                }
            }
        }
        &.tipo_credito{
            .zona_input{
                label{
                    position: relative;
                    cursor: pointer;
                    align-items: center;
                    flex-wrap: wrap;
                    input{
                        position: absolute;
                        opacity: 0;
                        visibility: hidden;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        right: 0;
                    }
                    .icon{
                        width: 45px;
                        height: 45px;
                        background: #EF7C0F;
                        position: relative;
                        border-radius: 50%;
                        img{
                            position: absolute;
                            width: 70%;
                            height: 70%;
                            object-fit: contain;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            -moz-transform: translate(-50%, -50%);
                            -webkit-transform: translate(-50%, -50%);
                        }
                    }
                    span{
                        width: Calc(100% - 45px);
                        padding-left: 40px;
                    }
                }
            }
        }
        &.radio{
            justify-content: space-between;
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 10px;
            label{
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 20px;
                line-height: 26px;
                color: rgba(41, 40, 51, 0.7);
                cursor: pointer;
            }
        }
        .zona_radio{
            .switch {
                position: relative;
                cursor: pointer;
                input{
                    position: absolute;
                    opacity: 0;
                    visibility: hidden;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                }
            }
            .switch_button{
                display: inline-block;
                position: relative;
                width: 50px;
                height: 26px;
                border-radius: 20px;
                background: #F2F2F2;
                transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
                vertical-align: middle;
                cursor: pointer;

                border: 2px solid #EF7C0F;
            }
            .switch_button::before {
                content: '';
                position: absolute;
                top: 2px;
                left: 2px;
                width: 22px;
                height: 18px;
                background: #EF7C0F;
                border-radius: 20px;
                transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .switch_button:active::before {
                box-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 0 0 20px rgba(128,128,128,0.1);
            }
            input:checked + .switch_button {
                background: #EF7C0F;
            }
            input:checked + .switch_button::before {
                left: 22px;
                background: #fff;
            }
            input:checked + .switch_button:active::before {
                box-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 0 0 20px rgba(0,150,136,0.2);
            }
        }
        label{
            display: block;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 26px;
            color: #EF7C0F;
        }
        &.rgpd{
            label{
                display: block;
                position: relative;
                padding-left: 25px;
                cursor: default;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }
            input{
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
            }
            label, a{
                font-family: 'DM Sans', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 12px;
                line-height: 15px;
                color: #292833;
            }
            label{
                .checkbox {
                    position: absolute;
                    top: -1px;
                    left: 0;
                    height: 17px;
                    width: 17px;
                    cursor: pointer;
                    background: #D9D9D9;
                    border: 1px solid #EF7C0F;
                    border-radius: 5px;

                    &:after {
                        content: "";
                        position: absolute;
                        display: none;
                        left: 5px;
                        top: 1px;
                        width: 5px;
                        height: 11px;
                        border: solid #EF7C0F;
                        border-width: 0 2px 2px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }
                input:checked ~ .checkbox:after {
                    display: block;
                }

            }
        }
        .select2-container {
            width: 100% !important;
        }
        .select2-container--default .select2-selection--single {
            background-color: transparent;
            border: none;
            border-radius: 0;
        }
        .select2-container .select2-selection--single {
            height: auto;
        }
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 15px;
            line-height: 26px;
            color: rgba(41, 40, 51, 0.7);
            height: auto;
            padding-left: 0;
        }
        .ui-slider-handle:nth-child(2){
            display: none;
        }
        .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
            border: 1px solid #ef7c0e;
            background: #ef7c0e;
            font-weight: normal;
            border-radius: 50%;
        }
        .ui-widget.ui-widget-content {
            border: 1px solid #ef7c0e;
            border-radius: 10px;
        }
        .ui-widget-header {
            background: #ef7c0e;
        }
        .ui-widget-content {
            background: transparent;
        }
        .ui-slider-horizontal {
            height: 8px;
        }
        .ui-slider-horizontal .ui-slider-handle {
            top: -6px;
        }
    }
    .voltar{
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-family: 'DM Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        color: #EF7C0F;
    }

    @media screen and (max-width: 1400px){
        &{
            h3{
                font-size: 35px;
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            h3{
                font-size: 33px;
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            h3{
                font-size: 25px;
            }
            .descricao {
                font-size: 14px;
                line-height: 25px;
            }
        }
    }
    @media screen and (max-width: 767px){
        &{
            padding: 40px 25px;
            .single_input {
                &.tipo_credito {
                    .zona_input {
                        label {
                            span {
                                padding-left: 10px;
                            }
                        }
                    }
                }
                label {
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        &{
            padding: 40px 5px;
            .single_input {
                &.radio {
                    label {
                        font-size: 18px;
                        line-height: 24px;
                    }
                }
                &.tipo_credito {
                    .zona_input {
                        label {
                            .icon{
                                width: 35px;
                                height: 35px;
                            }
                            span {
                                width: Calc(100% - 35px);
                                padding-left: 10px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 400px){
        &{
            .single_input {
                &.tipo_credito {
                    .zona_input {
                        label {
                            .icon{
                                width: 25px;
                                height: 25px;
                            }
                            span {
                                width: Calc(100% - 25px);
                            }
                        }
                    }
                }
            }
        }
    }
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #ef7c0e;
    color: white;
}
/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/

.bloco{
    position: relative;
    width: 100%;
    padding: 85px 0;
}

.bloco.no-margin{
    padding: 0;
}


@media screen and (max-width: 992px) {

    .bloco{
        padding: 40px 0;
    }
}


/*==================================================================================================*/
/*MIDDER*/
/*==================================================================================================*/


.midder{
    width: 100%;
    height: 650px;
    position: relative;

    /*background-attachment: fixed;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo {
    width: 30%;
    top: 20%;
    left: 0;
    text-align: left;
    position: absolute;
    padding: 0 2%;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo h2 {
    font-size: 48px;
    color: #111;
    text-transform: none;
}
.midder .conteudo p {
    font-size: 17px;
    color: #838383;
}


@media screen and (max-width: 992px) {

    .midder {
        height: 250px;
        background-attachment: initial;
    }
    .midder .conteudo h2 {
        font-size: 25px;
    }
}

/*@media screen and (max-width: 470px) {

	.midder {
		height: 250px;
	}
	.midder .conteudo h2 {
		font-size: 25px;
	}
}*/


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/
.cabecalho{
    margin: 0 auto;
    max-width: 900px;
    .titulo_small{
        margin-bottom: 20px;
        color: #292833;
    }
    .descricao{
        font-family: 'DM Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        color: #292833;
    }

    h1, h2{
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 40px;
        line-height: 150%;
        color: #292833;
        margin-bottom: 20px;
        span{
            color: #EF7C0F !important;
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            h1, h2{
                font-size: 35px;
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            h1, h2{
                font-size: 30px;
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            h1, h2{
                font-size: 25px;
            }
        }
    }
}
.h3{

    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 120%;
    color: #292833;

    @media screen and (max-width: 1400px) {
        &{
            font-size: 30px;
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            font-size: 25px;
        }
    }
    @media screen and (max-width: 992px) {
        &{
            font-size: 20px;
        }
    }
}
#homepage{
    .posicionamento{
        .holder_posicionamento{
            margin-top: 85px;
            flex-wrap: wrap;
            .single_pagina{
                padding: 5px;
                width: Calc(100% / 3);
                &.categoria{
                    .logo{
                        height: 100%;
                        text-align: center;
                        img{
                            height: 100%;
                            max-width: 100%;
                            object-fit: contain;
                        }
                    }
                }
                .holder_single_pagina{
                    padding: 30px 60px;
                    height: 100%;
                    .icon{
                        text-align: center;
                        margin-bottom: 40px;
                        img{
                            width: 90px;
                            height: 80px;
                            position: relative;
                            object-fit: contain;
                        }
                    }
                    .h3{
                        text-align: center;
                    }
                    .descricao{
                        font-family: 'DM Sans', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 31px;
                        text-align: center;
                        color: #000000;
                        padding-top: 35px;
                        margin-top: 35px;
                        border-top: 1px solid #A8A6C9;
                    }
                }
                &:nth-child(odd){
                    .holder_single_pagina{
                        background: #fff;
                        border: 2px solid #fff;
                    }
                }
                &:nth-child(even){
                    .holder_single_pagina{
                        background: #ECECF4;
                        border: 1px solid #A8A6C9;
                    }
                }
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .holder_posicionamento{
                    .single_pagina{
                        .holder_single_pagina{
                            padding:30px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .holder_posicionamento{
                    justify-content: center;
                    .single_pagina{
                        width: 50%;
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                .holder_posicionamento{
                    justify-content: center;
                    margin-top: 40px;
                    .single_pagina{
                        width: 100%;
                        padding: 5px 0;
                    }
                }
            }
        }
    }

    .testemunhos{
        .custom_container{
            position: relative;
            z-index: 2;
        }
        position: relative;
        .elipse{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            max-width: 80%;
        }
        .holder_testemunhos{
            margin-top: 85px;
            padding: 0 60px;
            .owl-stage{
                display: flex;
            }
            .owl-nav{
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                left: 0;
                width: 100%;
                button{
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                    border-radius: 50%;
                    width: 56px;
                    height: 56px;
                    border: 1px solid #FFFFFF;
                }
                .owl-prev{
                    left: 0;
                }
                .owl-next{
                    right: 0;
                }
            }
            .single_testemunho{
                padding: 20px;
                height: 100%;
                .holder_single_testemunho{
                    background: rgba(239, 124, 15, 0.1);
                    border: 1px solid #EF7C0F;
                    border-radius: 5px;
                    padding: 35px;
                    height: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    .site{
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 25px;
                        line-height: 120%;
                        color: #FFFFFF;
                        width: 100%;
                    }
                    .descricao{
                        color: #FFFFFF;
                        width: 100%;
                        padding: 30px 0;
                        margin: 30px 0;
                        border-top: 1px solid #EF7C0F;
                        border-bottom: 1px solid #EF7C0F;
                    }
                    .info_testemunho{
                        display: flex;
                        width: 100%;
                        flex-wrap: wrap;
                        align-items: center;
                        position: relative;
                        svg{
                            position: absolute;
                            top: 0;
                            right: 0;
                            z-index: 0;
                            height: auto;
                            max-width: 50%;
                        }
                        .icon{
                            position: relative;
                            z-index: 1;
                            width: 64px;
                            height: 64px;
                            border-radius: 50%;
                            background-size: cover;
                            background-position: center;
                            background-repeat: no-repeat;
                            background-color: grey;
                        }
                        .nome{
                            position: relative;
                            z-index: 1;
                            width: Calc(100% - 64px);
                            padding-left: 30px;
                            h3{
                                font-family: 'DM Sans', sans-serif;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 18px;
                                line-height: 120%;
                                color: #FFFFFF;
                                margin-bottom: 15px;
                            }
                            .descricao{
                                font-weight: 400;
                                font-size: 15px;
                                line-height: 120%;
                                color: #FFFFFF;
                                border: none;
                                padding: 0;
                                margin: 0;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                .holder_testemunhos{
                    .single_testemunho{
                        padding: 20px;
                        height: 100%;
                        .holder_single_testemunho{
                            padding: 35px;
                            .site{
                                font-size: 20px;
                            }
                            .info_testemunho{
                                .nome{
                                    padding-left: 30px;
                                    h3{
                                        font-size: 16px;
                                        line-height: 120%;
                                    }
                                    .descricao{
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{

                .holder_testemunhos{
                    padding: 0 40px;
                    margin-top: 40px;
                    .owl-nav {
                        button {
                            width: 36px;
                            height: 36px;
                        }
                    }
                    .single_testemunho{
                        padding: 10px;
                        height: 100%;
                        .holder_single_testemunho{
                            padding: 20px;
                            .site{
                                font-size: 18px;
                            }
                            .info_testemunho{
                                .nome{
                                    padding-left: 20px;
                                    h3{
                                        font-size: 14px;
                                    }
                                    .descricao{
                                        font-size: 12px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .parceiros{
        .cabecalho{
            margin-bottom: 50px;
        }
        .holder_parceiros{
            .owl-stage{
                display: flex;
                align-items: center;
            }
            .single_parceiro{
                padding: 0 45px;
                @media screen and (max-width: 992px){
                    &{
                        padding: 0 25px;
                    }
                }
                @media screen and (max-width: 767px){
                    &{
                        padding: 0 15px;
                    }
                }
                @media screen and (max-width: 567px){
                    &{
                        padding: 0 5px;
                    }
                }
            }
        }
    }
}

.vantagens{
    .holder_vantagens{
        margin-top: 60px;
        flex-wrap: wrap;
        .single_vantagens{
            width: Calc(100% / 3);
            &:nth-child(1),
            &:nth-child(2){
                border-bottom: 1px solid rgba(41, 40, 51, 0.3);
                border-right: 1px solid rgba(41, 40, 51, 0.3);
            }
            &:nth-child(3){
                border-bottom: 1px solid rgba(41, 40, 51, 0.3);
            }
            &:nth-child(4),
            &:nth-child(5){
                border-right: 1px solid rgba(41, 40, 51, 0.3);
            }
            .holder_single_testemunho{
                padding: 70px;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                align-content: center;
                height: 100%;
                .imagem{
                    width: 110px;
                    img{
                        width: 100%;
                    }
                }
                .descricao{
                    width: Calc(100% - 110px);
                    padding-left: 40px;
                }
            }
            &.link{
                .holder_single_testemunho{

                    a{
                        color: inherit;
                        text-decoration: none;
                        &:hover{
                            text-decoration: underline;
                        }
                    }
                    .descricao{
                        font-family: 'DM Sans';
                        font-style: normal;
                        font-weight: 500;
                        font-size: 25px;
                        line-height: 30px;
                        color: #EF7C0F;
                        padding-left: 0;
                        width: 100%;
                        text-align: center;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1500px){
        .holder_vantagens{
            .single_vantagens{
                .holder_single_testemunho{
                    padding: 70px 40px;
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        .holder_vantagens{
            .single_vantagens{
                .holder_single_testemunho{
                    padding: 70px 20px;

                    .imagem{
                        width: 90px;
                    }
                    .descricao{
                        width: Calc(100% - 90px);
                        padding-left: 30px;
                    }
                }
                &.link{
                    .holder_single_testemunho{

                        .descricao{
                            font-size: 20px;
                            line-height: 30px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        .holder_vantagens{
            .single_vantagens{
                width: 50%;
                &:nth-child(2){
                    border-right: none;
                }
                &:nth-child(3){
                    border-bottom: 1px solid rgba(41, 40, 51, 0.3);
                    border-right: 1px solid rgba(41, 40, 51, 0.3);
                }
                &:nth-child(4){
                    border-right: none;
                    border-bottom: 1px solid rgba(41, 40, 51, 0.3);
                }
                &:nth-child(5){
                    border-right: 1px solid rgba(41, 40, 51, 0.3);
                }
                .holder_single_testemunho{
                    padding: 40px 20px;

                    .imagem{
                        width: 60px;
                    }
                    .descricao{
                        width: Calc(100% - 60px);
                        padding-left: 15px;
                    }
                }
                &.link{
                    .holder_single_testemunho{
                        .descricao{
                            font-size: 18px;
                            line-height: 25px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        .holder_vantagens{
            .single_vantagens{
                width: 100%;
                &:nth-child(1){
                    border-right: none;
                }
                &:nth-child(3){
                    border-right: none;
                }
                &:nth-child(5){
                    border-bottom: 1px solid rgba(41, 40, 51, 0.3);
                    border-right: none;
                }
                .holder_single_testemunho{
                    padding: 40px 20px;

                    .imagem{
                        width: 60px;
                    }
                    .descricao{
                        width: Calc(100% - 60px);
                        padding-left: 15px;
                    }
                }
                &.link{
                    .holder_single_testemunho{
                        .descricao{
                            font-size: 18px;
                            line-height: 25px;
                        }
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/
#quem-somos{
    .holder_quem_somos{
        flex-wrap: wrap;
        h2{
            color: #EF7C0F;
        }
        .info{
            width: 60%;
            padding-right: 80px;
            .descricao{
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-weight: 500;
                font-size: 16px;
                line-height: 180%;
                letter-spacing: -0.01em;
                color: #292833;
            }
            .conteudo{
                margin-top: 30px;
               span{
                   color: #EF7C0F !important;
               }
            }
        }
        .imagem{
            width: 40%;
            img{
                width: 100%;
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            .holder_quem_somos{
                .info{
                    padding-right: 40px;
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .holder_quem_somos{
                .info{
                    padding-right: 30px;
                    .descricao{
                        font-size: 14px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .holder_quem_somos{
                .info{
                    width: 100%;
                    padding-right:0;
                }
                .imagem{
                    width: 100%;
                    margin-top: 40px;
                }
            }
        }
    }

    .posicionamento{
        .holder_posicionamento{
            .single_pagina{
                padding: 10px 0;
                .holder_single_pagina{
                    background: #ECECF4;
                    border: 1px solid #A8A6C9;
                    padding: 25px 45px;
                    .h3{
                        position: relative;
                        &:after{
                            content: '';
                            position: relative;
                            display: block;
                            width: 412px;
                            max-width: 100%;
                            height: 1px;
                            background: #A8A6C9;
                            margin: 25px 0;
                        }
                    }
                    .descricao{
                        line-height: 180%;
                    }
                }
            }
        }

        @media screen and (max-width: 992px){
            &{
                .holder_posicionamento{
                    .single_pagina{
                        .holder_single_pagina{
                            padding: 25px;
                        }
                    }
                }
            }
        }
    }

    .limitacoes{
        background: #292833;
        position: relative;
        overflow: hidden;
        text-align: center;
        padding: 150px 0;
        .elipse{
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            left: 7%;
            width: 100%;
            z-index: 0;
        }
        .custom_container{
            position: relative;
            z-index: 2;
        }
        h2{
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 55px;
            line-height: 150%;
            color: #FFFFFF;
        }
        .descricao{
            margin-top: 50px;
            font-weight: 600;
            font-size: 24px;
            line-height: 150%;
            text-align: center;
            color: #F2F2F2;
        }
        @media screen and (max-width: 1400px){
            &{

                h2{
                    font-size: 45px;
                }
                .descricao{
                    font-size: 20px;
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{

                h2{
                    font-size: 35px;
                }
                .descricao{
                    font-size: 18px;
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                padding: 80px 0;
                h2{
                    font-size: 25px;
                }
                .descricao{
                    font-size: 16px;
                    margin-top: 20px;
                }
            }
        }
    }
}


/*==================================================================================================*/
/*VANTAGENS*/
/*==================================================================================================*/
#vantagens{
    .titulo_small{
        color: #EF7C0F;
    }
}


/*==================================================================================================*/
/*VANTAGENS*/
/*==================================================================================================*/
#intermediario-de-credito{
    .cabecalho{
        max-width: 100%;
        margin-bottom: 70px;
    }
    .info_intermediario{
        text-align: center;
        max-width: 965px;
        margin: 0 auto;
        h3{
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 25px;
            line-height: 150%;
            color: #292833;
            margin-bottom: 30px;
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            .info_intermediario{
                h3{
                    font-size: 22px;
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .info_intermediario{
                h3{
                    font-size: 20px;
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .cabecalho{
                margin-bottom: 30px;
            }
            .info_intermediario{
                h3{
                    font-size: 18px;
                }
            }
        }
    }
}


/*==================================================================================================*/
/*SERVIÇO*/
/*==================================================================================================*/
#servico{
    .form_servico{
        .zona_formulario{
            padding: 40px 60px;
            height: 975px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            .holder_formulario{
                background: rgba(255, 255, 255, 0.7);
                margin-left: auto;
                margin-right: 0;
            }
        }
    }
    .info_servico{
        .cabecalho,
        .descricao{
            text-align: center;
        }
        .descricao{
            margin: 0 auto;
            max-width: 1170px;
        }
    }
    .mais_info_servico{
        .holder_mais_info_servico{
            flex-wrap: wrap;
            h3{
                margin-bottom: 40px;
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 30px;
                line-height: 150%;
                color: #292833;
                span{
                    color: #EF7C0F !important;
                }
            }
            .info{
                width: 50%;
                padding-right: 80px;
                .conteudo{
                    ul{
                        counter-reset: item;
                        margin-left: 0;
                        padding-left: 0;
                        li{
                            display: block;
                            margin-bottom: 40px;
                            padding-left: 50px;
                            position: relative;
                            &::before {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                content: counter(item);
                                counter-increment: item;
                                position: absolute;
                                width: 39px;
                                height: 39px;
                                background: rgba(239, 124, 15, 0.2);
                                border: 1px solid #EF7C0F;
                                border-radius: 50%;
                                left: 0;
                                top: -10px;
                                font-family: 'Plus Jakarta Sans', sans-serif;
                                font-style: normal;
                                font-weight: 700;
                                font-size: 20px;
                                line-height: 150%;
                                color: #EF7C0F;
                            }
                        }
                    }
                    span{
                        color: #EF7C0F !important;
                    }
                }
            }
            .imagem{
                width: 50%;
                img{
                    width: 100%;
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            .mais_info_servico{
                .holder_mais_info_servico{
                    h3{
                        font-size: 25px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .mais_info_servico{
                .holder_mais_info_servico{
                    h3{
                        font-size: 20px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .form_servico{
                .zona_formulario{
                    .holder_formulario{
                        margin-right: auto;
                    }
                }
            }
            .mais_info_servico{
                .holder_mais_info_servico{
                    flex-wrap: wrap;
                    h3{
                        margin-bottom: 30px;
                        font-size: 18px;
                    }
                    .info{
                        width: 100%;
                        padding-right: 0;
                        .conteudo{
                            ul{
                                li{
                                    display: block;
                                    margin-bottom: 30px;
                                    padding-left: 40px;
                                    position: relative;
                                    &::before {
                                        width: 30px;
                                        height: 30px;
                                        top: -5px;
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                    .imagem{
                        width: 100%;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        &{
            .form_servico{
                .zona_formulario{
                    padding: 20px 30px;
                }
            }
        }
    }
    @media screen and (max-width: 500px){
        &{
            .form_servico{
                .zona_formulario{
                    padding: 20px 15px;
                    height: 1075px;
                }
            }
        }
    }
}

/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/
#contactos{
    .cabecalho{
        margin-bottom: 85px;
        .botao_open{
            padding-top: 30px;
            .btn1{
                justify-content: center;
                margin: 0 auto;
            }
            &.hide{
                display: none;
            }
        }
        .zona_formulario{
            padding-top: 30px;
            display: none;
            &.open{
                display: block;
            }
        }
    }
    .holder_contactos{
        justify-content: center;
        gap: 100px;
        flex-wrap: wrap;
        .single_contacto{
            max-width: 300px;
            .icon{
                margin-bottom: 15px;
                img{
                    height: 42px;
                    width: 32px;
                    object-fit: contain;
                }
            }
            h3{
                font-size: 16px;
                line-height: 120%;
                color: #292833;
                margin-bottom: 10px;
            }
            .descricao,
            .descricao a{
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 25px;
                line-height: 120%;
                color: #292833;
                text-decoration: none;
            }
            .descricao a:hover{
                text-decoration: underline;
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .single_contacto{
                    .descricao, .descricao a {
                        font-size: 22px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .single_contacto{
                    .descricao, .descricao a {
                        font-size: 20px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                gap: 30px;
                flex-wrap: wrap;
                justify-content: center;
                .single_contacto{
                    width: 100%;
                    max-width: 100%;
                    text-align: center;
                    .descricao, .descricao a {
                        font-size: 18px;
                    }
                }
            }
        }
    }
    .zona_mapa{
        padding-top: 0;
        .mapa{
            border: 3px solid #EF7C0F;
            height: 700px;
            iframe{
                height: 100% !important;
                width: 100% !important;
            }
        }
    }
}
/*==================================================================================================*/
/*FAQS*/
/*==================================================================================================*/

.faqs{
    .titulo_small{
        color: #EF7C0F;
    }
    .holder_faqs {
        margin-top: 70px;
        .single_faq{
            border: 1px solid #EF7C0F;
            margin-bottom: 10px;
            padding: 40px 30px;
            .pergunta{
                cursor: pointer;
                .cabecalho{
                    position: relative;
                    padding-right: 45px;
                    width: 100%;
                    max-width: 100%;
                    margin-bottom: 0 !important;
                    h3{
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 25px;
                        line-height: 150%;
                        color: #000000;
                        margin: 0;
                    }
                    span{
                        border: 2px solid #EF7C0F;
                        width: 20px;
                        height: 20px;
                        display: block;
                        border-radius: 50%;
                        position: absolute;
                        top: 0;
                        right: 0;
                        &:after{
                            content: '';
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%,-50%);
                            -moz-transform: translate(-50%,-50%);
                            -webkit-transform: translate(-50%,-50%);
                            width: 10px;
                            height: 2px;
                            background: #EF7C0F;
                        }
                        &:before{
                            content: '';
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%,-50%);
                            -moz-transform: translate(-50%,-50%);
                            -webkit-transform: translate(-50%,-50%);
                            height: 10px;
                            width: 2px;
                            background: #EF7C0F;
                        }
                    }

                }

                &.open{
                    .cabecalho span{
                        &:before{
                            display: none;
                        }
                    }
                }
            }
            .resposta{
                display: none;
                padding-top: 30px;
                line-height: 170%;
            }
        }
    }

    @media screen and (max-width: 1400px){
        &{
            .holder_faqs {
                .single_faq{
                    .pergunta{
                        .cabecalho{
                            h3{
                                font-size: 20px;
                            }
                        }
                    }

                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .holder_faqs {
                .single_faq{
                    padding: 30px 20px;
                    .pergunta{
                        .cabecalho{
                            h3{
                                font-size: 18px;
                            }
                        }
                    }

                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .holder_faqs {
                margin-top: 40px;
                .single_faq{
                    padding: 20px 15px;
                    .pergunta{
                        .cabecalho{
                            h3{
                                font-size: 16px;
                            }
                        }
                    }

                }
            }
        }
    }
}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/
footer{
    background: #292833;
    position: relative;
    overflow: hidden;
    .elipse{
        position: absolute;
        top: 50%;
        transform: translate(50%, -50%);
        -moz-transform: translate(50%, -50%);
        -webkit-transform: translate(50%, -50%);
        right: 7%;
        width: 100%;
        z-index: 0;
    }
    .logo{
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 0;
        img{
            width: 288px;
        }
    }
    .footer{
        position: relative;
        width: 100%;
        padding: 55px 0;
        z-index: 2;

        &,
        & p,
        & label,
        & a{
            font-weight: 400;
            font-size: 16px;
            line-height: 40px;
            color: #FFFFFF;
            margin: 0;
        }
        h3{
            font-weight: 600;
            font-size: 25px;
            line-height: 150%;
            text-transform: capitalize;
            color: #FFFFFF;
        }
        .holder_footer{
            flex-wrap: wrap;
            margin: 0 -40px;
            .coluna{
                width: Calc(100% / 5);
                padding: 0 40px;
            }
            .info{
                margin-top: 40px;
                &, a{
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 150%;
                    text-transform: capitalize;
                    color: #FFFFFF;
                    text-decoration: none;
                }
                a:hover{
                    color: #EF7C0F;
                }
                ul{
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    li{
                        padding: 5px 0;
                    }
                }
                &.redes_sociais{
                    flex-wrap: wrap;
                    gap: 10px;
                    a{
                        font-size: 20px;
                    }
                }
            }
        }
    }

    .lower_footer {
        padding: 40px 0;
        text-align: center;
        position: relative;
        z-index: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        &,
        a,
        p,
        label{
            text-transform: capitalize;
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 35px;
            color: #FFFFFF;
        }
        
        .prr{
            text-align:center;
            margin-bottom:25px;
            img{
                max-width: 100%;
            }
        }
    }



    @media screen and (max-width: 1300px) {
        &{
            .footer{
                h3{
                    font-size: 20px;
                }
                .holder_footer{
                    .coluna{
                        width: Calc(100% / 4);
                    }
                    .info{
                        margin-top: 20px;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 992px) {
        &{
            .logo{
                img{
                    width: 150px;
                }
            }
            .footer{
                padding: 0;
                h3{
                    font-size: 20px;
                }
                .holder_footer{
                    .coluna{
                        width: Calc(100% / 2);
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        &{
            .elipse{
                top: unset;
                transform: translateX(50%);
                -moz-transform: translateX(50%);
                -webkit-transform: translateX(50%);
                bottom: -10%;
            }
            .footer{
                padding: 20px 0;
                h3{
                    font-size: 18px;
                }
                .holder_footer{
                    margin: 0;
                    .coluna{
                        width: 100%;
                        padding: 20px 0;
                    }
                }
            }
        }
    }
}


.politica_privacidade a{
    color: inherit;
}
.politica_privacidade table{
    max-width: 100% !important;
    border: none !important;
}

.politica_privacidade table tr td{
    width: Calc(100% / 3) !important;
    padding: 5px 10px;
    border: none !important;
}
.politica_privacidade table tr th{
    background: #c6c5c5;
    padding: 5px 10px;
}
