/*================================================*/
/*BLOCO DESTAQUE*/
/*================================================*/

.bloco-destaque{
    padding: 60px 60px 0;
    border-radius: 40px;
    height: 100%;

    .title{
        font-weight: 700;
        font-size: 32px;
        line-height: 40px;
        color: #FFFFFF;
        margin-bottom: 10px;
    }

    .desc{
        font-family: 'Inter';
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        color: #FFFFFF;
        opacity: 0.8;
        margin-bottom: 10px;
    }

    .link{
        a{
            border: 0;
            padding: 18px 25px;
            background: #fff;
            border-radius: 15px;
            font-family: 'Plus Jakarta Sans';
            font-weight: 500;
            font-size: 16px;
            line-height: 1.50;
            color: #F25D1A;
            display: inline-block;
            text-decoration: none;
        }
    }

    &.first{background: linear-gradient(128.74deg, #621B59 17.48%, #F25D1A 81.42%);}
    &.second{
        background: linear-gradient(90deg, #29327D 0%, #3240A6 100%);
        padding-top: 0;
        padding-bottom: 60px;

        .img{
            img{
                margin-top: -60px;
                margin-bottom: 15px;

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



}


/*================================================*/
/*BLOCO NOTICIAS*/
/*================================================*/



.bloco-noticia-principal{
    position: relative;
    a{
        color: inherit;
        text-decoration: none;
    }
    .titulo-topo{
        position: absolute;
        right: 0;
        background-color: #fff;
        border-bottom-left-radius: 30px;
        z-index: 4;
        padding: 10px 0px 10px 30px;
        @media screen and (min-width: 992px){


            &:before {
                content: '';
                position: absolute;
                width: 55px;
                height: 55px;
                border-top-right-radius: 50%;
                box-shadow: 10px -10px 1px #f8f8f8;
                left: -53px;
                top: 0px;
                background: transparent;
            }
            &:after {
                content: '';
                position: absolute;
                width: 55px;
                height: 55px;
                border-top-right-radius: 50%;
                box-shadow: 10px -10px 1px #f8f8f8;
                right: 0px;
                bottom: -55px;
                background: transparent;
            }
        }
        @media screen and (max-width: 991px){
            &{
                position: relative;
                right: unset;
                background-color: #fff;
                border-bottom-left-radius: 0px;
                z-index: 4;
                padding: 0;
                margin-bottom: 30px;
                margin-top: 30px;
            }
        }
    }

    .holder_slider{

        .owl-nav{
            button{
                margin-right: 35px;
            }

        }
        .owl-nav{
            margin-top: 50px;
            display: flex;
            button {
                display: flex;
                align-items: center;
            }

            .owl-prev {
                &:after {
                    content: "";
                    position: relative;
                    display: inline-block;
                    width: 0;
                    height: 2px;
                    background: rgb(211, 10, 17);
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                }

                &:hover:after {
                    width: 30px;
                }
            }

            .owl-next {
                &:before {
                    content: "";
                    position: relative;
                    display: inline-block;
                    width: 0;
                    height: 2px;
                    background: rgb(211, 10, 17);
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                }

                &:hover:before {
                    width: 30px;
                }
            }
        }
        .slide_noticia{
            position: relative;
            border-radius: 30px;
            overflow: hidden;

            .img{
                padding-bottom: 61%;
                position: relative;
                z-index: 0;
                &:after{
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    z-index: 1;
                    background: linear-gradient(180deg, rgba(63, 63, 63, 0) 0%, #000000 77.5%);
                }
                img{
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    object-fit: cover;
                    z-index: 0;

                    @media screen and (max-width: 767px){
                        &{
                            height: 435px;
                            object-fit: cover;
                        }
                    }
                }
            }

            .content{
                position: absolute;
                padding: 20px 30px;
                width: 100%;
                left: 0;
                bottom: 0;
                z-index: 2;

                .title{
                    font-weight: 600;
                    font-size: 32px;
                    line-height: 1.20;
                    color: #FFEEEB;
                    margin-bottom: 10px;
                }

                .desc{
                    font-family: 'Inter';
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 1.30;
                    color: #FFFFFF;
                }

            }

            .tags{
                width: 375px;
                top: 0;
                left: 0;
                padding: 30px;
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
                position: absolute;

                .tag{
                    background: rgba(255, 255, 255, 0.4);
                    border-radius: 15px;
                    font-weight: 500;
                    font-size: 10px;
                    line-height: 1.50;
                    color: #FFFFFF;
                    padding: 7px 30px;

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

        }
    }
}

.noticias-laterais{
    background: #F7F9F6;
    border-radius: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    a{
        color: inherit;
        text-decoration: none;
    }
    .noticia-lateral{
        display: flex;
        gap: 20px;
        align-items: center;

        .img{
            width: 140px;
            height: 150px;
            border-radius: 20px;
            overflow: hidden;

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

        }

        .content{
            max-width: Calc( 100% - 160px );

            .title{
                font-weight: 600;
                font-size: 16px;
                line-height: 1.20;
                color: #252432;
            }

            .tags{
                display: flex;
                flex-wrap: wrap;
                gap: 5px;
                margin-bottom: 10px;

                .tag{
                    padding: 5px;
                    font-weight: 500;
                    font-size: 10px;
                    line-height: 1.50;
                    color: #252432;
                    background: #F2F2F2;
                    border-radius: 15px;
                    a{
                        color: inherit;
                        text-decoration: none;
                    }
                }
            }

        }

    }

    @media screen and (max-width: 1199px){
        &{
            margin: 40px 0 20px;
        }
    }

}


@media screen and (max-width: 992px){
    .bloco-noticia-principal {
        & .holder_slider {
            .slide_noticia {
                .content {
                    .title {
                        font-size: 25px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 767px){
    .noticias-laterais {
        & .noticia-lateral {
            .img {
                width: 100px;
                height: 100px;
            }

            .content {
                width: Calc(100% - 100px);
            }
        }
    }
}
/*================================================*/
/*GERAL*/
/*================================================*/
.fakebanner{
    height: 210px;
}

.menu_holder.scroll{
    background: #C9030A;
    padding: 15px 0;
}
.menu_holder.scroll .navbar-header img {
    width: 115px;
}
.menu_holder.light.scroll{
    background: #fff;
    box-shadow: 0px 0px 11px rgb(0 0 0 / 20%);
}
.menu_holder.light #nav-icon1 span {
    background: #C9030A;
}
.banner_interno_curva{
    height: 458px;
    background: linear-gradient(329.66deg, #FBBB00 16.66%, #ED8005 36.23%, #E14D0A 55.8%, #D9280E 72.24%, #D31210 86.34%, #D20A11 94.95%);
    /*opacity: 0.76;*/
    position: relative;
    overflow: hidden;
    &.servicos{
        background: #C9030A;
    }
    .zona_titulo{
        position: absolute;
        bottom: 0;
        width: 100%;
        .titulo{
            display: flex;
            position: relative;
            .holder_titulo{
                background: #fbfaf9;
                padding: 40px;
                border-top-right-radius: 50px;
                position: relative;
                z-index: 1;
                &:after{
                    content: '';
                    position: absolute;
                    width: 100px;
                    height: 100px;
                    border-bottom-left-radius: 50%;
                    box-shadow: -20px 20px 0px #fbfaf9;
                    right: -100px;
                    bottom: 0;
                    background: transparent;
                }

                &:before{
                    content: '';
                    position: absolute;
                    z-index: 0;
                    background: #fbfaf9;
                    height: 100%;
                    width: 100vw;
                    right: 0;
                    z-index: -1;
                    top: 0;
                    border-top-right-radius: 50px;
                }
                h1{
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 72px;
                    line-height: 91px;
                    text-transform: capitalize;
                    color: #F25D1A;
                }
                .descricao{
                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 25px;
                    color: #F25D1A;
                }
            }
        }
    }


    &.servicos{
        position: relative;
        overflow: unset;
        .svg{
            overflow: hidden;
            /*position: absolute;
            top: 0;
            right: 0;
            width: 1200px;
            height: auto;
            max-width: 80%;*/
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            text-align: right;
            svg{
                width: auto;
                height: 100%;
            }
        }
        .zona_titulo{
            .titulo{
                max-width: 300px;
                .holder_titulo{
                    background: transparent;
                    padding: 40px 40px 0;
                    padding-left: 0;
                    position: relative;
                    .forma{
                        position: absolute;
                        background: #c9030a;
                        top: 100%;
                        right: 0;
                        width: 100vw;
                        height: 50px;
                        z-index: 8;
                        border-bottom-right-radius: 35px;
                        &:after{
                            content: '';
                            position: absolute;
                            width: 35px;
                            height: 35px;
                            border-top-left-radius: 50%;
                            box-shadow: -20px 20px 0px #fbfaf9;
                            right: -35px;
                            bottom: 35px;
                            background: transparent;
                        }
                        &:before{
                            content: '';
                            position: absolute;
                            width: 45px;
                            height: 35px;
                            border-bottom-right-radius: 50%;
                            box-shadow: 31px 0px #fbfaf9;
                            right: 20px;
                            bottom: -1px;
                            background: transparent;
                            z-index: 7;
                        }
                    }
                    &:after{

                        display: none;
                    }

                    &:before{
                        display: none;
                    }
                    h1{
                        color: #fff;
                    }
                    .descricao{
                        color: #fff;
                    }
                }
            }
        }
    }
}

.btn1{
    padding: 16px 30px;
    border: 2px solid #D20A11;
    font-family: 'Inter';
    font-weight: 700;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
    background: #D20A11;
    border-radius: 10px;
    display: inline-flex;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    .seta{
        margin-left: 5px;
        svg{

        }
    }
    &:hover{
        background: transparent;
        color: #D20A11;
        .seta{
            svg path{
                stroke: #D20A11;
            }
        }
    }

    &.v2{
        background: #F25D1A;
        border-color: #F25D1A;
        &:hover{
            background: transparent;
            color: #F25D1A;
            .seta{
                svg path{
                    stroke: #F25D1A;
                }
            }
        }
    }

    &.v3{
        background: #fff;
        border-color: #fff;
        color: #F25D1A;
        &:hover{
            background: transparent;
            color: #fff;
            .seta{
                svg path{
                    stroke: #fff;
                }
            }
        }
    }
}


.formulario{
    h3{
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        line-height: 35px;
        color: #1B1B1B;
    }
    .holder_formulario{
        .padding_form{
            padding: 50px 60px 10px 60px;
            background: #FFEEEB;
            backdrop-filter: blur(7.5px);
            border-radius: 10px 10px 0 10px;
        }
        h3{
            margin-bottom: 30px;
        }
        .botao{
            display: flex;
            .direita{
                background: #FFEEEB;
                width: Calc(100% - 289px);
                border-bottom-right-radius: 10px;
                border-bottom-left-radius: 10px;
            }
            .esquerda{
                width: 289px;
                position: relative;
                &:before{
                    content: '';
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: #FFEEEB;
                    position: absolute;
                    z-index: 0;
                }
                .button{
                    background: #fff;
                    border: 20px solid #fff;
                    border-top-right-radius: 10px;
                    position: relative;
                    z-index: 2;
                }
                button{

                }
            }

        }

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

        .rgpd_auth_checkbox .checkmark {
            color: #333;
            margin-left: 35px;
            margin-top: 0;
            margin-bottom: 0;
            position: relative;

            font-family: 'Plus Jakarta Sans';
            font-weight: 400;
            font-size: 16px;
            line-height: 23px;
            color: #000000;
        }

        .rgpd_auth_checkbox .checkmark a {
            text-decoration-line: underline;
            color: #D20A11;
        }

        .rgpd_auth_checkbox .checkmark:before {
            content: '';
            position: absolute;
            top: 2px;
            left: -35px;
            height: 22px;
            width: 22px;
            border: 2px solid #D20A11;
            border-radius: 50%;
        }

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

            left: -27px;
            top: 6px;
            width: 6px;
            height: 11px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(37deg);
            -ms-transform: rotate(37deg);
            transform: rotate(37deg);
        }

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

        .rgpd_auth_checkbox input:checked ~ .checkmark:before {
            background-color: #D20A11;
        }

        .single_input{
            margin-bottom: 20px;
            .input{
                background: #FFFFFF;
                border-radius: 15px;
                font-family: 'Inter', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 20px;
                color: #252432;
                padding: 29px 36px;
                width: 100%;
                border: none;
                outline: none;
            }
            textarea{
                height: 145px;
                resize: none;
            }
        }
    }
}

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

    .formulario{

        h3{
            font-size: 26px;
            line-height: 33px;
        }
        .holder_formulario{
            .single_input{
                .input{
                    font-size: 16px;
                    line-height: 18px;
                    padding: 19px 26px;
                }
            }
        }
    }

    .banner_interno_curva{
        .zona_titulo{
            .titulo{
                .holder_titulo{
                    h1{
                        font-size: 62px;
                        line-height: 81px;
                    }
                    .descricao{
                        font-size: 18px;
                        line-height: 23px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1200px) {

    .formulario{
        h3{
            font-size: 24px;
            line-height: 31px;
        }
    }


    .banner_interno_curva{
        .zona_titulo{
            .titulo{
                .holder_titulo{
                    h1{
                        font-size: 52px;
                        line-height: 71px;
                    }
                    .descricao{
                        font-size: 16px;
                        line-height: 21px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 992px) {

    .formulario{
        h3{
            font-size: 22px;
            line-height: 28px;
        }
        .holder_formulario {
            .padding_form {
                padding: 30px 25px 10px 25px;
            }
            .botao {
                &:before {
                    width: Calc(100% - 227px);
                }
                .esquerda {
                    width: 272px;
                }
                .direita {
                    width: Calc(100% - 272px);
                }
            }
        }
    }
    .btn1{
        font-size: 16px;
        line-height: 21px;
    }
    .banner_interno_curva{
        height: 350px;
        .zona_titulo{
            .titulo{
                .holder_titulo{
                    padding: 22px;
                    h1{
                        font-size: 42px;
                        line-height: 61px;
                    }
                    .descricao{
                        font-size: 14px;
                        line-height: 19px;
                    }
                }
            }
        }
    }
    .fakebanner {
        height: 130px;
    }
}
@media screen and (max-width: 767px) {

    .banner_interno_curva{
        .zona_titulo{
            .titulo{
                .holder_titulo{
                    h1{
                        font-size: 32px;
                        line-height: 51px;
                    }
                }
            }
        }
    }
}
/*================================================*/
/*SERVICO*/
/*================================================*/

.detalhe{
    overflow: hidden;
    h1, h2{
        font-family: 'Poppins', sans-serif;
        font-style: normal;

        font-weight: 800;
        font-size: 64px;
        line-height: 81px;
        color: #131C2C;
    }
    h2{
        font-weight: 600;
    }

    .bloco-noticia-principal{
        h2{
            font-weight: 400;
            font-size: 48px;
            line-height: 1.20;
            color: #252432;
        }
    }

    .categoria{
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
        color: #F25D1A;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 1400px) {
    .detalhe {
        h1, h2{
            font-size: 50px;
            line-height: 70px;
        }
        .categoria{
            font-size: 18px;
            line-height: 22px;
        }
    }
}
@media screen and (max-width: 1200px) {
    .detalhe {
        h1, h2 {
            font-size: 40px;
            line-height: 60px;
        }

        .categoria {
            font-size: 16px;
            line-height: 20px;
        }
    }
}
@media screen and (max-width: 992px) {
    .detalhe {
        h1, h2 {
            font-size: 33px;
            line-height: 40px;
        }
    }
}
#servico {
    .bloco{
        background: transparent;
    }
    .intro_servico{
        .holder_intro_servico{
            display: flex;
            flex-wrap: wrap;
            .info{
                padding-right: 70px;
                width: 50%;
                .descricao{
                    font-family: 'Inter',sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 29px;
                    color: #252432;
                    margin-top: 40px;

                }
                .imagem{
                    margin-top: 40px;
                    img{
                        width: 100%;
                    }
                }
            }
            .formulario{
                width: 50%;
            }
        }
    }
    .vantagens{
        padding-top: 0;
        .holder_container_vantagens{
            padding: 112px 0;
            .imagem{
                position: relative;
                padding-bottom: 44%;
                border-radius: 20px;
                max-width: 805px;
                margin: 0 auto;
                img{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                }
                ul{
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    list-style: none;
                    margin: 0;
                    li{
                        position: absolute;
                        font-family: 'Inter', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 30px;
                        text-transform: capitalize;
                        color: #F25D1A;
                        background: rgba(255, 238, 235, 0.96);
                        backdrop-filter: blur(3.65px);
                        border-radius: 20px;
                        padding: 10px 20px;

                        &:nth-child(1){
                            top: -12%;
                            right: 20%;
                            transform: translate(50%, -50%);
                            -moz-transform: translate(50%, -50%);
                            -webkit-transform: translate(50%, -50%);
                        }
                        &:nth-child(2){
                            top: 0%;
                            left: 13%;
                            transform: translate(-50%, -50%);
                            -moz-transform: translate(-50%, -50%);
                            -webkit-transform: translate(-50%, -50%);
                        }
                        &:nth-child(3){
                            top: 54%;
                            right: 8%;
                            transform: translate(50%, -50%);
                            -moz-transform: translate(50%, -50%);
                            -webkit-transform: translate(50%, -50%);
                        }
                        &:nth-child(4){
                            top: 70%;
                            left: 11%;
                            transform: translate(-50%, -50%);
                            -moz-transform: translate(-50%, -50%);
                            -webkit-transform: translate(-50%, -50%);
                        }
                        &:nth-child(5){
                            top: 107%;
                            right: 46%;
                            transform: translate(50%, -50%);
                            -moz-transform: translate(50%, -50%);
                            -webkit-transform: translate(50%, -50%);
                        }
                    }
                }
            }
        }
    }
    .metodologia{
        padding-top: 0;
        position: relative;
        h2{
            position: relative;
            z-index: 2;
        }
        .imagem_svg{
            position: absolute;
            &.svg1{
                right: 0;
                top: -16%;
                z-index: 0;
                width: 539px;
                max-width: 50%;
            }
            &.svg2{
                left: 0;
                top: 32%;
                z-index: 0;
                width: 405px;
                max-width: 50%;
            }

            svg{
                width: 100%;
                height: auto;
            }
        }
        h2{
            text-align: center;
        }
        .holder_container_metodologia{
            margin-top: 70px;
            position: relative;
            &:before{
                content: '';
                width: 1px;
                height: 100%;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                display: block;
                background: #F25D1A;
                position: absolute;
            }
            ul{
                list-style: none;
                padding: 0;
                margin: 0;
                li{
                    position: relative;
                    width: 486px;
                    max-width: 100%;
                    background: #FFEEEB;
                    border: 2px solid #FFEEEB;
                    border-radius: 10px;
                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 30px;
                    color: #F25D1A;
                    padding: 40px;
                    margin: 30px 0;
                    &:after{
                        content: '';
                        background: #F25D1A;
                        top: 50%;
                        width: 30px;
                        height: 30px;
                        position: absolute;
                        border-radius: 50%;
                    }
                    &:before{
                        content: '';
                        top: 50%;
                        width: 50px;
                        height: 1px;
                        position: absolute;
                        border: 1px dashed #8987A1;
                        z-index: 0;
                    }
                    span{
                        position: absolute;
                        width: 30px;
                        height: 30px;
                        display: flex;
                        background: #F25D1A;
                        font-family: 'Inter', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 30px;
                        color: #FFEEEB !important;
                        border-radius: 50%;
                        align-items: center;
                        justify-content: center;
                        top: 50%;
                        transform: translateY(-50%);
                        -moz-transform: translateY(-50%);
                        -webkit-transform: translateY(-50%);
                    }
                }
            }

            table{
                border: none;
                margin: 0 auto;
                width: 1200px;
                max-width: 100% !important;
                tr{
                    border: none;
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    td{
                        border: none;
                        width: 50%;
                    }
                    &:nth-child(odd){
                        td{
                            padding-right: 80px;
                            ul{
                                li{
                                    text-align: right;
                                    margin-left: auto;
                                    padding-right: 80px;
                                    span{
                                        right: 30px;
                                    }
                                    &:after{
                                        right: -82px;
                                        transform: translate(50%, -50%);
                                    }

                                    &:before{
                                        right: -35px;
                                        transform: translate(50%, -50%);
                                    }
                                }
                            }
                        }
                    }
                    &:nth-child(even){
                        td{
                            padding-left: 80px;
                            ul{
                                li{
                                    padding-left: 80px;
                                    span{
                                        left: 30px;
                                    }
                                    &:after{
                                        left: -82px;
                                        transform: translate(-50%, -50%);
                                    }
                                    &:before{
                                        left: -35px;
                                        transform: translate(-50%, -50%);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .forma_outros_servicos{
        svg{
            height: auto;
            width: 100%;
        }
        margin-bottom: -20px;
    }
    .zona_outros_servicos{
        .titulo{
            position: relative;
            display: flex;
            justify-content: flex-end;
            h3{
                position: relative;
                padding: 30px 0 30px 60px;
                margin: 0;
                font-family: 'Plus Jakarta Sans';
                font-style: normal;
                font-weight: 700;
                font-size: 32px;
                line-height: 40px;
                text-align: right;
                color: #050505;
                &:before {
                    content: '';
                    background: #f8f8f8;
                    width: 100vw;
                    height: 100%;
                    left: 0;
                    top: 0;
                    position: absolute;
                    border-top-left-radius: 20px;
                    z-index: -1;
                }
                &:after {
                    content: '';
                    position: absolute;
                    width: 55px;
                    height: 55px;
                    border-bottom-right-radius: 50%;
                    box-shadow: 10px 10px 1px #f8f8f8;
                    left: -55px;
                    bottom: -1px;
                    background: #fff;
                }

            }

        }
    }
    .outros_servicos{
        background: #F8F8F8;
        h3{
            text-align: right;
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 20px;
            line-height: 24px;
            color: #F25D1A;
            margin-bottom: 50px;
        }
        a{
            color: inherit;
            text-decoration: none;
        }
        .holder_slider{
            .owl-stage{
                display: flex;
            }
            .single_servico{
                height: 100%;
                padding: 10px;
            }
            .owl-nav{
                margin-top: 30px;
                width: 100%;
                text-align: center;
                display: flex;
                justify-content: center;

                .owl-prev{

                }

                .owl-next{
                    margin-left: 35px;
                }

                button{
                    position: relative;
                    display: inline-flex;
                    align-items: center;
                }
                .owl-prev{
                    &:after{
                        content: "";
                        position: relative;
                        display: inline-block;
                        width: 0;
                        height: 2px;
                        background: #d30a11;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    &:hover:after{
                        width: 30px;
                    }
                }
                .owl-next{
                    &:before{
                        content: "";
                        position: relative;
                        display: inline-block;
                        width: 0;
                        height: 2px;
                        background: #d30a11;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    &:hover:before{
                        width: 30px;
                    }
                }
            }
        }
        .bloco_valor{
            height: 100%;
            background-color: #fff;
            border-radius: 10px;
            padding: 18px 25px 40px;
            display: flex;
            flex-direction: column;
            height: 100%;
            .img{
                width: 65px;
                height: 65px;
                background: #FFEEEB;
                mix-blend-mode: normal;
                border-radius: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                img{
                    width: 30px;
                    height: 30px;
                    object-fit: contain;
                }
            }
            .title{
                margin-top: 30px;
                font-weight: 700;
                font-size: 19px;
                line-height: 1.20;
                color: #252432;
                margin-bottom: 5px;
                max-width: 180px;
            }

            .desc{
                font-weight: 400;
                font-size: 14px;
                line-height: 1.50;
                color: #8987A1;
            }

        }
    }
}
@media screen and (max-width: 1400px) {
    #servico {
        .intro_servico{
            .holder_intro_servico{
                .info{
                    .descricao{
                        font-size: 22px;
                        line-height: 23px;
                    }
                }
            }
        }
        .vantagens{
            .holder_container_vantagens{
                .imagem{
                    ul{
                        li{
                            font-size: 18px;
                            line-height: 28px;
                        }
                    }
                }
            }
        }
        .metodologia{
            .holder_container_metodologia{
                ul{
                    li{
                        font-size: 22px;
                        line-height: 28px;
                        span{
                            font-size: 18px;
                            line-height: 28px;
                        }
                    }
                }

            }
        }
        .zona_outros_servicos{
            .titulo{
                h3{
                    font-size: 25px;
                    line-height: 33px;
                }
            }
        }
        .outros_servicos{
            h3{
                font-size: 20px;
                line-height: 24px;
            }
            .bloco_valor{
                .title{
                    font-size: 19px;
                }

                .desc{
                    font-size: 14px;
                }

            }
        }
    }
}
@media screen and (max-width: 1200px) {
    #servico {
        .intro_servico{
            .holder_intro_servico{
                .info{
                    .descricao{
                        font-size: 20px;
                        line-height: 23px;
                    }
                }
            }
        }
        .vantagens{
            .holder_container_vantagens{
                .imagem{
                    ul{
                        li{
                            font-size: 16px;
                            line-height: 26px;
                        }
                    }
                }
            }
        }
        .metodologia{
            .holder_container_metodologia{
                ul{
                    li{
                        font-size: 20px;
                        line-height: 26px;
                        span{
                            font-size: 16px;
                            line-height: 26px;
                        }
                    }
                }

            }
        }
        .zona_outros_servicos{
            .titulo{
                h3{
                    font-size: 20px;
                    line-height: 28px;
                }
            }
        }
        .outros_servicos{
            h3{
                font-size: 18px;
                line-height: 22px;
            }
            .bloco_valor{
                .title{
                    font-size: 16px;
                }

                .desc{
                    font-size: 14px;
                }

            }
        }
    }
}
@media screen and (max-width: 992px) {
    #servico {
        .intro_servico {
            .holder_intro_servico {
                .info {
                    width: 100%;
                    padding-right: 0;
                    .descricao{
                        margin-top: 20px;
                    }
                }
                .formulario {
                    width: 100%;
                    margin-top: 40px;
                }
            }
        }
        .metodologia {
            overflow: hidden;
            .holder_container_metodologia {
                &:before {
                    left: 0;
                    transform: unset;
                    -moz-transform: unset;
                    -webkit-transform: unset;
                }
                table {
                    tr {
                        td{
                            width: 100%;
                        }
                        &:nth-child(even) {
                            td {
                                padding-left: 25px;
                                &:nth-child(odd){
                                    display: none;
                                }
                                ul {
                                    li {
                                        text-align: left;
                                        margin-left: 0;
                                        padding-left: 80px;
                                        width: 100%;
                                        &:after {
                                            left: -26px;
                                            right: unset;
                                            transform: translate(-50%, -50%);
                                        }

                                        &:before {
                                            display: none;
                                        }
                                    }
                                }
                            }
                        }
                        &:nth-child(odd) {
                            td {
                                padding-left: 25px;
                                padding-right: 0;
                                &:nth-child(even){
                                    display: none;

                                }

                                ul {
                                    li {
                                        text-align: left;
                                        margin-left: 0;
                                        padding-left: 80px;
                                        width: 100%;
                                        &:after {
                                            left: -26px;
                                            right: unset;
                                            transform: translate(-50%, -50%);
                                        }
                                        &:before {
                                            display: none;
                                        }
                                        span {
                                            left: 30px;
                                            right: 0;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                ul {
                    li {
                        padding: 20px;
                        font-size: 18px;
                        line-height: 24px;
                        &:after {
                            width: 20px;
                            height: 20px;
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {

    #servico {
        .bloco{
            overflow: hidden;
        }
        h1, h2 {
            font-size: 28px;
            line-height: 40px;
        }
        .vantagens {
            .holder_container_vantagens {
                padding: 40px 0;
                .imagem {
                    padding: 0;
                    ul {
                        position: relative;
                        top: unset;
                        left: unset;
                        right: unset;
                        bottom: unset;
                        list-style: none;
                        margin: 40px 0 0;
                        padding: 0;
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;
                        justify-content: center;
                        li {
                            position: relative;
                            font-size: 16px;
                            line-height: 28px;
                            top: unset !important;
                            left: unset !important;
                            right: unset !important;
                            transform: unset !important;
                            -moz-transform: unset !important;
                            -webkit-transform: unset !important;
                            text-align: center;
                        }

                    }
                    img {
                        position: relative;
                        top: unset;
                        left: unset;
                        width: 100%;
                        height: auto;
                        object-fit: cover;
                        border-radius: 20px;
                        /* margin-bottom: 40px; */
                    }
                }
            }
        }

        .metodologia {
            .holder_container_metodologia {
                ul {
                    li {
                        font-size: 16px;
                        line-height: 22px;
                    }
                }
            }
        }
    }
}


#servico.departamento{
    .equipa{
        .holder_equipa{
            .bloco_membro{
                .img{
                    margin: 0 auto;
                    width: 170px;
                    height: 170px;
                    border-radius: 50%;
                    overflow: hidden;
                    img{
                        width: 170px;
                        height: 170px;
                        object-fit: cover;
                    }
                }
                .title{
                    width: 355px;
                    max-width: 100%;
                    background: rgba(255, 238, 235, 0.96);
                    backdrop-filter: blur(3.65px);
                    border-radius: 20px;
                    margin: 44px auto 0 auto;
                    font-size: 20px;
                    line-height: 120%;
                    text-align: center;
                    text-transform: capitalize;
                    color: #F25D1A;
                    padding: 20px;
                    @media screen and (max-width: 1400px){
                        &{
                            margin: 30px auto 0 auto;
                            font-size: 18px;
                        }
                    }
                    @media screen and (max-width: 1200px){
                        &{
                            font-size: 16px;
                        }
                    }
                    @media screen and (max-width: 992px){
                        &{
                            margin: 10px auto 0 auto;
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}
/*================================================*/
/*SOLUCOES*/
/*================================================*/
#solucoes{
    background: #fbfaf9;
    .bloco{
        background: #F6F5F3;
        background: #fbfaf9;
    }
    .lista_solucoes{
        position: relative;
        padding-top: 180px;
        .holder_solucoes{
            display: flex;
            flex-wrap: wrap;
        }
        .svg{
            width: 704px;
            max-width: 50%;
            position: absolute;
            left: 0;
            top: 20%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%,-50%);
            -webkit-transform: translate(-50%, -50%);
            svg{
                width: 100%;
                height: auto;
            }
        }
        .single_solucao{
            width: Calc(100% / 3);
            padding: 20px;
            a{
                color: inherit;
                text-decoration: none;
            }
            .bloco_solucao{
                position: relative;
                width: 100%;
                .btn_saber_mais{
                    position: absolute;
                    top: 0;
                    right: 0;
                    background: #fbfaf9;
                    width: 49%;
                    padding-bottom: 11%;
                    height: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 2;
                    border-bottom-left-radius: 20px;
                    span{
                        display: flex;
                        gap: 10px;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%,-50%);
                        -moz-transform: translate(-50%,-50%);
                        -webkit-transform: translate(-50%,-50%);
                        width: 100%;
                        justify-content: center;
                        align-items: center;
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                        font-size: 24px;
                        line-height: 25px;
                        color: #F25D1A;
                        z-index: 2;
                    }
                    &:after{
                        content: '';
                        position: absolute;
                        width: 55px;
                        height: 55px;
                        border-top-right-radius: 30px;
                        box-shadow: 10px -10px 1px #fbfaf9;
                        right: 0px;
                        bottom: -54px;
                        background: transparent;
                    }
                    &:before{
                        content: '';
                        position: absolute;
                        width: 40px;
                        height: 30px;
                        border-top-right-radius: 20px;
                        box-shadow: 10px -10px 1px #fbfaf9;
                        left: -40px;
                        top: 0px;
                        background: transparent;
                    }
                }
                .img{
                    position: relative;
                    width: 100%;
                    border-radius: 30px;
                    padding-bottom: 133%;
                    overflow: hidden;
                    z-index: 0;
                    img{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: top;
                        z-index: 0;
                    }
                    &:after{
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 0;
                        bottom: 0;
                        right: 0;
                        background: linear-gradient(180deg, rgba(63, 63, 63, 0) 41.83%, #F25D1A 100%);
                    }
                }
                .info{
                    z-index: 1;
                    position: absolute;
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    align-content: center;
                    bottom: 0;
                    left: 0;
                    padding: 20px;

                    .title{
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-weight: 600;
                        font-size: 32px;
                        line-height: 120%;
                        color: #FFFFFF;
                        width: 100%;
                    }
                    .descricao{
                        width: 100%;
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 15px;
                        line-height: 120%;
                        color: #FFFFFF;
                        min-height: 100px;
                        opacity: 0;
                        visibility: hidden;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                }
                &:hover{
                    .info{
                        .descricao{
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1400px) {
    #solucoes{
        .lista_solucoes{
            .single_solucao{
                .bloco_solucao{
                    .info{
                        .title{
                            font-size: 24px;
                        }
                        .descricao{
                            font-size: 14px;

                        }
                    }

                    .btn_saber_mais{
                        span{
                            font-size: 20px;
                            line-height: 22px;
                        }
                    }
                }
            }
        }
    }
}


@media screen and (max-width: 1200px) {
    #solucoes{
        .lista_solucoes{
            .single_solucao{
                .bloco_solucao{
                    .info{
                        .title{
                            font-size: 28px;
                        }
                        .resumo{
                            font-size: 20px;
                        }
                    }

                    .btn_saber_mais{
                        span{
                            font-size: 16px;
                            line-height: 18px;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 992px) {
    #solucoes {
        .lista_solucoes {
            .single_solucao {
                width: Calc(100% / 2);
                padding: 20px;
                .bloco_solucao {
                    .info{
                        .title{
                            font-size: 20px;
                        }
                    }

                    .btn_saber_mais {
                        width: 150px;
                        max-width: 100%;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 767px) {
    #solucoes {
        .lista_solucoes {
            .single_solucao {
                width: 100%;
                padding: 20px 0;
                .bloco_solucao {
                    .info{
                        .title{
                            font-size: 20px;
                        }
                    }

                    .btn_saber_mais {
                        width: 150px;
                        max-width: 100%;
                    }
                }
            }
        }
    }
}

/*================================================*/
/*SOLUCAO*/
/*================================================*/
#servico.solucao{
    .faqs{
        background: linear-gradient(180deg, #F8F8F8 69.71%, #FFFFFF 100%);
        overflow: hidden;
        position: relative;
        .forma{
            position: absolute;
            bottom: 0;
            left: 0;
            width: 700px;
            max-width: 50%;
        }
        .container{
            position: relative;
            z-index: 2;
        }
    }
    .intro_servico {
        position: relative;
        z-index: 1;
        .forma{
            position: absolute;
            max-width: 60%;
            width: 1200px;
            left: 0;
            top: 0;
        }
        &.proposta{

            .forma{
                position: absolute;
                max-width: 50%;
                width: 1200px;
                left: -10%;
                top: 10%;
            }
        }

        h1{
            text-transform: uppercase;
            font-weight: 700;
            margin: 0;
        }
        .holder_intro_servico {
            .info{
                background: transparent;
                width: 50%;
                padding: 50px 50px 50px 0;
                position: relative;
            }
            .resumo{
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 600;
                font-size: 52px;
                line-height: 120%;
                color: #131C2C;
                span{
                    color: #F25D1A;
                }
            }
            .descricao {
                margin-top: 100px;
                width: 100%;
                font-family: 'Inter', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 20px;
                line-height: 120%;
                color: #F25D1A;
                img{
                    max-width: 100%;
                }
            }
        }
    }
    .zona_lista{
        position: relative;
        z-index: 1;
        .svg{
            position: absolute;
            left: 0;
            top: 21%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            z-index: 0;
            width: 482px;
            max-width: 50%;
            svg{
                width: 100%;
                height: auto;
            }
        }
        .holder_lista{
            position: relative;
            padding: 155px 0 0;
            z-index: 2;
            .lista{
                width: 55%;
                position: relative;
                z-index: 2;
                background: #FCFCFBFA;
                border-radius: 20px;
                padding: 75px 65px;
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-size: 20px;
                line-height: 120%;
                color: #131C2C;
                h4{
                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 22px;
                    line-height: 120%;
                    color: #F25D1A;
                    margin-bottom: 25px;
                }
                h3{
                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 24px;
                    line-height: 30px;
                    color: #F25D1A;
                }
                table{
                    border: none;
                    width: 100% !important;
                    tr{
                        td{
                            padding: 20px 0 20px 45px;
                            font-weight: 400;
                            font-size: 20px;
                            line-height: 120%;
                            text-align: justify;
                            color: #8987A1;
                            h3{
                                position: relative;
                                display: inline-block;
                                padding: 10px 20px 10px 0;
                                &:before{
                                    content: '';
                                    background-image: url('/site/imagens/check.webp');
                                    height: 29px;
                                    width: 29px;
                                    position: absolute;
                                    left: -45px;
                                }
                                &:after{
                                    content: '';
                                    background: red;
                                    width: Calc(100% + 60px);
                                    height: 100%;
                                    position: absolute;
                                    right: 0;
                                    top: 0;
                                    background: rgba(255, 238, 235, 0.96);
                                    backdrop-filter: blur(3.65px);
                                    border-radius: 20px;
                                    z-index: -1;
                                }
                            }
                        }
                    }
                }
            }
            .imagem{
                width: 100%;
                position: absolute;
                height: 100%;
                top: 0;
                transform: unset;
                -moz-transform: unset;
                -webkit-transform: unset;
                right: 0;
                overflow: hidden;
                border-radius: 30px;
                img{
                    width: 100%;
                    position: absolute;
                    height: 100%;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%,-50%);
                    -moz-transform: translate(-50%,-50%);
                    -webkit-transform: translate(-50%,-50%);
                    object-fit: cover;
                }
                span{
                    display: block;
                    height: 85px;
                    width: 45%;
                    border-bottom-left-radius: 30px;
                    border-top-right-radius: 30px;
                    background: #fff;
                    position: absolute;
                    right: 0;
                    z-index: 2;

                    &:before {
                        content: '';
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        border-top-right-radius: 30px;
                        box-shadow: 10px -10px 1px #fff;
                        left: -50px;
                        top: 0px;
                        background: transparent;
                    }
                    &:after {
                        content: '';
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        border-top-right-radius: 30px;
                        box-shadow: 10px -10px 1px #fff;
                        right: 0;
                        top: 85px;
                        background: transparent;
                        z-index: 2;
                    }
                }
            }
        }
    }
    .modulos{
        h2{
            text-align: center;
        }
        .holder_container_modulos{
            margin-top: 50px;
            table{
                width: 100% !important;
                border: none;
                tr{
                    display: flex;
                    flex-wrap: wrap;
                    gap: 30px;
                    td{
                        width: Calc(50% - 30px);
                        padding: 40px 24px;
                        border: 2px solid #F25D1A;
                        border-radius: 32px;
                        font-family: 'Inter', sans-serif;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 120%;
                        color: #8987A1;
                        h3{
                            font-family: 'Plus Jakarta Sans', sans-serif;
                            font-style: normal;
                            font-weight: 700;
                            font-size: 32px;
                            line-height: 120%;
                            color: #F25D1A;
                            margin-bottom: 20px;
                        }
                        h4{
                            font-family: 'Plus Jakarta Sans', sans-serif;
                            font-style: normal;
                            font-weight: 600;
                            font-size: 24px;
                            line-height: 120%;
                            color: #F25D1A;
                            margin-bottom: 20px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .holder_container_modulos{
                    table{
                        tr{
                            td{
                                font-size: 18px;
                                h3{
                                    font-size: 28px;
                                }
                                h4{
                                    font-size: 22px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_container_modulos{
                    table{
                        tr{
                            td{
                                font-size: 16px;
                                h3{
                                    font-size: 26px;
                                }
                                h4{
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_container_modulos{
                    table{
                        tr{
                            td{
                                font-size: 14px;
                                h3{
                                    font-size: 24px;
                                }
                                h4{
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                .holder_container_modulos{
                    table{
                        tr{
                            td{
                                width: 100%;
                            }
                        }
                    }
                }
            }
        }
    }
    .solucoes{
        background: #F8F8F8;
    }
    .metodologia{
        padding-top: 85px;
    }
    .zona_outros_servicos{
        .titulo{

            justify-content: flex-start;
            h3{
                padding: 30px 60px 30px 0;
                &:before {
                    left: unset;
                    right: 0;
                    top: 0;
                    border-top-right-radius: 20px;
                    border-top-left-radius: 0;
                }
                &:after {
                    border-bottom-left-radius: 50%;
                    border-bottom-right-radius: 0;
                    box-shadow: -10px 10px 1px #f8f8f8;
                    right: -55px;
                    bottom: 1px;
                    background: #fff;
                    left: unset;
                }

            }

        }
    }
    .outros_servicos{
        .single_solucao{
            padding: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .holder_solucao{
                position: relative;
                &:before{
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: linear-gradient(180deg, rgba(63, 63, 63, 0) 0%, #000000 77.5%);
                    border-radius: 30px;
                    z-index: 1;
                }
            }

            .conteudo{
                background: #f8f8f8;
                border-top-right-radius: 30px;
                border-bottom-left-radius: 30px;
                position: absolute;
                top: -1px;
                right: -1px;
                z-index: 2;
                padding: 15px;
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 600;
                font-size: 22px;
                line-height: 120%;
                text-align: center;
                color: #252432;
                width: 55%;
                border: 15px solid #f8f8f8;
                border-top: none;
                &:after{
                    content: '';
                    position: absolute;
                    width: 55px;
                    height: 55px;
                    border-top-right-radius: 50%;
                    box-shadow: 10px -10px 1px #f8f8f8;
                    right: -14px;
                    bottom: -70px;
                    background: transparent;
                }
                &:before{
                    content: '';
                    position: absolute;
                    width: 55px;
                    height: 55px;
                    border-top-right-radius: 50%;
                    box-shadow: 10px -10px 1px #f8f8f8;
                    left: -70px;
                    top: 1px;
                    background: transparent;
                }
            }
            .img{
                position: relative;
                padding-bottom: 130%;
                overflow: hidden;
                width: 100%;
                background: red;
                border-radius: 30px;
                img{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }
    .frase{
        h2{
            color: #F25D1A;
            max-width: 700px;
            margin: 0 auto;
            line-height: 110%;
            span{
                font-weight: 600;
                font-size: 40px;
                color: #F25D1A;
                @media screen and (max-width: 1400px){
                    &{
                        font-size: 35px;
                    }
                }
                @media screen and (max-width: 1200px){
                    &{
                        font-size: 30px;
                    }
                }
                @media screen and (max-width: 992px){
                    &{
                        font-size: 25px;
                    }
                }
                @media screen and (max-width: 767px){
                    &{
                        font-size: 20px;
                    }
                }
            }
        }
    }
    .solucoes{

        h2 {
            font-weight: 700;
            font-size: 38px;
            line-height: 120%;
            text-align: center;
            color: #131C2C;
            margin-bottom: 50px;
        }
        h3{
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 24px;
            line-height: 120%;
            text-align: center;
            color: #131C2C;
            margin-bottom: 50px;
        }
        h4{
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 22px;
            line-height: 120%;
            text-align: center;
            color: #F25D1A;
            margin-bottom: 50px;
        }
        table{
            border: none;
            tr{
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
                td{
                    width: Calc((100% / 3) - 15px);
                    background: #FFFFFF;
                    border-radius: 10px;
                    padding: 20px;

                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 150%;
                    text-align: justify;
                    color: #8987A1;
                    img{
                        max-width: 100%;
                        margin-bottom: 10px;
                    }
                    h4{
                        text-align: left;
                        font-family: 'Inter', sans-serif;
                        font-weight: 600;
                        font-size: 19px;
                        line-height: 120%;
                        color: #252432;
                        margin-bottom: 25px;
                    }
                }
            }
        }

        @media screen and (max-width: 1400px){
            h2 {
                font-size: 35px;
            }
            h3{
                font-size: 22px;
            }
            h4{
                font-size: 20px;
            }
            table{
                border: none;
                tr{
                    td{
                        h4{
                            font-size: 19px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            h2 {
                font-size: 30px;
            }
            h3{
                font-size: 20px;
            }
            h4{
                font-size: 18px;
            }
            table{
                border: none;
                tr{
                    td{
                        h4{
                            font-size: 16px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            h2 {
                font-size: 25px;
            }
            table{
                border: none;
                tr{
                    td{
                        width: 100%;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1400px) {
    #servico.solucao {
        .intro_servico {
            .holder_intro_servico {
                .resumo {
                    font-size: 45px;
                }
            }
        }
        .zona_lista{
            .holder_lista{
                .lista{
                    font-size: 18px;
                    line-height: 28px;
                    h3{
                        font-size: 22px;
                        line-height: 28px;
                    }
                }
            }
        }

    }
}

@media screen and (max-width: 1200px) {
    #servico.solucao {
        .intro_servico {
            .holder_intro_servico {
                .resumo {
                    font-size: 40px;
                }
                .descricao {
                    font-size: 16px;
                    line-height: 23px;
                }
            }
        }
        .zona_lista{
            .holder_lista{
                .lista{
                    padding: 40px;
                    font-size: 16px;
                    line-height: 26px;
                    h3{
                        font-size: 20px;
                        line-height: 26px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 992px) {
    #servico.solucao {
        .intro_servico {
            .holder_intro_servico {
                .resumo {
                    font-size: 25px;
                }
                .descricao {
                    width: 100%;
                    margin-top: 40px;
                }
                .info{
                    width: 100%;
                    padding: 20px 0;
                }
            }
        }
        .zona_lista{
            .holder_lista{
                padding: 0;
                .lista{
                    width: 100%;
                }
                .imagem {
                    width: 95%;
                    position: relative;
                    height: 0;
                    top: unset;
                    transform: unset;
                    -moz-transform: unset;
                    -webkit-transform: unset;
                    right: 0;
                    overflow: hidden;
                    border-radius: 30px;
                    padding-bottom: 155%;
                    margin: 0 auto -20%;
                    span{
                        display: none;
                    }
                }
            }
        }

        .outros_servicos {
            .single_solucao {
                .img {
                    border-radius: 10px;
                }
                .conteudo {
                    padding: 5px;
                    font-size: 18px;
                    border: 5px solid #f8f8f8;
                    border-top-right-radius: 10px;
                    border-bottom-left-radius: 10px;
                    width: auto;
                    max-width: 90%;
                    &:before {
                        width: 25px;
                        height: 25px;
                        box-shadow: 5px -5px 1px #f8f8f8;
                        left: -29px;
                        top: -5px;
                    }
                    &:after {
                        width: 25px;
                        height: 25px;
                        box-shadow: 5px -5px 1px #f8f8f8;
                        right: -4px;
                        bottom: -29px;
                    }
                }
            }
        }
    }
}




/*==================================================================================================*/
/*BLOG*/
/*==================================================================================================*/

#blog{
    h1{
        margin-bottom: 35px;
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 120%;
        color: #F25D1A;
    }
    .bloco{
        background: #fff;
    }
    .pagina_noticias{
        position: relative;
        .forma{
            position: absolute;
            right: 0;
            bottom: 0;
            max-width: 30%;
            height: auto;
        }
        .zona_noticias{
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .noticias_destaque{
            width: 30%;
            padding-left: 30px;
            position: sticky;
            top: 185px;
            .titulo{
                display: flex;
                .space{
                    background: #F8F8F8;
                    border-top-right-radius: 30px;
                    border-top-left-radius: 30px;
                    width: 100%;
                }
                .nome{
                    position: relative;
                    &:before{
                        content: '';
                        background: #F8F8F8;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        right: 0;
                        position: absolute;
                        z-index: 0;
                    }
                    div{
                        position: relative;
                        z-index: 1;
                        background: #fff;
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 32px;
                        line-height: 100%;
                        text-align: center;
                        text-transform: capitalize;
                        color: #131C2C;
                        padding: 10px 20px;
                        border-bottom-left-radius: 30px;
                    }
                }
            }
            .lista_noticias{
                background: #F8F8F8;
                border-bottom-left-radius: 30px;
                border-bottom-right-radius: 30px;
                border-top-right-radius: 30px;
                padding: 50px 28px;
                .noticia{
                    padding: 20px 0;
                    a {
                        color: inherit;
                        text-decoration: none;
                    }
                    .img{
                        position: relative;
                        height: 0;
                        padding-bottom: 55%;
                        img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 20px;
                        }
                    }
                    .content{
                        margin-top: 10px;
                        .title{
                            font-family: 'Plus Jakarta Sans', sans-serif;
                            font-style: normal;
                            font-weight: 700;
                            font-size: 24px;
                            line-height: 120%;
                            color: #252432;
                        }
                        .data{
                            font-family: 'Plus Jakarta Sans', sans-serif;
                            font-style: normal;
                            font-weight: 700;
                            font-size: 10px;
                            line-height: 120%;
                            color: #000000;
                            margin-bottom: 15px;
                        }
                    }
                }
            }
        }
        .listagem_noticias {
            width: 70%;
            &.w100{
                width: 100%;
            }
            .paginacao{
                .setas{
                    .single_pag {
                        &:before {
                            display: none;
                        }
                    }
                }
                .single_pag{
                    display: inline-block;
                    cursor: pointer;
                    padding: 10px;
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 120%;
                    color: #D20A11;
                    position: relative;
                    &:before{
                        content: '';
                        height: 25px;
                        width: 2px;
                        background: #D20A11;
                        position: absolute;
                        display: inline-block;
                        top: 50%;
                        transform: translateY(-50%);
                        left: 0;
                    }
                    &:first-child{
                        &:before{
                            display: none;
                        }
                    }
                    &.active{
                        font-weight: 900;
                    }
                    &.disabled{
                        opacity: 0.3;
                    }
                }
            }
            .holder_noticias{
                display: flex;
                flex-wrap: wrap;
                .noticia{
                    width: 100%;
                    padding: 0 0 56px;
                    .img {
                        padding-bottom: 55%;
                        img{
                            width: 100%;
                        }
                    }
                }

            }
        }
    }
}

.pagina_noticias #load-noticias-blog.display_none{
    display: none !important;
}
.pagina_noticias .noticias-loading-blog{
    display: none;
}

@media screen and (max-width: 1400px) {
    #blog {
        .pagina_noticias {
            .noticias_destaque {
                .titulo {
                    .nome {
                        div {
                            font-size: 28px;
                        }
                    }
                }
                .lista_noticias {
                    .noticia {
                        .content {
                            .title {
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1200px) {
    #blog {
        .pagina_noticias {
            .noticias_destaque {
                .titulo {
                    .nome {
                        div {
                            font-size: 26px;
                        }
                    }
                }
                .lista_noticias {
                    .noticia {
                        .content {
                            .title {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 992px) {
    #blog {
        .pagina_noticias {
            .listagem_noticias {
                width: 100%;
            }
            .noticias_destaque{
                display: none;
            }
        }
    }
}
/*================================================*/
/*NOTICIA*/
/*================================================*/

#noticia{
    .bloco{
        background: #fff;
    }
    .intro_noticia{
        .resumo{
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 32px;
            line-height: 30px;
            color: #252432;
        }
        .zona_categorias{
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: space-between;
            .tags{
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
                align-items: flex-start;
                .tag{
                    background: #F2F2F2;
                    border-radius: 15px;
                    font-weight: 500;
                    font-family: 'Plus Jakarta Sans';
                    font-style: normal;
                    font-weight: 500;
                    font-size: 10px;
                    line-height: 150%;
                    color: #252432;
                    padding: 7px 30px;

                    a{
                        color: inherit;
                        text-decoration: none;
                    }
                }
            }
        }
    }
    .imagem{
        margin-top: 38px;
        img{
            width: 100%;
        }
    }
    .descricao{
        padding-top: 0;
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #252432;
        .btn_voltar{
            margin-top: 30px;
            a{
                font-weight: 700;
                color: inherit;
                text-decoration: none;
            }
        }
    }

}
.mais_noticias{
    .holder_noticias{
        display: flex;
        flex-wrap: wrap;

        .noticia{
            width: Calc(100% / 3);
            padding: 28px;
            a {
                color: inherit;
                text-decoration: none;
            }
            .img{
                position: relative;
                height: 0;
                padding-bottom: 70%;
                img{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                }
                .tags{
                    display: flex;
                    gap: 15px;
                    flex-wrap: wrap;
                    align-items: flex-start;
                    position: absolute;
                    bottom: -13px;
                    padding: 0 20px;
                    .tag{
                        background: #F2F2F2;
                        border-radius: 15px;
                        font-weight: 500;
                        font-family: 'Plus Jakarta Sans';
                        font-style: normal;
                        font-weight: 500;
                        font-size: 10px;
                        line-height: 150%;
                        color: #252432;
                        padding: 7px 30px;

                        a{
                            color: inherit;
                            text-decoration: none;
                        }
                    }
                }
                .icon{
                    position: absolute;
                    width: 46px;
                    height: 46px;
                    background: rgba(255, 255, 255, 0.2);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    right: 10px;
                    top: 10px;
                }
            }
            .content{
                margin-top: 40px;
                .title{
                    font-family: 'Plus Jakarta Sans', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 24px;
                    line-height: 120%;
                    color: #252432;
                }
                .resumo{
                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 130%;
                    color: #252432;
                    margin-top: 10px;
                }
            }
        }
    }
}

@media screen and (max-width: 1400px) {
    #noticia {
        .intro_noticia {
            .resumo {
                font-size: 27px;
                line-height: 120%;
            }
        }
        .descricao {
            font-size: 18px;
            line-height: 120%;
        }
    }
    .mais_noticias {
        .holder_noticias {
            .noticia {
                padding: 15px;
                .content {
                    .title {
                        font-size: 22px;
                    }
                    .resumo {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1200px) {
    #noticia {
        .intro_noticia {
            .resumo {
                font-size: 22px;
            }
        }
        .descricao {
            font-size: 16px;
            line-height: 120%;
        }
    }
    .mais_noticias {
        .holder_noticias {
            .noticia {
                padding: 10px;
                .content {
                    .title {
                        font-size: 20px;
                    }
                    .resumo {
                        font-size: 14px;
                    }
                }

                .img {
                    .tags {
                        gap: 10px;
                        padding: 0 10px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 992px) {
    #noticia {
        .intro_noticia {
            .resumo {
                font-size: 20px;
            }
        }

    }
    .mais_noticias {
        .holder_noticias {
            .noticia {
                padding: 10px 0;
                width: 100%;
                .content {
                    .title {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

/*================================================*/
/*CONTACTOS*/
/*================================================*/
#contactos{
    &.detalhe {
        h1, h2 {
            font-weight: 600;
            font-size: 60px;
            line-height: 120%;
            @media screen and (max-width: 1400px) {
                &{
                    font-size: 50px;
                }
            }
            @media screen and (max-width: 1200px) {
                &{
                    font-size: 40px;
                }
            }
            @media screen and (max-width: 992px) {
                &{
                    font-size: 30px;
                }
            }
        }
    }
    .bloco{
        background: #fff;
    }
    .info_contactos{
        .holder_info_contactos{
            display: flex;
            flex-wrap: wrap;
            .info {
                padding-right: 70px;
                width: 50%;
                .descricao{
                    margin-top: 60px;
                    font-family: 'Inter',sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 25px;
                    color: #252432;
                }
                .single_contacto{
                    margin-top: 60px;
                }
            }
            .formulario {
                width: 50%;
            }
        }
    }

    .single_contacto{
        display: flex;
        flex-wrap: wrap;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
        color: #252432;
        a {
            color: inherit;
            text-decoration: none;
            &:hover{
                text-decoration: underline;
            }
        }
        .icon{
            width: 65px;
            height: 65px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: #FFEEEB;
            border-radius: 20px;

            img{
                width: 24px;
                height: 24px;
                object-fit: contain;
            }
        }
        .info_contacto{
            width: Calc(100% - 65px);
            padding-left: 15px;
            padding-top: 18px;

            h3{
                font-family: 'Inter', sans-serif;
                font-style: normal;
                font-weight: 600;
                font-size: 20px;
                line-height: 24px;
                color: #F25D1A;
                margin-bottom: 25px;
            }
        }
    }
    .mais_contactos{
        padding-top: 0;
        h2{
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 24px;
            line-height: 29px;
            color: #F25D1A;
            margin-bottom: 30px;
        }
        .lista_zonas{
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            .local{
                width: Calc(100% / 3);
                padding: 15px;
                h3{
                    font-family: 'Inter', sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 24px;
                    color: #F25D1A;
                    margin-bottom: 30px;
                }
                .single_contacto{
                    font-weight: 700;
                    padding: 15px 0;
                }
            }
        }
        &.estrangeiro{
            .local{
                width: Calc(100% / 2);
                .holder_local{
                    background: #FFEEEB;
                    padding: 50px 70px;
                    border-radius: 30px;
                }
                .single_contacto{
                    font-weight: 700;
                    padding: 15px 0;
                    .icon{
                        background: #F25D1A;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1400px) {
    #contactos {
        .single_contacto {
            font-size: 16px;
            .info_contacto {
                h3 {
                    font-size: 18px;
                    line-height: 22px;
                }
            }
        }
        .mais_contactos {
            h2{
                font-size: 22px;
                line-height: 27px;
            }
            .lista_zonas {
                .local {
                    h3 {
                        font-size: 18px;
                        line-height: 22px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 992px) {
    #contactos {
        .info_contactos {
            .holder_info_contactos {
                .info {
                    padding-right: 0;
                    width: 100%;
                    .descricao {
                        margin-top: 30px;
                        font-size: 16px;
                        line-height: 23px;
                    }
                }
                .formulario{
                    width: 100%;
                    margin-top: 40px;
                }
            }
        }

        .mais_contactos {
            .lista_zonas {
                margin: 0;
                .local {
                    width: 100%;
                    padding: 15px 0;
                }
            }
        }
    }
}

@media screen and (max-width: 767px) {
    #contactos {
        .mais_contactos {
            &.estrangeiro {
                .local {
                    .holder_local {
                        padding: 30px 25px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 567px) {
    #contactos {
        & .single_contacto {
            font-size: 14px;
            .icon {
                width: 45px;
                height: 55px;
            }
            .info_contacto {
                width: Calc(100% - 45px);
            }
        }
    }
}

#servico.solucao.pagina_detalhe.pag_25,
#servico.solucao.pagina_detalhe.pag_26{
    .intro_servico {
        .holder_intro_servico {
            .info {
                background: transparent;
                &:before {
                    display: none;
                }
            }
            .descricao {
                &:before {
                    display: none;
                }
            }
        }
    }
    .bloco-noticia-principal {
        & .titulo-topo {
            @media screen and (min-width: 992px) {
                &:before {
                    box-shadow: 10px -10px 1px #fff;
                }
                &:after {
                    box-shadow: 10px -10px 1px #fff;
                }
            }
        }
    }
}
.pagina_detalhe{
    .vantagens{
        .holder_vantagens{
            padding-top: 170px;
            position: relative;
            img{
                position: absolute;
                left: 0;
                top: 0;
                width: 95%;
                height: 95%;
                object-fit: cover;
                border-radius: 10px;
                z-index: -1;
            }
            .lista_vantagens{
                background: #FCFCFB;
                border-radius: 20px;
                font-family: 'Inter', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 20px;
                line-height: 30px;
                color: #8987A1;
                padding: 40px 55px;
                width: 50%;
                margin-left: auto;

                table{
                    border: none;
                    tr{
                        td{
                            padding: 25px 0 25px 40px;
                            position: relative;
                            &:before{
                                content: '';
                                background-image: url('/site/imagens/check.webp');
                                height: 29px;
                                width: 29px;
                                position: absolute;
                                left: 0;
                            }
                        }
                    }
                }
            }
        }
    }
    .descricao{
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        color: #252432;
    }
    .cta{
        .botao.only{
            text-align: center;
        }
        .holder_cta{
            display: flex;
            flex-wrap: wrap;
            padding: 30px 50px;
            background: #FFEEEB;
            border-radius: 30px;
            align-items: center;
            justify-content: space-between;
            max-width: 900px;
            margin: 0 auto;
            .texto{
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 32px;
                line-height: 40px;
                color: #131C2C;
                width: Calc(100% - 230px);
                padding-right: 30px;
            }
            .botao{
                width: 230px;
                text-align: right;
            }
        }
    }
    .processo{
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #8987A1;
        position: relative;
        .svg{
            position: absolute;
            svg{
                width: 100%;
                height: auto;
            }
            &.svg1{
                right: 0;
                z-index: -1;
                width: 569px;
                max-width: 50%;
                bottom: 0%;
                transform: translateY(50%);
                -moz-transform: translateY(50%);
                -webkit-transform: translateY(50%);
            }
            &.svg2{
                left: 0;
                z-index: -1;
                width: 338px;
                max-width: 50%;
                bottom: 22%;
                transform: translateY(50%);
                -moz-transform: translateY(50%);
                -webkit-transform: translateY(50%);
            }
        }
        table{
            width: 100% !important;
            border: none;
            margin-top: 100px;
            tr{
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                td{
                    width: 50%;
                    padding: 25px;
                    h3{
                        font-family: 'Plus Jakarta Sans', sans-serif;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 32px;
                        line-height: 40px;
                        color: #131C2C;
                    }
                    ul{
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        li{
                            counter-increment: inst;
                            padding: 12px 12px 12px 45px;
                            position: relative;
                            &:before{
                                content: counter(inst);
                                position: absolute;
                                left: 0;
                                width: 30px;
                                height: 30px;
                                display: flex;
                                background: #F25D1A;
                                border-radius: 50%;
                                justify-content: center;
                                align-items: center;
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1400px){
    .pagina_detalhe {
        .vantagens {
            .holder_vantagens {
                .lista_vantagens {
                    font-size: 18px;
                    line-height: 28px;
                }
            }
        }
        .processo {
            font-size: 18px;
            line-height: 28px;
            table{
                tr {
                    & td {
                        h3 {
                            font-size: 14px;
                            line-height: 34px;
                        }
                    }
                }
            }
        }
        .cta {
            .holder_cta {
                .texto {
                    font-size: 30px;
                    line-height: 38px;
                }
            }
        }
        .descricao {
            font-size: 18px;
            line-height: 28px;
        }
    }

}

@media screen and (max-width: 1200px){
    .pagina_detalhe {
        .descricao {
            font-size: 16px;
            line-height: 26px;
        }
        .vantagens {
            .holder_vantagens {
                .lista_vantagens {
                    font-size: 16px;
                    line-height: 26px;
                }
            }
        }
        .processo {
            font-size: 18px;
            line-height: 28px;
            table{

                tr {
                    & td {
                        h3 {
                            font-size: 22px;
                            line-height: 30px;
                        }
                    }
                }
            }
        }
        .cta {
            .holder_cta {
                .texto {
                    font-size: 28px;
                    line-height: 36px;
                }
            }
        }
    }
}
@media screen and (max-width: 992px){
    .pagina_detalhe {
        .vantagens {
            .holder_vantagens {
                img {
                    width: 99%;
                    height: 45%;
                    left: 50%;
                    transform: translateX(-50%);
                    -moz-transform: translateX(-50%);
                    -webkit-transform: translateX(-50%);
                }
                .lista_vantagens {
                    padding: 25px;
                    width: 100%;
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
        .processo {
            font-size: 18px;
            line-height: 24px;
            .svg{
                display: none;
            }
            table{
                margin-top: 30px;
                tr {
                    & td {
                        h3 {
                            font-size: 20px;
                            line-height: 28px;
                        }
                    }
                }
            }
        }
        .cta {
            .holder_cta {
                .texto {
                    font-size: 26px;
                    line-height: 34px;
                }
            }
        }
    }
}

@media screen and (max-width: 767px){
    .pagina_detalhe {
        .processo {
            table {
                tr {
                    td {
                        width: 100%;
                        padding: 25px 0;
                    }
                }
            }
        }
        .cta {
            .holder_cta {
                padding: 30px 25px;
                .texto {
                    width: 100%;
                    padding-right: 0;
                    text-align: center;
                    margin-bottom: 30px;
                }
                .botao{
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}