@font-face {
    font-family: 'NOME';
    font-weight: normal;
    font-style: normal;
    src: url(/site/fonts/FILE.woff) format('woff');
}

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

body{
    background: #fcf8f6;
    font-size: 18px;
    line-height: 150%;

    &.open{
        overflow: hidden;
    }

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

    @media screen and (max-width: 992px){
        &{
            font-size: 14px;
        }
    }
}
@keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }
    to {
        visibility: visible;
        opacity: 1;
    }
}

body,
h1, h2, h3, h4, h5, h6{
    font-family: "Urbanist", sans-serif;
}



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

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


.iframe_holder{
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
    iframe, video{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

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

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

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


    @media (min-width: 1200px){
        & {
            max-width: 1099px;
        }
    }


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

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

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

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

.titulo_small{
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #C6AA4A;
    text-transform: uppercase;
}

.titulo_big{
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    color: #F4EAE3;

    @media screen and (max-width: 1400px) {
        &{
            font-size: 54px;
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            font-size: 44px;
        }
    }
    @media screen and (max-width: 992px) {
        &{
            font-size: 34px;
        }
    }
    @media screen and (max-width: 767px) {
        &{
            font-size: 30px;
        }
    }
}

.btn1{
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 10px 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 104%;
    text-align: center;
    color: #FFFFFF;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    &:hover{
        background: #C6AA4A;
        color: #002651;
    }
    &.link{
        background: transparent;
        border: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        color: #FFFFFF;
        border-bottom: 1px solid #fff;
        padding: 2px 0;
        border-radius: 0;
        &:hover{
            color: #F9BC23;
            border-color: #F9BC23;
        }
    }
    &.v2{
        background: #FFFFFF;
        border: 2px solid #FFFFFF;
        color: #C6AA4A;
        &:hover{
            background: transparent;
            border: 2px solid #FFFFFF;
            color: #fff;
            svg{
                path{
                    fill: #fff;
                }
            }
        }
    }
}

.bg_gold{
    background: #C6AA4A;
}
.bg_dark_blue{
    background: #002E61;
}
/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    padding: 55px 0;
    width: 100%;
    z-index: 6;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    &.scroll, &.dark{
        background: #002651;
        padding: 20px 0;
    }

    .holder_menu{
        justify-content: space-between;
        align-items: center;
        .navbar-header {
            float: unset;
            img{
                width: 224px;
                max-width: 100%;
            }
        }
        .actions{
            align-items: center;
            gap: 25px;
            .language{
                padding: 12.5px 13.5px;
                border: 1px solid #F4EAE3;
                border-radius: 50px;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                overflow: hidden;
                line-height: 14px;

                a{
                    &:after{
                        display: none;
                    }
                }

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

                    &:hover{
                        .icon{
                            svg{
                                display: none;
                            }
                        }
                        .dropdown-menu{
                            width: 56px;
                            position: relative !important;
                            inset: unset !important;
                            padding-left: 10px;
                            transform: unset !important;
                        }
                    }
                }

                .dropdown-menu{
                    display: flex !important;
                    gap: 15px;
                    position: relative;
                    width: 0;
                    min-width: auto;
                    overflow: hidden;
                    padding: 0;
                    background: transparent;
                    color: #fff;
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    border: none;
                    li{
                        position: relative;
                        &:after{
                            content: '|';
                            position: absolute;
                            right: -8px;
                            top: 0;
                        }
                        &:last-child:after{
                            display: none;
                        }
                    }
                    &.show{
                        width: 56px;
                        position: relative !important;
                        inset: unset !important;
                        padding-left: 10px;
                        transform: unset !important;
                    }
                    a{
                        font-weight: 600;
                        font-size: 12px;
                        line-height: 14px;
                        color: #F4EAE3;
                        text-transform: uppercase;
                        text-decoration: none;
                        &.active{
                            font-weight: 800;
                        }
                    }
                }
            }

            .menu-toggler{
                background: transparent;
                border: none;
                padding: 0;
                .toggle_menu{
                    padding: 14px 25px;
                    background: #C6AA4A;
                    border-radius: 30px 30px 30px 0px;
                    font-weight: 600;
                    font-size: 12px;
                    line-height: 14px;
                    color: #F4EAE3;
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;

                    &:hover{
                        background: #002651;
                        color: #C6AA4A;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 992px) {
        &{
            padding: 20px 0;
            .holder_menu {
                .navbar-header {
                    img {
                        width: 124px;
                    }
                }
                .actions {
                    gap: 10px;
                    .menu-toggler {
                        .toggle_menu {
                            padding: 8px 15px;
                        }
                    }
                    .language {
                        padding: 6px 6.5px;
                    }
                }
            }
        }
    }
}
.menu_lateral{
    position: fixed;
    top: 0;
    /*right: -100%;*/
    opacity:0;
    visibility: hidden;
    right: 0;
    margin: auto;
    /*background: #002651;*/
    z-index: 7;
    height: 100%;
    width: 100%;
    transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;

    &:before{
        content: '';
        height: 150px;
        top: 0;
        position: absolute;
        left: 0;
        width: 480px;
        background: #022651;
        z-index: 1;
        display: none;
    }

    &.open{
        right: 0;
        opacity:1;
        visibility: visible;

        &:before {
            display: block;
        }
    }
    .cabecalho{
        position: absolute;
        width: 100%;
        justify-content: space-between;
        padding: 55px 60px;
        z-index: 2;
        .navbar-header{
            width: 480px;
            max-width: 100%;
            img{
                width: 250px;
                max-width: 100%;
            }
        }
        .menu-toggler{
            background: transparent;
            border: 0;
            width: 35px;
            cursor: pointer;

            #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
                width: 38px;
                height: 29px;
                position: relative;
                margin: 0 auto;
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-transition: .5s ease-in-out;
                -moz-transition: .5s ease-in-out;
                -o-transition: .5s ease-in-out;
                transition: .5s ease-in-out;
                cursor: pointer;
                span {
                    display: block;
                    position: absolute;
                    height: 4px;
                    width: 100%;
                    background: #fff;
                    border-radius: 0;
                    opacity: 1;
                    left: 0;
                    -webkit-transform: rotate(0deg);
                    -moz-transform: rotate(0deg);
                    -o-transform: rotate(0deg);
                    transform: rotate(0deg);
                    -webkit-transition: .25s ease-in-out;
                    -moz-transition: .25s ease-in-out;
                    -o-transition: .25s ease-in-out;
                    transition: .25s ease-in-out;
                }
                span:nth-child(1) {
                    top: 0px;
                }
                span:nth-child(2) {
                    top: 10px;
                }
                span:nth-child(3) {
                    top: 20px;
                }
                &.open {
                    span:nth-child(1) {
                        top: 12px;
                        -webkit-transform: rotate(140deg);
                        -moz-transform: rotate(140deg);
                        -o-transform: rotate(140deg);
                        transform: rotate(140deg);
                    }
                    span:nth-child(2) {
                        opacity: 0;
                        left: -60px;
                    }
                    span:nth-child(3) {
                        top: 12px;
                        -webkit-transform: rotate(-140deg);
                        -moz-transform: rotate(-140deg);
                        -o-transform: rotate(-140deg);
                        transform: rotate(-140deg);
                    }
                }
            }
        }
    }
    .holder_menu{
        width: 100vw;
        height: 100%;
        position: relative;
        background: rgba(0, 0, 0, 0.2);
        /**/
        -webkit-backdrop-filter: blur(15px);
        -moz-backdrop-filter: blur(15px);
        -o-backdrop-filter: blur(15px);
        -ms-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        .svg_blur{
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            svg{
                width: 100%;
                height: auto;
            }
        }
        .menu{
            background: #002651;
            margin: 0;
            float: unset;
            color: #fff;
            width: 480px;
            max-width: 100%;
            height: 100%;
            padding: 150px 60px 60px;
            overflow-y: auto;
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            align-content: space-between;
            ul{
                padding: 0;
            }
            .botao{
                width: 100%;
            }

            .menu-nav{
                list-style: none;
                margin: 0;
                width: 100%;
                .dropdown{
                    margin: 15px 0;
                    cursor: pointer;
                    color: #fff;

                    a{
                        letter-spacing: 0;
                        text-decoration: none !important;
                        font-style: normal;
                        font-weight: 600;
                        font-size: 32px;
                        line-height: 200%;
                        color: #C6AA4A;
                        display: flex;
                        align-items: center;
                        &:after{
                            display: none;
                        }
                        .seta{
                            width: 14px;
                            height: 7px;
                            margin-left: 5px;
                            position: relative;
                            transform: rotate(-180deg);
                            -moz-transform: rotate(-180deg);
                            -webkit-transform: rotate(-180deg);
                            transition: all .3s ease-in-out;
                            -moz-transition: all .3s ease-in-out;
                            -webkit-transition: all .3s ease-in-out;
                            svg{
                                position: absolute;
                                top: 50%;
                                left: 50%;
                                width: 100%;
                                height: auto;
                                transform: translate(-50%,-50%);
                                -moz-transform: translate(-50%,-50%);
                                -webkit-transform: translate(-50%,-50%);
                            }
                        }
                        &.show .seta {
                            transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            -webkit-transform: rotate(0deg);
                        }
                    }

                }
                .dropdown a:hover,
                li.active > a,
                li.active:hover > a {
                    color: #F9BC23;
                    text-decoration: none !important;
                }
                .dropdown-menu {
                    background-color: transparent;
                    cursor: default;
                    text-align: left;
                    color: #fff;
                    margin-top: 20px;
                    top: 5px;
                    position: relative !important;
                    top: unset !important;
                    inset: unset !important;
                    transform: unset !important;
                    z-index: 0;
                    border: none !important;
                    a {
                        font-weight: 500;
                        font-size: 20px;
                        line-height: 160%;
                        color: #FFFFFF;
                    }
                    a:hover,
                    li.active > a,
                    li.active:hover > a {
                        color: #F9BC23;
                        text-decoration: none !important;
                    }
                }
            }

        }
        .imagem{
            width: Calc(100% - 480px);
            position: relative;
            height: 110vh;
            z-index: 0;
            .icon{
                width: 647px;
                max-width: 70%;
                position: absolute;
                bottom: 0;
                right: 0;
                z-index: 0;
                svg{
                    width: 100%;
                    height: auto;
                }
            }
        }
    }

    @media screen and (max-width: 992px) {
        &{
            .holder_menu{
                .menu{
                    width: 100%;
                    &:before {
                        width: 100%;
                    }
                    .menu-nav {
                        .dropdown {
                            a {
                                font-size: 25px;
                            }
                            .dropdown-menu {
                                a {
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
                .imagem{
                    display: none;
                }
            }
        }
    }

    @media screen and (max-width: 767px) {
        &{
            .cabecalho {
                padding: 20px 30px;
                .navbar-header {
                    img {
                        width: 200px;
                    }
                }
            }
            .holder_menu{

                .menu{
                    padding: 150px 30px 30px;
                }
            }
        }
    }

}

/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/
.fakebanner{
    height: 160px;
    @media screen and (max-width: 992px) {
        &{
            height: 100px;
        }
    }
}

.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    background: #000;

    .holder_slider{
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        img{
            width: 100%;
        }
        .single_banner,
        .single_banner .holder_content,
        .single_banner .holder_content_img{
            width: 100%;
            height: 100vh;
            min-height: 700px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;

        }
        .single_banner {

            .icon_m{
                position: absolute;
                opacity: 0.1;
                right: 0;
                bottom: -15%;
                width: 740px;
                max-width: 50%;
                z-index: 0;
                img{
                    width: 100%;
                }
            }
            .holder_content_img {
                .iframe_holder{
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
                }
            }
            .holder_slider {
                video{
                    position: absolute;
                    width: 100%;
                    /* height: 100%; */
                    top: Calc( 50% - 36px );
                    left: 50%;
                    -webkit-transform: translate(-50%,-50%);
                    -ms-transform: translate(-50%,-50%);
                    transform: translate(-50%,-50%);
                    z-index: 1;
                    video{
                        position: absolute;
                        width: 100%;
                        /* height: 100%; */
                        top: Calc( 50% - 36px );
                        left: 50%;
                        -webkit-transform: translate(-50%,-50%);
                        -ms-transform: translate(-50%,-50%);
                        transform: translate(-50%,-50%);
                        z-index: 1;
                    }
                }
            }
            .conteudo{
                position: absolute;
                top: Calc(50% + 30px);
                left: 0;
                right: 0;
                text-align: left;
                margin: auto;
                transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                transition: all .3s;
                .holder_conteudo{
                    max-width: 665px;
                    margin: 0 auto;
                    text-align: center;
                }
                .nome{
                    font-weight: 700;
                    font-size: 64px;
                    line-height: 120%;
                    color: #F4EAE3;
                }
                .descricao{
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 150%;
                    color: rgb(244 234 227 / 80%);
                }
                .botao{
                    margin-top: 35px;
                }
            }
        }
    }

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

        .holder_slider{
            .single_banner {
                .conteudo{
                    .holder_conteudo{
                        max-width: 600px;
                    }
                    .nome{
                        font-size: 54px;
                    }
                    .descricao{
                        font-size: 18px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){

        .holder_slider{
            .single_banner {
                .conteudo{
                    .holder_conteudo{
                        max-width: 522px;
                    }
                    .nome{
                        font-size: 44px;
                    }
                    .descricao{
                        font-size: 16px;
                    }
                    .botao{
                        button{
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){

        .holder_slider{
            .single_banner,
            .single_banner .holder_content,
            .single_banner .holder_content_img{
                min-height: 600px;

            }
            .single_banner {
                .conteudo{
                    .holder_conteudo{
                        max-width: 522px;
                    }
                    .nome{
                        font-size: 34px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px){

        .holder_slider{
            .single_banner,
            .single_banner .holder_content,
            .single_banner .holder_content_img{
                min-height: 500px;

            }
            .single_banner {
                .conteudo{
                    .nome{
                        font-size: 30px;
                    }
                }
            }
        }
    }
}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/

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

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


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

    .bloco{
        padding: 40px 0;
    }
}


/*==================================================================================================*/
/*GERAL*/
/*==================================================================================================*/
.intro{
    .d-flex{
        flex-wrap: wrap;
        margin: 0 -15px;
        .coluna{
            padding: 0 15px;
        }
        .coluna.first{
            width: 50%;
        }
        .coluna.last{
            width: 50%;
        }
    }
    .titulo,
    .descricao{
        font-weight: 500;
        font-size: 24px;
        line-height: 120%;
        color: #22282B;
    }
    .titulo{
        /*
        font-size: 40px;
        line-height: 120%;
        color: #22282B;*/
        font-weight: 700;
    }

    @media screen and (max-width: 1500px){
        &{
            /*.titulo{
                font-size: 36px;
            }*/
            .titulo,
            .descricao{
                font-size: 20px;
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            /*.titulo{
                font-size: 30px;
            }*/
            .titulo,
            .descricao{
                font-size: 19px;
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .d-flex {
                .coluna.first {
                    width: 50%;
                }
                .coluna.last {
                    width: 50%;
                }
            }
            /*.titulo{
                font-size: 32px;
            }*/
            .titulo,
            .descricao{
                font-size: 17px;
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .d-flex{
                margin: 0;
                .coluna{
                    padding: 0;
                }
                .coluna.first{
                    width: 100%;
                    margin-top: 20px;
                }
                .coluna.last{
                    width: 100%;
                }
            }
            /*.titulo{
                font-size: 30px;
            }*/


            .d-flex{
                .coluna.last{
                    margin-top: 10px;
                }
            }
        }
    }
    /*@media screen and (max-width: 567px){
        &{

            .titulo{
                font-size: 28px;
            }

        }
    }*/
}


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

.owl-carousel{

    .owl-dots{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 40px;
        &.disabled{
            display: none;
        }
        button.owl-dot{
            width: 40px;
            height: 5px;
            background: #C6AA4A;
            &.active{
                background: #002651;
            }
        }
    }
}
#homepage{
    .servicos{
        .holder_servicos{
            .owl-item{
                padding-top: 30px;
            }
            .single_servico{
                padding: 0 10px;
                a{
                    color: inherit;
                    text-decoration: none;
                }
                &.mtop{
                    margin-top: 50px;
                }
                .cabecalho{
                    flex-wrap: wrap;
                    margin-bottom: 30px;
                    transition: all .5s ease-in-out;
                    -moz-transition: all .5s ease-in-out;
                    -webkit-transition: all .5s ease-in-out;
                    h2{
                        width: Calc(100% - 52px);
                        padding-right: 10px;
                        font-weight: 700;
                        font-size: 36px;
                        line-height: 100%;
                        letter-spacing: -1px;
                        color: #22282B;
                        margin: 0;
                    }
                    .icon{
                        justify-content: center;
                        align-items: center;
                        display: inline-flex;
                        width: 52px;
                        height: 52px;
                        background: #C6AA4A;
                        border-radius: 50%;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        &:hover{
                            background: #002651;
                        }
                    }
                }
                .imagem{
                    border-radius: 24px 0px;
                    overflow: hidden;
                    position: relative;
                    padding-bottom: 155%;
                    transition: all .5s ease-in-out;
                    -moz-transition: all .5s ease-in-out;
                    -webkit-transition: all .5s ease-in-out;
                    img{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: all .5s ease-in-out;
                        -moz-transition: all .5s ease-in-out;
                        -webkit-transition: all .5s ease-in-out;
                    }
                }

                &:hover{
                    .cabecalho{
                        opacity: 1;
                        visibility: visible;
                    }
                    .imagem{

                        margin-top: 0;
                        img{
                            transform: scale(1.2);
                            -moz-transform: scale(1.2);
                            -webkit-transform: scale(1.2);
                        }
                    }
                }
                .nome{
                    align-items: flex-start;
                    gap: 20px;
                    justify-content: space-between;
                    overflow: hidden;
                    margin-top: 15px;
                    .number{
                        position: relative;
                        display: flex;
                        align-items: center;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 120%;
                        color: #22282B;
                        margin-top: 2px;
                        &:after{
                            content: '';
                            width: 200px;
                            background: #C6AA4A;
                            height: 1px;
                            display: block;
                            position: absolute;
                            left: Calc(100% + 5px);
                        }
                    }
                    h3{
                        font-weight: 700;
                        font-size: 22px;
                        line-height: 120%;
                        color: #22282B;
                        background: #fcf8f6;
                        position: relative;
                        z-index: 2;
                        padding-left: 5px;
                    }
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                .holder_servicos {
                    .single_servico {
                        .cabecalho {
                            h2 {
                                font-size: 30px;
                            }
                        }
                        .nome {
                            .number{
                                font-size: 18px;
                            }
                            h3 {
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1300px){
            &{
                .holder_servicos {
                    .single_servico {
                        .cabecalho {
                            h2 {
                                font-size: 25px;
                            }
                        }
                        .nome {
                            .number{
                                font-size: 16px;
                            }
                            h3 {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_servicos {
                    .single_servico {
                        .cabecalho {
                            h2 {
                                font-size: 22px;
                            }
                        }
                        .nome {
                            .number{
                                font-size: 14px;
                            }
                            h3 {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                padding-top: 0;
                .holder_servicos {
                    .single_servico {
                        &.second{
                            margin-top: 50px;
                        }
                        .cabecalho {
                            display: none !important;
                        }
                        .imagem{
                            margin-top: 0;
                        }
                    }
                }
            }
        }
    }


}

.projetos_slider{
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    position: relative;
    .owl-theme{
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        .owl-controls{
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
            position: absolute;
            z-index: 2;
            bottom: 85px;
            left: 50%;
            transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            text-align: right;

            @media (min-width: 768px){
                & {
                    width: 750px;
                }
            }

            @media (min-width: 992px){
                & {
                    width: 970px;
                }
            }


            @media (min-width: 1200px){
                & {
                    width: 1099px;
                }
            }


            @media (min-width: 1300px){
                & {
                    width: 1199px;
                }
            }

            @media (min-width: 1400px){
                & {
                    width: 1299px;
                }
            }

            @media (min-width: 1500px){
                & {
                    width: 1399px;
                }
            }

            @media (min-width: 1600px){
                & {
                    width: 1499px;
                }
            }
            .owl-nav{
                display: flex;
                margin-left: auto;
                justify-content: flex-end;
                gap: 10px;
                visibility: hidden;
                opacity: 0;
                transition: 10s all .3s ease-in-out;
                -moz-transition: 12s all .3s ease-in-out;
                -webkit-transition: 12s all .3s ease-in-out;
                &.show{
                    animation: fadeIn 1s 2s forwards;
                }
                .circle{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #C6AA4A;
                    border-radius: 50%;
                    width: 100px;
                    height: 100px;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 28px;
                    color: #FFFFFF;
                    position: relative;
                    &:before{
                        content: '';
                        border-radius: 50%;
                        width: 114px;
                        height: 114px;
                        background: rgba(198, 170, 74, 0.3);
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%,-50%);
                        -moz-transform: translate(-50%,-50%);
                        -webkit-transform: translate(-50%,-50%);
                    }
                }
                button{
                    background: transparent;
                    border: none;
                }
            }
        }
    }
    .holder_projetos{
        .single_projeto{
            position: relative;
            padding-bottom: 46%;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            a{
                text-decoration: none;
            }

            .custom_container{
                height: 100%;
            }
            .holder_conteudo{
                height: 100%;
                max-width: 426px;
                flex-wrap: wrap;
                align-content: space-between;
                align-items: stretch;

                .top{
                    width: 100%;
                }
                .localizacao{
                    width: 100%;
                }
            }
            &:after{
                content: '';
                background: rgb(17 17 17 / 30%);
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                position: absolute;
                z-index: 0;
            }
            .conteudo{
                position: absolute;
                z-index: 1;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                width: 100%;
                height: 100%;

                .icon{
                    margin-bottom: 20px;
                    width: 90px;
                    svg{
                        width: 100%;
                        height: auto;
                    }
                }
                .nome{
                    .titulo,
                    h3{
                        font-weight: 700;
                        font-size: 48px;
                        line-height: 120%;
                        color: #FFFFFF;
                    }
                }
                .descricao{
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 120%;
                    color: #FFFFFF;
                    margin-top: 10px;
                }
                .botao{
                    margin-top: 20px;
                }
                .localizacao{
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 28px;
                    color: #FFFFFF;
                    align-items: center;
                    gap: 10px;
                    .icon{
                        width: 24px;
                        margin: 0;
                        svg{
                            width: 100%;
                            height: auto;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            .holder_projetos {
                .single_projeto {
                    .conteudo {
                        .nome {
                            .titulo,
                            h3 {
                                font-size: 38px;
                            }
                        }
                        .descricao {
                            font-size: 18px;
                        }
                    }
                }
            }
            .owl-theme {
                .owl-controls {
                    .owl-nav {
                        .circle {
                            font-size: 14px;
                            line-height: 24px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .holder_projetos {
                .single_projeto {
                    .conteudo {
                        .nome {
                            .titulo,
                            h3 {
                                font-size: 28px;
                            }
                        }

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

            .owl-theme {
                .owl-controls {
                    bottom: 40px;
                    left: unset;
                    right: 0;
                    transform: unset;
                    -moz-transform: unset;
                    -webkit-transform: unset;
                    .owl-nav {
                        .circle {
                            display: none;
                        }
                    }
                }
            }
            .holder_projetos {
                .single_projeto {
                    .conteudo{
                        .icon{
                            width: 50px;
                        }
                        .descricao {
                            font-size: 14px;
                        }
                        .holder_conteudo {
                            .localizacao {
                                .icon{
                                    width: 17px;
                                }
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px){
        &{
            .holder_projetos {
                .single_projeto {
                    padding-bottom: 110%;
                }
            }

        }
    }
}

.banner,
.zona_banner{
    .holder_conteudo{
        visibility: hidden;
        opacity: 0;
        animation: fadeIn 1s .3s forwards;
    }
    .localizacao{
        visibility: hidden;
        opacity: 0;
        animation: fadeIn 1s .8s forwards;
    }
}
.testemunhos{
    position: relative;
    .icon{
        position: absolute;
        top: 85px;
        height: Calc(100% - 170px);

        svg{
            height: 100%;
            width: auto;
        }
        &.esquerda{
            left: 0;
        }
        &.direita{
            right: 0;
        }
    }
    .holder_testemunhos{
        max-width: 870px;
        margin: 0 auto;
        text-align: center;
        .descricao{
            font-weight: 600;
            font-size: 24px;
            line-height: 120%;
            color: #22282B;
            max-width: 700px;
            margin: 0 auto 50px auto;
        }
        h3{
            font-weight: 700;
            font-size: 28px;
            line-height: 40px;
            color: #C6AA4A;
        }
        .empresa{
            font-weight: 400;
            font-size: 18px;
            line-height: 32px;
            color: #22282B;
        }
    }

    @media screen and (max-width: 1400px) {
        .holder_testemunhos{
            max-width: 670px;
            .descricao{
                font-size: 18px;
                line-height: 120%;
            }
            h3{
                font-size: 18px;
                line-height: 30px;
            }
            .empresa{
                font-size: 14px;
                line-height: 24px;
            }
        }
    }

    @media screen and (max-width: 1200px) {
        .holder_testemunhos{
            max-width: 470px;
            .descricao{
                font-size: 16px;
            }
            h3{
                font-size: 16px;
            }
        }
    }
    @media screen and (max-width: 567px) {
        .icon{
            display: none;
        }
    }
}

.bg_dark_blue{
    .testemunhos {
        .holder_testemunhos {
            .descricao {
                color: #F4EAE3;
            }
            .empresa {
                color: #F4EAE3;
            }
        }
        .owl-carousel {
            .owl-dots {
                button.owl-dot {
                    width: 40px;
                    height: 5px;
                    background: #F4EAE3;
                    &.active{
                        background: #C6AA4A;
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/
#quem-somos{
    .intro_quem_somos{
        .d-flex{
            align-items: flex-end;
            flex-wrap: wrap;
        }
        .coluna{
            width: 50%;
            &.last{
                text-align: right;
                img{
                    width: 100%;
                    opacity: 0.15;
                    margin-top: -9vw;
                    margin-bottom: -9vw;
                }
            }
        }

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

                .coluna{
                    width: 100%;
                    &.first{
                        text-align: center;
                    }
                    &.last{
                        text-align: center;
                        margin-top: 40px;
                    }
                }
            }
        }
    }
    .missao{
        border: 1px solid #C6AA4A;
        border-right: none;
        border-left: none;
        .holder_missao{
            flex-wrap: wrap;
            .coluna.first{
                display: flex;
                flex-wrap: wrap;
                align-items: stretch;
                width: 40%;
                align-content: space-between;
                padding-right: 85px;
            }
            .coluna.last{
                border-left: 1px solid #C6AA4A;
                width: 60%;
                padding-left: 40px;
                img{
                    width: 100%;
                    border-radius: 24px 0px;
                }
            }

            .titulo{
                font-weight: 700;
                font-size: 24px;
                line-height: 140%;
                color: #F4EAE3;
            }
            .descricao{
                font-weight: 400;
                font-size: 20px;
                line-height: 150%;
                color: #F4EAE3;
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .holder_missao{
                    .titulo{
                        font-size: 22px;
                    }
                    .descricao{
                        font-size: 18px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_missao{
                    .titulo{
                        font-size: 20px;
                    }
                    .descricao{
                        font-size: 16px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{

                .holder_missao{
                    .coluna.first{
                        padding-right: 25px;
                        width: 50%;
                    }
                    .coluna.last{
                        padding-left: 25px;
                        width: 50%;
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {
            &{

                .holder_missao{
                    .coluna.first{
                        padding-right: 0;
                        width: 100%;
                    }
                    .coluna.last{
                        padding-left: 0;
                        width: 100%;
                        border-left: none;
                        padding-top: 0;
                    }
                }
            }
        }
    }
    .bloco-numeros{
        .holder_numeros{
            flex-wrap: wrap;
            justify-content: center;
            .single_numero{
                padding: 0 15px;
                width: Calc(100% / 4);
                position: relative;
                &:not(:last-child):after{
                    content: '';
                    height: 30px;
                    width: 1px;
                    position: absolute;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                    background: #F4EAE3;
                }
                .number-holder{
                    max-width: 180px;
                    margin: 0 auto;
                    .zona_numero{
                        font-weight: 700;
                        font-size: 64px;
                        line-height: 120%;
                        color: #C6AA4A;
                    }

                    .title{
                        font-weight: 600;
                        font-size: 20px;
                        line-height: 130%;
                        color: #F4EAE3;
                        margin-top: 15px;
                    }
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                .holder_numeros{
                    flex-wrap: wrap;
                    justify-content: center;
                    .single_numero{
                        .number-holder{
                            .zona_numero{
                                font-size: 54px;
                            }

                            .title{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_numeros{
                    .single_numero{
                        &:nth-child(odd):after{
                            content: '';
                            height: 30px;
                            width: 1px;
                            position: absolute;
                            right: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            -moz-transform: translateY(-50%);
                            -webkit-transform: translateY(-50%);
                            background: #F4EAE3;
                        }
                        &:nth-child(even):after{
                            display: none;
                        }
                        .number-holder{
                            max-width: 85px;
                            .zona_numero{
                                font-size: 44px;
                            }

                            .title{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_numeros{

                    flex-wrap: wrap;
                    justify-content: center;
                    .single_numero{
                        width: 50%;
                        padding: 15px;
                        .number-holder{
                            .zona_numero{
                                font-size: 34px;
                            }
                        }
                    }
                }
            }
        }
    }

    .construimos{
        img{
            width: 100%;
        }
        .intro{
            .titulo {
                font-weight: 700;
                font-size: 48px;
                line-height: 120%;
                color: #C6AA4A;
                position: relative;
                max-width: 442px;

                svg{
                    margin-left: -80%;
                    margin-top: -2vw;
                    width: 230%;
                }
            }
            .descricao{
                font-weight: 400;
                font-size: 24px;
                line-height: 120%;
                color: #F4EAE3;
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .intro{
                    .titulo {
                        font-size: 38px;
                        max-width: 310px;
                    }
                    .descricao{
                        font-size: 20px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .intro{
                    .titulo {
                        font-size: 28px;
                        max-width: 230px;
                        svg {
                            margin-left: -52%;
                            margin-top: -11vw;
                            width: 180%;
                        }
                    }
                    .descricao{
                        font-size: 18px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .intro{
                    .titulo {
                        font-size: 25px;
                        max-width: 100%;
                        margin-bottom: 20px;
                        svg {
                            margin-left: 0;
                            margin-top: 0;
                            width: 100%;
                            position: absolute;
                            left: 50%;
                            top: 50%;
                            transform: translate(-50%, -50%);
                            -moz-transform: translate(-50%, -50%);
                            -webkit-transform: translate(-50%, -50%);
                        }
                    }
                    .descricao{
                        font-size: 16px;
                    }
                }
            }
        }
    }
    .equipa{
        .cabecalho{
            max-width: 850px;
            margin: 0 auto 85px auto;
            text-align: center;
            h2{
                font-weight: 700;
                font-size: 36px;
                line-height: 120%;
                color: #C6AA4A;
            }
            .descricao{
                font-weight: 400;
                font-size: 24px;
                line-height: 120%;
                color: #F4EAE3;
            }
        }
        .holder_equipa{
            flex-wrap: wrap;
            .single_equipa{
                width: Calc(100% / 4);
                padding: 15px;
                .imagem{
                    padding-bottom: 130%;
                    position: relative;
                    border-radius: 30px;
                    overflow: hidden;
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                    &:after{
                        content: '';
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        z-index: 1;
                        position: absolute;
                        background: linear-gradient(180deg, rgba(27, 48, 82, 0) 0%, rgba(27, 48, 82, 0.9) 100%);
                        background-blend-mode: multiply, normal;
                    }
                }

                .conteudo{
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    padding: 40px;
                    z-index: 3;
                    transition: all .5s ease-in-out;
                    -moz-transition: all .5s ease-in-out;
                    -webkit-transition: all .5s ease-in-out;
                    .title{
                        font-weight: 700;
                        font-size: 30px;
                        line-height: 120%;
                        color: #F4EAE3;
                        width: 100%;
                    }
                    .descricao{
                        font-weight: 700;
                        font-size: 18px;
                        line-height: 120%;
                        color: #F4EAE3;
                        width: 100%;
                    }
                    &.nome{
                        padding: 0;
                        bottom: 40px;
                        left: 40px;
                        width: Calc(100% - 80px);
                    }
                    &.info_contactos{
                        top: 0;
                        background: #1B3052;
                        z-index: 2;
                        opacity: 0;
                        visibility: hidden;
                        &:after{
                            content: '';
                            top: -3px;
                            left: -3px;
                            right: -3px;
                            bottom: -3px;
                            z-index: 0;
                            position: absolute;
                            background: #1B3052;
                        }
                        .title,
                        .descricao{
                            opacity: 0;
                            visibility: hidden;
                        }
                        .info{
                            margin-top: 40px;
                            position: relative;
                            z-index: 2;
                            &, a{
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 120%;
                                color: #F4EAE3;
                            }
                            strong, b{
                                color: #C6AA4A;
                            }
                            table{
                                border: none;
                                tr{
                                    td{
                                        padding: 10px 0;
                                    }
                                }
                            }
                        }
                    }
                }
                &:hover{
                    .conteudo{
                        &.nome{
                            height: Calc(100% - 80px) !important;
                        }
                        &.info_contactos{
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1600px) {
            &{
                .holder_equipa{
                    .single_equipa{
                        .conteudo{
                            padding: 20px;
                            &.nome{
                                padding: 0;
                                bottom: 20px;
                                left: 20px;
                                width: Calc(100% - 40px);
                            }
                        }

                        &:hover{
                            .conteudo{
                                &.nome{
                                    height: Calc(100% - 40px) !important;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                .cabecalho{
                    h2{
                        font-size: 30px;
                    }
                    .descricao{
                        font-size: 20px;
                    }
                }
                .holder_equipa{
                    .single_equipa{
                        .conteudo{
                            .title{
                                font-size: 25px;
                            }
                            .descricao{
                                font-size: 16px;
                            }

                            &.info_contactos{
                                .info{
                                    &, a{
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .cabecalho{
                    margin-bottom: 40px;
                    h2{
                        font-size: 25px;
                    }
                    .descricao{
                        font-size: 18px;
                    }
                }
                .holder_equipa{
                    .single_equipa{
                        .conteudo{
                            .title{
                                font-size: 20px;
                            }
                            .descricao{
                                font-size: 14px;
                            }

                            &.info_contactos{
                                .info{
                                    &, a{
                                        font-size: 12px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_equipa{
                    .single_equipa{
                        width: 50%;
                        .conteudo{
                            padding: 40px;
                            &.nome{
                                padding: 0;
                                bottom: 40px;
                                left: 40px;
                                width: Calc(100% - 80px);
                            }
                        }

                        &:hover{
                            .conteudo{
                                &.nome{
                                    height: Calc(100% - 80px) !important;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px) {
            &{
                .holder_equipa{
                    .single_equipa{
                        width: 100%;
                        .conteudo{
                            padding: 20px;
                            &.nome{
                                padding: 0;
                                bottom: 20px;
                                left: 20px;
                                width: Calc(100% - 40px);
                            }
                        }

                        &:hover{
                            .conteudo{
                                &.nome{
                                    height: Calc(100% - 40px) !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


/*==================================================================================================*/
/*POLÍTICA DE QUALIDADE*/
/*==================================================================================================*/
#politica-de-qualidade{
    .imagem_full{
        width: 100%;
        position: relative;
        padding-bottom: 30%;
        border-radius: 0px 0px 30px 30px;
        overflow: hidden;
        img{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .intro {
        .descricao {
            color: #C6AA4A;
        }

        @media screen and (max-width: 992px) {
            & {
                .d-flex {
                    .coluna.last {
                        margin-top: 0;
                    }
                    .coluna.first {
                        margin-top: 10px;
                    }
                }
            }
        }
    }
    .o_que_diferencia{
        .holder_o_que_diferencia{
            flex-wrap: wrap;
            .single_pagina{
                width: Calc(100% / 3);
                padding: 10px;
                .imagem{
                    border-radius: 24px 0px;
                    position: relative;
                    overflow: hidden;
                    &.img_0{
                        padding-bottom: 122%;
                    }
                    &.img_1{
                        padding-bottom: 90%;
                    }
                    &.img_2{
                        padding-bottom: 105%;
                    }
                    img{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
                .info{
                    margin-top: 25px;
                    .titulo{
                        font-weight: 500;
                        font-size: 32px;
                        line-height: 110%;
                        color: #22282B;
                    }
                    .descricao{
                        font-weight: 500;
                        font-size: 20px;
                        line-height: 130%;
                        color: #667085;
                        margin-top: 15px;
                    }
                }
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .holder_o_que_diferencia{
                    .single_pagina{
                        .info{
                            .titulo{
                                font-size: 27px;
                            }
                            .descricao{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_o_que_diferencia{
                    .single_pagina{
                        .info{
                            .titulo{
                                font-size: 22px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_o_que_diferencia{
                    .single_pagina{
                        .info{
                            .titulo{
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                .holder_o_que_diferencia{
                    .single_pagina{
                        .info{
                            .titulo{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                .holder_o_que_diferencia{
                    .single_pagina{
                        width: 100%;
                        padding: 30px 0;
                        &:last-child{
                            padding-bottom: 0;
                        }
                        &:first-child{
                            padding-top: 0;
                        }
                    }
                }
            }
        }
    }

    .valores{
        padding-bottom: 0;
        .holder_valores{
            flex-wrap: wrap;
            .coluna.first{
                width: 65%;
                padding-right: 20px;
                .imagem{
                    border-radius: 24px 0px;
                    overflow: hidden;
                    img{
                        width: 100%;
                    }
                }
            }
            .coluna.last{
                width: 35%;
            }
            .descricao{
                font-weight: 700;
                font-size: 40px;
                line-height: 110%;
                letter-spacing: -1px;
                color: #002E61;
                max-width: 375px;
            }
            @media screen and (max-width: 1400px) {
                &{
                    .descricao{
                        font-size: 30px;
                    }
                }
            }
            @media screen and (max-width: 1200px) {
                &{
                    .descricao{
                        font-size: 25px;
                    }
                }
            }
            @media screen and (max-width: 992px) {
                &{
                    .titulo_small{
                        text-align: center;
                    }
                    .descricao{
                        font-size: 20px;
                        max-width: 100%;
                        text-align: center;
                    }
                    .coluna.first{
                        width: 100%;
                        padding-right: 0;
                        order: 2;
                        margin-top: 40px;
                    }
                    .coluna.last{
                        width: 100%;
                        order: 1;
                    }
                }
            }
        }
        .faqs{
            border-left: 2px solid rgba(0, 0, 0, 0.23);
            padding: 20px 0;
            margin-top: 35px;
            .holder_faqs{
                .single_faq{
                    margin-bottom: 40px;
                    padding-left: 25px;
                    position: relative;
                    &:before{
                        content: '';
                        height: 65px;
                        width: 2px;
                        background: #000;
                        position: absolute;
                        left: -2px;
                        top: 0;
                        opacity: 0;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    &:last-child{
                        margin-bottom: 0;
                    }
                    .faq{
                        width: Calc(100% - 30px);
                        padding-left: 60px;
                    }
                    .number{
                        width: 30px;
                        font-weight: 600;
                        font-size: 24px;
                        line-height: 110%;
                        color: #22282B;
                        opacity: 0.5;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    &.open{
                        .number{
                            color: #C6AA4A;
                            opacity: 1;
                        }

                        &:before{
                            opacity: 1;
                        }
                    }

                    .pergunta{
                        cursor: pointer;
                        width: 100%;
                        .cabecalho {
                            position: relative;
                            .titulo{
                                font-weight: 400;
                                font-size: 24px;
                                line-height: 110%;
                                color: #22282B;
                                opacity: 0.5;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                            }
                            span{
                                position: absolute;
                                color: #B23E3E;
                                top: 12px;
                                /* left: 0; */
                                font-size: 26px;
                                right: 0;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                            }
                        }
                        &.open{
                            .cabecalho {
                                span{
                                    transform: rotate(180deg);
                                    -moz-transform: rotate(180deg);
                                    -webkit-transform: rotate(180deg);
                                }

                                .titulo{
                                    color: #C6AA4A;
                                    opacity: 1;
                                    font-weight: 700;
                                }
                            }
                        }
                    }

                    .resposta,
                    .resposta p{
                        margin: 0;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 120%;
                        color: #002E61;
                    }
                    .resposta {
                        display: none;
                        padding-top: 0;
                        max-width: 315px;
                    }
                }
            }


            @media screen and (max-width: 1400px) {
                &{
                    .holder_faqs{
                        .single_faq{
                            .faq{
                                padding-left: 40px;
                            }
                            .number {
                                font-size: 22px;
                            }
                            .pergunta{
                                .cabecalho {
                                    .titulo{
                                        font-size: 22px;
                                    }
                                }
                            }
                            .resposta,
                            .resposta p{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 1200px) {
                &{
                    .holder_faqs{
                        .single_faq{
                            .faq{
                                padding-left: 20px;
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 992px) {
                &{
                    .holder_faqs{
                        .single_faq{
                            .number {
                                font-size: 20px;
                            }
                            .pergunta{
                                .cabecalho {
                                    .titulo{
                                        font-size: 20px;
                                    }
                                }
                            }
                            .resposta {
                                max-width: 100%;
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 767px) {
                &{
                    .holder_faqs{
                        .single_faq{
                            .number {
                                font-size: 18px;
                            }
                            .pergunta{
                                .cabecalho {
                                    .titulo{
                                        font-size: 18px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}



/*==================================================================================================*/
/*CERTIFICACOES E PARCEIROS*/
/*==================================================================================================*/
#certificacoes-e-parceiros{
    .certificacoes{
        h1{
            max-width: 765px;
            margin: 0 auto;
            position: relative;
            padding: 40px 0;
            img{
                position: absolute;
                opacity: 0.1;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 80%;
            }
        }
        .holder_certificacoes{
            flex-wrap: wrap;
            margin-top: 40px;
            .single_certificacao{
                width: Calc(100% / 3);
                padding: 45px 20px;
                text-align: center;
                .imagem{
                    width: 127px;
                    padding-bottom: 29%;
                    position: relative;
                    margin: 0 auto;
                    img{
                        position: absolute;
                        top:0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
                .descricao{
                    max-width: 335px;
                    margin: 30px auto 0;
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 120%;
                    color: #F4EAE3;
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                .holder_certificacoes{
                    .single_certificacao{
                        .descricao{
                            font-size: 18px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_certificacoes{
                    .single_certificacao{
                        .descricao{
                            font-size: 16px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_certificacoes{
                    .single_certificacao{
                        width: 50%;
                        .imagem {
                            padding-bottom: 50%;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                .holder_certificacoes{
                    .single_certificacao{
                        width: 100%;
                        padding: 30px 0;
                        .imagem {
                            padding-bottom: 33%;
                        }
                    }
                }
            }
        }
    }
    .intro{
        .descricao{
            max-width: 600px;
            color: #002E61;
        }
    }

    .lista_parceiros{
        .holder_lista_parceiros{
            flex-wrap: wrap;
            border-left: 1px solid #fff;
            border-top: 1px solid #fff;
            .single_parceiro{
                width: Calc(100% / 5);
                border-right: 1px solid #fff;
                border-bottom: 1px solid #fff;

                .holder_single_parceiro{
                    padding-bottom: 100%;
                    position: relative;
                    overflow: hidden;
                    .imagem{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%,-50%);
                        -moz-transform: translate(-50%,-50%);
                        -webkit-transform: translate(-50%,-50%);
                        width: 50%;
                        padding-bottom: 20%;
                        img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }
                    .bottom{
                        width: 100%;
                        justify-content: space-between;
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        padding: 25px;
                        align-items: center;
                        .nome{
                            margin: 0;
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 24px;
                            color: #22282B;
                        }
                        .icon{
                            background: #C6AA4A;
                            width: 25px;
                            height: 25px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border-radius: 50%;
                            cursor: pointer;
                            position: relative;
                            z-index: 3;
                            transition: all .3s ease-in-out;
                            -moz-transition: all .3s ease-in-out;
                            -webkit-transition: all .3s ease-in-out;
                        }
                    }

                    .descricao{
                        bottom: -100%;
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        background: #C6AA4A;
                        left: 0;
                        border: 1px solid #FFFFFF;
                        z-index: 1;
                        padding: 30px;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 24px;
                        color: #22282B;

                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                }
                &:hover{
                    .holder_single_parceiro{
                        .bottom{
                            .icon{
                                background: #000;
                                transform: rotate(45deg);
                                -moz-transform: rotate(45deg);
                                -webkit-transform: rotate(45deg);
                                svg{
                                    path{
                                        stroke: #C6AA4A;
                                    }
                                }
                            }
                        }
                        .descricao{
                            bottom: 0;
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                .holder_lista_parceiros{
                    .single_parceiro{
                        .holder_single_parceiro{
                            .imagem{
                                top: 40%;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_lista_parceiros{
                    .single_parceiro{
                        .holder_single_parceiro{
                            .descricao{
                                padding: 20px;
                            }
                            .bottom {
                                padding: 15px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_lista_parceiros{
                    .single_parceiro{
                        width: Calc(100% / 3);
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                .holder_lista_parceiros{
                    .single_parceiro{
                        width: Calc(100% / 2);
                    }
                }
            }
        }
    }
}


/*==================================================================================================*/
/*SERVICO*/
/*==================================================================================================*/
#servico{
    .banner {
        .holder_slider {
            .single_banner,
            .single_banner .holder_content,
            .single_banner .holder_content_img {
                width: 100%;
                height: 550px;
                min-height: unset;

                @media screen and (max-width: 992px) {
                    &{
                        height: 450px;
                    }
                }
                @media screen and (max-width: 567px) {
                    &{
                        height: 350px;
                    }
                }
            }
        }
    }
    .info_servico{
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: rgba(0, 0, 0, 0.6);

        table{
            border: none;
            tr{
                display: flex;
                flex-wrap: wrap;
                border: none;
                padding: 85px 0;
                &:first-child{
                    padding-top: 0;
                }
                &:last-child{
                    padding-bottom: 0;
                }
                td{
                    visibility: hidden;
                    opacity: 0;
                    animation: fadeIn 1s .3s forwards;
                    border: none;
                    img{
                        max-width: 122px !important;
                        max-height: 100px !important;
                        object-fit: contain;
                        margin-top: 15px;
                    }
                }
                td:first-child{
                    width: 40%;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 120%;
                    color: #22282B;
                }
                td:last-child{
                    width: 60%;
                    font-weight: 600;
                    font-size: 28px;
                    line-height: 120%;
                    color: #22282B;
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                font-size: 16px;

                table{
                    tr{
                        td:first-child{
                            font-size: 18px;
                        }
                        td:last-child{
                            font-size: 26px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                font-size: 14px;

                table{
                    tr{
                        padding: 40px 0;
                        td:first-child{
                            font-size: 16px;
                        }
                        td:last-child{
                            font-size: 22px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                table{
                    tr{
                        td:first-child{
                            font-size: 14px;
                        }
                        td:last-child{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                table{
                    tr{
                        padding: 20px 0;
                        td{
                            text-align: left;
                            img {
                                max-width: 100px !important;
                                max-height: 70px !important;
                            }
                        }
                        td:first-child{
                            width: 100%;
                            color: #b19a55;
                        }
                        td:last-child{
                            width: 100%;
                            margin-top: 20px;
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }
    .projetos_slider {
        .holder_projetos {
            .single_projeto {
                border-radius: 0 0 30px 30px;
                overflow: hidden;
                margin-top: -30px;
                min-height: 100vh;
                .conteudo {
                    padding-top: 85px;

                    padding-bottom: 100px;
                    @media screen and (max-width: 992px) {
                        &{
                            padding-top: 70px;
                            padding-bottom: 100px;
                        }
                    }
                }
            }
        }
    }
    .last_block.margin{
        margin-top: -30px;
        padding-top: 85px;

        @media screen and (max-width: 992px) {
            &{
                padding-top: 70px;
            }
        }
    }
}

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

#contactos{

    .bg_dark_blue{
        padding-bottom: 30px;
    }
    .intro_contactos{
        position: relative;
        padding: 10vw 0;
        .titulo_big{
            font-weight: 400;
        }
        img{
            width: 50%;
            opacity: 0.15;
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
        }

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

                .coluna{
                    width: 100%;
                    &.first{
                        text-align: center;
                    }
                    &.last{
                        text-align: center;
                        margin-top: 40px;
                    }
                }
            }
        }
    }
    .contactos{
        border: 3px solid #002651;
        border-right: none;
        border-left: none;
        .holder_contactos{
            flex-wrap: wrap;
            .coluna.first{
                display: flex;
                flex-wrap: wrap;
                width: 40%;
                align-content: flex-start;
                padding-right: 85px;
                align-items: flex-start;
            }
            .coluna.last{
                border-left: 3px solid #002651;
                width: 60%;
                padding-left: 40px;
                img{
                    width: 100%;
                    border-radius: 24px 0px;
                }
            }

            .titulo{
                font-weight: 700;
                font-size: 24px;
                line-height: 140%;
                color: #F4EAE3;
            }
            .descricao{
                font-weight: 400;
                font-size: 20px;
                line-height: 150%;
                color: #F4EAE3;
            }
            .holder_info_contactos{
                .single_contacto{
                    font-weight: 500;
                    font-size: 26px;
                    line-height: 150%;
                    color: #F4EAE3;
                    padding: 30px 0;
                    margin: 0 auto;
                    max-width: 500px;
                    &:first-child{
                        padding-top: 0;
                    }
                    &:last-child{
                        padding-bottom: 0;
                    }
                    a{
                        color: inherit;
                        text-decoration: none;
                        &:hover{
                            text-decoration: underline;
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .holder_contactos{
                    .titulo{
                        font-size: 22px;
                    }
                    .descricao{
                        font-size: 18px;
                    }
                    .holder_info_contactos{
                        .single_contacto{
                            font-size: 22px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_contactos{
                    .titulo{
                        font-size: 20px;
                    }
                    .descricao{
                        font-size: 16px;
                    }
                    .holder_info_contactos{
                        .single_contacto{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{

                .holder_contactos{
                    .coluna.first{
                        padding-right: 25px;
                        width: 50%;
                    }
                    .coluna.last{
                        padding-left: 25px;
                        width: 50%;
                    }

                    .holder_info_contactos{
                        .single_contacto{
                            padding: 20px 0;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {
            &{

                .holder_contactos{
                    .coluna.first{
                        padding-right: 0;
                        width: 100%;
                    }
                    .coluna.last{
                        padding-left: 0;
                        width: 100%;
                        border-left: none;
                        padding-top: 0;
                    }

                    .holder_info_contactos{
                        .single_contacto{
                            max-width: 100%;
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    .formulario{
        margin-top: -30px;
        background: linear-gradient(0deg, rgba(244, 234, 227, 0.3), rgba(244, 234, 227, 0.3)), #FFFFFF;
        border-radius: 30px 30px 0px 0px;
        h3{
            font-weight: 700;
            font-size: 36px;
            line-height: 150%;
            color: #002E61;
            margin-bottom: 30px;
        }
        .row{
            margin-left: -15px !important;
            margin-right: -15px !important;
            align-items: center;
        }
        .single_input{
            margin-bottom: 45px;
            &,
            .input{
                font-weight: 400;
                font-size: 20px;
                line-height: 104%;
                color: #002E61;
            }
            .input{
                width: 100%;
                padding: 20px 0;
                border: none;
                background: transparent;
                border-bottom: 1px solid #C6AA4A;
                outline: none;
                &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                    color: #002E61;
                }
                &::-moz-placeholder { /* Firefox 19+ */
                    color: #002E61;
                }
                &:-ms-input-placeholder { /* IE 10+ */
                    color: #002E61;
                }
                &:-moz-placeholder { /* Firefox 18- */
                    color: #002E61;
                }
            }
            textarea{
                height: 150px;
                resize: none;
            }
            button{
                padding: 14px 25px;
                background: #C6AA4A;
                border-radius: 30px 30px 30px 0px;
                border: none;
                font-weight: 600;
                font-size: 12px;
                line-height: 14px;
                color: #F4EAE3;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                min-width: 130px;
                &:hover{
                    background: #002651;
                    color: #C6AA4A;
                }
            }
            .opcoes{
                gap: 60px;
                flex-wrap: wrap;
                align-items: center;
                label{
                    display: block;
                    position: relative;
                    padding-left: 45px;
                    cursor: default;
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    margin: 0;
                    input {
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        height: 0;
                        width: 0;
                    }
                    .checkbox {
                        position: absolute;
                        top: -4px;
                        left: 0;
                        height: 30px;
                        width: 30px;
                        background-color: transparent;
                        border: 1px solid #C6AA4A;
                        cursor: pointer;
                        border-radius: 50%;
                    }
                    .checkbox:after {
                        content: "";
                        position: absolute;
                        display: none;
                    }
                    input:checked ~ .checkbox:after {
                        display: block;
                    }
                    .checkbox:after {
                        left: 9px;
                        top: 3px;
                        width: 10px;
                        height: 17px;
                        border: solid #002E61;
                        border-width: 0 3px 3px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }
            }
        }
        .rgpd,
        .rgpd a,
        .rgpd label{
            font-weight: 400;
            font-size: 18px;
            line-height: 120%;
            color: #002E61;
            mix-blend-mode: normal;
            text-decoration: none;
        }
        .rgpd a:hover{
            text-decoration: underline;
        }
        .rgpd {
            padding-top: 10px;
            label{
                display: block;
                position: relative;
                padding-left: 45px;
                cursor: default;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                margin: 0;
                input {
                    position: absolute;
                    opacity: 0;
                    cursor: pointer;
                    height: 0;
                    width: 0;
                }
                .checkbox {
                    position: absolute;
                    top: -4px;
                    left: 0;
                    height: 30px;
                    width: 30px;
                    background-color: rgb(198 170 74 / 10%);
                    border: none;
                    cursor: pointer;
                }
                .checkbox:after {
                    content: "";
                    position: absolute;
                    display: none;
                }
                input:checked ~ .checkbox:after {
                    display: block;
                }
                .checkbox:after {
                    left: 10px;
                    top: 3px;
                    width: 10px;
                    height: 17px;
                    border: solid #002E61;
                    border-width: 0 3px 3px 0;
                    -webkit-transform: rotate(45deg);
                    -ms-transform: rotate(45deg);
                    transform: rotate(45deg);
                }
            }
        }

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

                .rgpd,
                .rgpd a,
                .rgpd label{
                    font-size: 16px;
                }
                .single_input{
                    &,
                    .input{
                        font-size: 18px;
                    }
                }
            }
        }

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

                .rgpd,
                .rgpd a,
                .rgpd label{
                    font-size: 14px;
                }
                .rgpd{
                    label {
                        .checkbox {
                            top: -6px;
                        }
                    }
                }
                .single_input{
                    &,
                    .input{
                        font-size: 16px;
                    }
                    .opcoes {
                        label {
                            .checkbox {
                                top: -6px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{

                .single_input{
                    margin-bottom: 30px;
                }
            }
        }
        @media screen and (max-width: 567px){
            &{

                .single_input{
                    margin-bottom: 20px;
                    .opcoes{
                        margin-top: 20px;
                    }
                }
            }
        }
    }
}
.formulario_cta{
    .titulo_big{
        color: #FFFFFF;
        max-width: 900px;
        margin: 0 auto;
        font-size: 32px;
        line-height: 150%;
    }
    .holder_formulario{
        flex-wrap: wrap;
        margin-top: 55px;
        .alertas, .rgpd{
            width: 100%;
        }
        .rgpd{
            margin: 20px 0;
        }
        .rgpd,
        .rgpd a{
            text-align: center;
            font-weight: 500;
            font-size: 16px;
            line-height: 140%;
            color: #FFFFFF;
        }
        .single_input{
            width: Calc(100% / 4);
            padding: 7px;
            .input{
                padding: 16px 9px 16px 24px;
                width: 100%;
                border: 1px solid #F4EAE3;
                border-radius: 100px;
                font-style: normal;
                font-weight: 500;
                font-size: 16px;
                line-height: 150%;
                color: #FFFFFF;
                background: transparent;
                outline: none;
                &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                    color: #fff;
                }
                &::-moz-placeholder { /* Firefox 19+ */
                    color: #fff;
                }
                &:-ms-input-placeholder { /* IE 10+ */
                    color: #fff;
                }
                &:-moz-placeholder { /* Firefox 18- */
                    color: #fff;
                }
            }
            button{
                width: 100%;
                display: flex;
                height: 100%;
                justify-content: space-between;
                align-content: center;
                align-items: center;
                text-align: left;
            }
        }
    }

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

            .titulo_big{
                font-size: 28px;
            }
            .holder_formulario{
                .rgpd,
                .rgpd a{
                    font-size: 14px;
                }
                .single_input{
                    .input{
                        font-size: 16px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .titulo_big{
                font-size: 25px;
            }
            .holder_formulario{
                margin-top: 10px;
                .single_input{
                    width: 50%;
                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        &{
            .holder_formulario{
                .single_input{
                    width: 100%;
                    padding: 5px 0;

                    button{

                        padding: 16px 24px;
                    }
                }
            }
        }
    }
}


/*==================================================================================================*/
/*OBRAS*/
/*==================================================================================================*/


#obras{
    .projetos_slider {
        .owl-theme {
            .owl-controls {
                .owl-nav {
                    visibility: hidden;
                    opacity: 0;
                    animation: fadeIn 1s 2s forwards;
                }
            }
        }
        .holder_projetos {
            .single_projeto {
                .conteudo {
                    padding-top: 200px;
                }
            }
            @media screen and (max-width: 1400px) {
                &{
                    .single_projeto {
                        padding-bottom: 53%;
                    }
                }
            }

            @media screen and (max-width: 992px) {
                &{
                    .single_projeto {
                        .conteudo {
                            padding-top: 100px;
                        }
                    }
                }
            }

            @media screen and (max-width: 767px){
                &{
                    .single_projeto {
                        padding-bottom: 110%;
                    }
                }
            }
        }
    }
    .intro{
        .titulo_small{
            color: #002E61;
        }
        .descricao{
            color: #C6AA4A;
        }
        .titulo{
            color: rgba(34, 40, 43, 0.5);
        }
    }
    .zona_projetos{
        .container_categorias{
            overflow-x: auto;       /* ativa scroll horizontal */
            white-space: nowrap;    /* impede quebra de linha */
            padding: 10px 0;
            /*-ms-overflow-style: none;
            scrollbar-width: none;   */
            &::-webkit-scrollbar {
                height: 2px;
                background-color: #aaaaaa; /* or add it to the track */
            }
            .categorias {
                display: inline-flex;   /* mantém em linha */
                gap: 30px;
                list-style: none;
                margin: 0;
                .single_categoria {
                    position: relative;
                    cursor: pointer;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 140%;
                    color: #000000;
                    transition: color 0.3s ease;
                    &:hover,
                    &.active {
                        &::after {
                            content: "";
                            position: absolute;
                            bottom: -10px;
                            left: 0;
                            width: 100%;
                            height: 2px;
                            background-color: #111;
                            border-radius: 2px;
                        }
                    }
                }
            }
        }

        .projetos-show-more{
            margin-top: 40px;
            #load-projetos-blog{
                padding: 14px 25px;
                background: #C6AA4A;
                border-radius: 30px 30px 30px 0px;
                border: none;
                font-weight: 600;
                font-size: 12px;
                line-height: 14px;
                color: #F4EAE3;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                min-width: 130px;
                &.display_none{
                    display: none !important;
                }
            }
            .projetos-loading-blog{
                display: none;
                font-size: 14px;
            }

        }
        .listagem_projetos{
            margin-top: 40px;
            .lista_projetos{
                flex-wrap: wrap;
                margin: 0 -15px;
                .coluna{
                    width: 50%;
                    display: inline-flex;
                    flex-wrap: wrap;
                    &.first{
                        .single_projeto:nth-child(3){
                            width: 100%;
                        }
                        .single_projeto:nth-child(1),
                        .single_projeto:nth-child(2){
                            .holder_single_projeto{
                                .imagem{
                                    padding-bottom: 70%;
                                }
                            }
                        }
                        .single_projeto:nth-child(3){
                            .holder_single_projeto{
                                .imagem{
                                    padding-bottom: 50%;
                                }
                            }
                        }
                    }
                    &.last{
                        .single_projeto{
                            .holder_single_projeto{
                                .imagem{
                                    padding-bottom: 220%;
                                }
                            }
                        }
                    }
                }
                .single_projeto{
                    width: 50%;
                    padding: 15px;
                    a{
                        color: inherit;
                        text-decoration: none;
                    }
                    .holder_single_projeto{
                        padding: 15px;
                        border: 1px solid #DEDEDE;
                        border-radius: 15px;
                        .cabecalho{
                            display: flex;
                            justify-content: space-between;
                            h3{
                                font-weight: 500;
                                font-size: 18px;
                                line-height: 110%;
                                color: #000000;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                                &:hover{
                                    color: #C6AA4A;
                                }
                            }
                            .categoria{
                                font-weight: 600;
                                font-size: 12px;
                                line-height: 110%;
                                color: #808080;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                                &:hover{
                                    color: #000;
                                }
                            }
                            .seta{
                                display: inline-flex;
                                width: 28px;
                                height: 28px;
                                border: 1px solid #808080;
                                border-radius: 50%;
                                justify-content: center;
                                align-items: center;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                                &:hover{
                                    background: #C6AA4A;
                                    border-color: #C6AA4A;
                                    svg path{
                                        fill: #002651;
                                    }
                                }
                            }
                        }
                        .imagem{
                            border-radius: 10px 0px;
                            overflow: hidden;
                            position: relative;
                            padding-bottom: 100%;
                            margin-top: 20px;
                            img{
                                width: 100%;
                                height: 100%;
                                position: absolute;
                                top: 0;
                                left: 0;
                                object-fit: cover;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                            }
                            &:hover img{
                                transform: scale(1.2);
                                -moz-transform: scale(1.2);
                                -webkit-transform: scale(1.2);
                            }
                        }
                    }
                }
            }

            @media screen and (max-width: 1600px) {
                .lista_projetos{
                    .coluna{
                        &.last{
                            .single_projeto{
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 224%;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            @media screen and (max-width: 1500px) {
                .lista_projetos{
                    .coluna{
                        &.last{
                            .single_projeto{
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 229%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 1400px) {
                .lista_projetos{
                    .coluna{
                        &.last{
                            .single_projeto{
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 236%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 1300px) {
                .lista_projetos{
                    .coluna{
                        &.last{
                            .single_projeto{
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 243%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 1200px) {
                .lista_projetos{
                    .single_projeto{
                        padding: 5px;
                    }
                    .coluna{
                        width: 100%;
                        &.last{
                            .single_projeto{
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 100%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 992px) {
                .lista_projetos{
                    margin: 0;
                    .single_projeto{
                        width: 100%;
                        .holder_single_projeto{
                            .imagem{
                                padding-bottom: 50%;
                            }
                        }
                    }
                    .coluna{
                        &.first{
                            .single_projeto:nth-child(1),
                            .single_projeto:nth-child(2){
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 50%;
                                    }
                                }
                            }
                            .single_projeto:nth-child(3){
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 50%;
                                    }
                                }
                            }
                        }
                        &.last{
                            .single_projeto{
                                .holder_single_projeto{
                                    .imagem{
                                        padding-bottom: 50%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


/*==================================================================================================*/
/*PROJETO*/
/*==================================================================================================*/
.detalhes{

    .intro{
        .voltar_atras{
            margin-bottom: 30px;
        }
        a{
            text-decoration: none;
            color: inherit;
        }
        .titulo{
            font-weight: 700;
            font-size: 16px;
            line-height: 16px;
            letter-spacing: 0.55px;
            text-transform: uppercase;
            color: #000000;
        }
        .categorias{
            font-weight: 400;
            font-size: 11px;
            line-height: 16px;
            letter-spacing: 0.275px;
            text-transform: uppercase;
            color: #000000;
            padding-left: 15px;
            position: relative;
            margin-top: 15px;
            &:before{
                content: '';
                width: 7px;
                height: 7px;
                background: #DCC99D;
                border-radius: 50%;
                position: absolute;
                top: 3px;
                left: 0;
            }
            @media screen and (max-width: 992px){
                &{
                    margin-bottom: 30px;
                }
            }
        }
        .descricao{
            font-weight: 400;
            font-size: 18px;
            line-height: 140%;
            color: rgba(0, 0, 0, 0.6);
            @media screen and (max-width: 1400px) {
                &{
                    font-size: 16px;
                }
            }
            @media screen and (max-width: 1200px) {
                &{
                    font-size: 14px;
                }
            }
        }
        .documento{
            margin-top: 20px;
            display: flex;
            gap: 15px;
            font-weight: 400;
            font-size: 20px;
            line-height: 110%;
            color: #C6AA4A;
            span{
                font-size: 12px;
                line-height: 110%;
                color: #808080;
                text-transform: uppercase;
            }
            .icon{
                display: flex;
                justify-content: center;
                align-items: center;
                width: 28px;
                height: 28px;
                border: 1px solid #808080;
                border-radius: 50%;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
            }

            &:hover{
                .icon{
                    border-color: #C6AA4A;
                    background: #C6AA4A;
                    color: #002651;
                    svg path{
                        fill: #002651;
                    }
                }
            }

            @media screen and (max-width: 1400px){
                &{
                    font-size: 18px;
                }
            }
            @media screen and (max-width: 1200px){
                &{
                    font-size: 16px;
                }
            }
            @media screen and (max-width: 992px){
                &{
                    justify-content: center;
                }
            }
        }
    }
}
#projeto{
    .projetos_slider {
        /*border-radius: 0;*/
    }
    .projetos_slider {
        .holder_projetos {
            .single_projeto {
                .conteudo {
                    padding-bottom: 200px;
                    .holder_conteudo{
                        align-items: flex-end;
                        align-content: flex-end;
                        .localizacao{
                            margin-top: 60px;
                        }
                    }
                    @media screen and (max-width: 992px) {
                        &{

                            padding-bottom: 40px;
                        }
                    }
                    @media screen and (max-width: 567px) {
                        &{
                            padding-bottom: 20px;
                        }
                    }
                }
                @media screen and (max-width: 767px){
                    &{
                        padding-bottom: 65%;
                    }
                }
                @media screen and (max-width: 567px){
                    &{
                        padding-bottom: 75%;
                    }
                }
                @media screen and (max-width: 450px){
                    &{
                        padding-bottom: 85%;
                        .conteudo {
                            .holder_conteudo {
                                .localizacao {
                                    margin-top: 25px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .galeria_imagens2{
        height: 100vh;
        background: red;
    }
    .galeria_imagens{
        position: relative;
        width: 100% !important;
        height: 100vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        overflow: hidden;
        padding: 0;
        .holder_galeria_imagens{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            --size-factor: 1.25;
            --item-height: 20vh;
            position: relative;
            .single_imagem{
                aspect-ratio: 2 / 3;
                padding: 0 15px;
                .imagem{
                    position: relative;
                    overflow: hidden;
                    margin: 0 auto;
                    height: 100%;
                    img{
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                        top: 0;
                        left: 0;
                        position: absolute;
                    }
                }
                &:nth-child(1),
                &:nth-child(5),
                &:nth-child(2),
                &:nth-child(4){
                    position: absolute;
                    top: 50%;
                    transform: translate(-50%,-50%);
                    -moz-transform: translate(-50%,-50%);
                    -webkit-transform: translate(-50%,-50%);
                }
                &:nth-child(1),
                &:nth-child(2){
                    transform: translate(-50%,-50%);
                    -moz-transform: translate(-50%,-50%);
                    -webkit-transform: translate(-50%,-50%);
                }
                &:nth-child(4),
                &:nth-child(5){
                    transform: translate(50%,-50%);
                    -moz-transform: translate(50%,-50%);
                    -webkit-transform: translate(50%,-50%);
                }
                &:nth-child(1){
                    left: 10%;
                }
                &:nth-child(2){
                    left: 26%;
                }
                &:nth-child(4){
                    right: 26%;
                }
                &:nth-child(5){
                    right: 10%;
                }
                /*&:nth-child(1),
                &:nth-child(5){
                    .imagem{
                        padding-bottom: 184%;
                    }
                }
                &:nth-child(2),
                &:nth-child(4){
                    .imagem{
                        padding-bottom: 165%;
                    }
                }*/
                &:nth-child(3){
                    position: relative;
                    z-index: 5;
                    /*.imagem{
                        height: Calc(100vh);
                    }*/
                }
                &.size-m{
                    height: Calc(80vh / 3);
                    width: Calc(30vw / 3);
                }
                &.size-l{
                    height: Calc(80vh / 2);
                    width: Calc(30vw / 2);
                }
                &.size-xl{
                    height: 80vh;
                    width: 30vw;
                }
            }
        }


        @media screen and (max-width: 992px){
            &{
                height: auto;
                height: auto !important;
                .holder_galeria_imagens{
                    .single_imagem{
                        aspect-ratio: unset;
                        .imagem{
                            padding-bottom: 100%;
                            overflow: hidden;
                            border-radius: 10px 0;
                        }
                        &.size-m{
                            display: none;
                        }
                        &.size-l{
                            display: none;
                        }
                        &.size-xl {
                            height: auto;
                            width: 100%;
                        }
                    }
                }
            }

        }
    }
    .caracterisicas{
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 0.275px;
        color: #808080;
        h3{
            font-weight: 700;
            font-size: 24px;
            line-height: 16px;
            letter-spacing: 0.55px;
            text-transform: uppercase;
            color: #C6AA4A;
            margin-bottom: 30px;
        }
        table{
            border: none;
            tr{
                display: flex;
                flex-wrap: wrap;
                margin: 0 -15px;
                td{
                    width: Calc(100% / 3);
                    padding: 30px 15px;
                    h3{
                        font-weight: 600;
                        font-size: 18px;
                        line-height: 16px;
                        letter-spacing: 0.55px;
                        text-transform: uppercase;
                        color: #000000;
                        margin-bottom: 10px;
                    }
                    img{
                        width: 35px;
                        height: 38px;
                        object-fit: contain;
                        margin-bottom: 35px;
                    }
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                h3{
                    font-size: 22px;
                }
            }
        }

        @media screen and (max-width: 1200px){
            &{
                font-size: 14px;
                h3{
                    font-size: 20px;
                }
                table{
                    tr{
                        td{
                            h3{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 767px){
            &{
                table{
                    tr{
                        margin: 0;
                        td{
                            width: 100%;
                            padding: 15px 0;
                        }
                    }
                }
            }
        }
    }
    .zona_video{
        .iframe_holder{
            border-radius: 10px 0px;
            overflow: hidden;
        }
    }
    #obras.projetos_relacionados {
        h3{
            font-weight: 700;
            font-size: 24px;
            line-height: 115%;
            letter-spacing: -1px;
            color: #C6AA4A;
        }
        .zona_projetos {
            .listagem_projetos {
                margin-top: 10px;
            }
        }
    }
}

.galeria_imagens_slider{
    .holder_galeria_imagens_slider{
        .owl-stage{
            display: flex;
            align-items: center;
            .owl-item{
                display: flex;
                padding-bottom: 10%;
                height: 0;
                overflow: hidden;
            }
        }
        .single_imagem{
            padding: 15px;
            width: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -webkit-transform: translate(-50%,-50%);
            height: 100%;
            .imagem{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                -moz-transform: translate(-50%,-50%);
                -webkit-transform: translate(-50%,-50%);
                width: Calc(100% - 30px);
                height: 0;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                img{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
        .owl-item:not(.center){
            .single_imagem{
                .imagem {
                    padding-bottom: 90%;
                }
            }
        }
        .owl-item.center {
            .single_imagem{
                .imagem {
                    padding-bottom: 150%;
                }
            }
        }
        .owl-item.esquerda-do-centro {
            .single_imagem{
                .imagem {
                    padding-bottom: 120%;
                }
            }
        }
        .owl-item.direita-do-centro {
            .single_imagem{
                .imagem {
                    padding-bottom: 120%;
                }
            }
        }

        @media screen and (max-width: 1200px){
            &{
                .owl-item:not(.center){
                    .single_imagem{
                        .imagem {
                            padding-bottom: 60%;
                        }
                    }
                }
                .owl-item.esquerda-do-centro {
                    .single_imagem{
                        .imagem {
                            padding-bottom: 90%;
                        }
                    }
                }
                .owl-item.direita-do-centro {
                    .single_imagem{
                        .imagem {
                            padding-bottom: 90%;
                        }
                    }
                }
            }
        }

    }

    .carousel-container {
        display: flex;
        align-items: center;
        position: relative;
        width: Calc(100% - 30px);
        margin: 0 auto;
    }

    .carousel-btn {
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 2rem;
        width: 50px;
        height: 50px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 10;
    }

    .carousel {
        width: 100%;
        padding-bottom: 460px;
        overflow: visible;
        margin: 0 10px;
    }

    .carousel-track {
        width: 100%;
        height: 100%;
        position: absolute;
        transform-style: preserve-3d;
    }

    .item {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        padding-bottom: 300px;
        transition: transform 0.3s, filter 0.3s;
    }

    .item img {
        width: 100%;
        border-radius: 15px;
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}
/*==================================================================================================*/
/*BLOG*/
/*==================================================================================================*/
#blog{
    .projetos_slider {
        .holder_projetos {
            .single_projeto {
                .conteudo {
                    height: auto;
                    .holder_conteudo{
                        max-width: 475px;
                    }
                }
            }
        }
    }

    .titulo_big{
        color: #C6AA4A;
        margin-bottom: 40px;
    }
    .fakebanner {
        height: 89px;
    }

    .pagina_noticias{
        .listagem_noticias {
            .paginacao{
                .single_pag{
                    display: inline-block;
                    cursor: pointer;
                    padding: 10px;
                    &.active{
                        font-weight: 600;
                    }
                }
            }
            .lista_noticias{
                display: flex;
                flex-wrap: wrap;
                margin: 0 -10px;
                .destaque{
                    width: Calc(100% / 4);
                    padding: 10px;
                    .holder_destaque{
                        height: 100%;
                        padding: 35px;
                        border-radius: 10px 0px;
                        overflow: hidden;
                        position: relative;
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                        &:before{
                            content: '';
                            position: absolute;
                            top: 0;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            background: rgba(10, 10, 10, 0.2);
                            z-index: 1;
                        }
                        .info{
                            font-weight: 600;
                            font-size: 32px;
                            line-height: 120%;
                            color: #FFFFFF;
                            position: relative;
                            z-index: 2;
                            .botao{
                                button{
                                    background: transparent;
                                    padding: 0 0 3px 0;
                                    border-bottom: 1px solid #fff;
                                    border-radius: 0;
                                    &:hover{
                                        background: transparent;
                                        color: #C6AA4A;
                                        border-bottom: 1px solid #C6AA4A;
                                    }
                                }
                            }
                        }
                    }
                }
                .single_noticia{
                    width: Calc(100% / 4);
                    padding: 10px;
                    a{
                        color: inherit;
                        text-decoration: none;
                    }
                    .holder_single_noticia{
                        border: 1px solid #DEDEDE;
                        border-radius: 10px;
                        padding: 10px;
                        height: 100%;
                        .imagem{
                            border-radius: 16px 0px;
                            position: relative;
                            padding-bottom: 70%;
                            overflow: hidden;
                            img{
                                position: absolute;
                                top: 0;
                                left: 0;
                                height: 100%;
                                width: 100%;
                                object-fit: cover;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                            }
                            &:hover{
                                img{
                                    transform: scale(1.2);
                                    -moz-transform: scale(1.2);
                                    -webkit-transform: scale(1.2);
                                }
                            }
                        }
                        .info{
                            padding: 10px;
                            .categorias{
                                font-weight: 400;
                                font-size: 12px;
                                line-height: 16px;
                                letter-spacing: 0.275px;
                                text-transform: uppercase;
                                color: #808080;
                                padding-left: 15px;
                                position: relative;
                                margin-bottom: 5px;
                                &:before{
                                    content: '';
                                    width: 7px;
                                    height: 7px;
                                    background: #DCC99D;
                                    border-radius: 50%;
                                    position: absolute;
                                    top: 3px;
                                    left: 0;
                                }
                            }
                            h3{
                                font-weight: 600;
                                font-size: 20px;
                                line-height: 120%;
                                color: #000000;
                                margin-bottom: 15px;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                                &:hover{
                                    color: #C6AA4A;
                                }
                            }
                            .descricao{
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 24px;
                                color: #808080;
                            }

                            .icon{
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 28px;
                                height: 28px;
                                border: 1px solid #808080;
                                border-radius: 50%;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;

                                &:hover{
                                    border-color: #C6AA4A;
                                    background: #C6AA4A;
                                    color: #002651;
                                    svg path{
                                        fill: #002651;
                                    }
                                }
                            }

                        }
                    }
                }

                @media screen and (max-width: 1400px){
                    &{
                        .single_noticia{
                            .holder_single_noticia{
                                .info{
                                    h3{
                                        font-size: 18px;
                                    }
                                    .descricao{
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                        .destaque {
                            & .holder_destaque {
                                padding: 25px;
                                .info {
                                    font-size: 28px;
                                }
                                .btn1 {
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
                @media screen and (max-width: 1200px){
                    &{
                        .single_noticia{
                            padding: 15px;
                            .holder_single_noticia{
                                .info{
                                    h3{
                                        font-size: 16px;
                                    }
                                }
                            }
                        }
                        .destaque {
                            & .holder_destaque {
                                .info {
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                }
                @media screen and (max-width: 992px){
                    &{
                        .single_noticia{
                            width: 50%;
                        }
                        .destaque {
                            width: 50%;
                        }
                    }
                }
                @media screen and (max-width: 767px){
                    &{
                        .single_noticia{
                            padding: 5px;
                        }
                        .destaque {
                            padding: 5px;
                        }
                    }
                }
                @media screen and (max-width: 567px){
                    &{
                        margin: 0;
                        .single_noticia{
                            width: 100%;
                            padding: 10px 0;
                        }
                        .destaque {
                            padding: 10px 0;
                            width: 100%;
                            .holder_destaque{
                                padding-bottom: 40%;
                            }
                        }
                    }
                }
            }
        }
        .noticias-show-more{
            margin-top: 40px;
            #load-noticias-blog{
                padding: 14px 25px;
                background: #C6AA4A;
                border-radius: 30px 30px 30px 0px;
                border: none;
                font-weight: 600;
                font-size: 12px;
                line-height: 14px;
                color: #F4EAE3;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                min-width: 130px;
                &.display_none{
                    display: none !important;
                }
            }
            .noticias-loading-blog{
                display: none;
                font-size: 14px;
            }

        }
    }
    .pagina_noticias.destaques_noticias{
        h2{
            font-weight: 700;
            font-size: 24px;
            line-height: 115%;
            letter-spacing: -1px;
            color: #C6AA4A;
            margin-bottom: 40px;
        }
        .lista_noticias{
            margin: 0;
        }
        .first_destaque{
            width: 65%;
            padding-right: 10px;
            a{
                color: inherit;
                text-decoration: none;
            }
            .holder_destaque{
                height: 100%;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                border-radius: 16px 0px 16px 16px;
                position: relative;
                overflow: hidden;
                display: flex;
                align-items: flex-end;
                &:before{
                    position: absolute;
                    left: 0;
                    top: 0;
                    bottom: 0;
                    right: 0;
                    background: rgba(0, 0, 0, 0.42);
                    z-index: 1;
                }
                img{
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 0;
                    object-fit: cover;
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                }
                &:hover{
                    img{
                        transform: scale(1.2);
                        -moz-transform: scale(1.2);
                        -webkit-transform: scale(1.2);
                    }
                }
                .conteudo{
                    position: relative;
                    z-index: 2;
                    font-weight: 700;
                    font-size: 48px;
                    line-height: 115%;
                    letter-spacing: -0.03em;
                    color: #FFFFFF;
                    padding: 60% 50px 70px 50px;
                    width: 100%;
                }

            }
        }
        .mais_destaques{
            width: 35%;
            border: 1px solid #DEDEDE;
            border-radius: 10px;
            padding: 30px;
            .single_noticia{
                width: 100%;
                padding: 0;
                &:last-child{
                    margin-top: 30px;
                    .holder_single_noticia {
                        border-top: 1px solid #DEDEDE;
                        padding-top: 30px;
                        .imagem{
                            display: none;
                        }
                    }
                }
                .holder_single_noticia {
                    border: none;
                    border-radius: 0;
                    padding: 0;
                    .categorias{
                        display: none;
                    }
                    .imagem {
                        padding-bottom: 54%;
                    }
                }
            }
        }

        @media screen and (max-width: 1400px){
            h2{
                font-size: 22px;
            }
            .first_destaque{
                .holder_destaque{
                    .conteudo{
                        font-size: 40px;
                    }

                }
            }
        }
        @media screen and (max-width: 1200px){
            h2{
                font-size: 20px;
            }
            .first_destaque{
                .holder_destaque{
                    .conteudo{
                        font-size: 35px;
                    }

                }
            }
        }
        @media screen and (max-width: 992px){
            h2{
                margin-bottom: 20px;
            }
            .first_destaque{
                width: 100%;
                padding: 0;
                .holder_destaque{
                    .conteudo{
                        font-size: 30px;
                        padding: 40% 30px 40px 30px;
                    }

                }
            }
            .mais_destaques{
                width: 100%;
                margin-top: 40px;
            }
        }
        @media screen and (max-width: 767px){
            .mais_destaques{
                padding: 15px;
            }
            .first_destaque{
                .holder_destaque{
                    .conteudo{
                        font-size: 25px;
                        padding: 40% 20px 20px 20px;
                    }

                }
            }
        }
    }
}

/*==================================================================================================*/
/*NNOTICIA*/
/*==================================================================================================*/
#noticia{
    &.detalhes {
        .intro {
            .descricao {
                text-align: left;
            }
        }
    }
    .projetos_slider {
        .holder_projetos {
            .single_projeto {
                .conteudo {
                    height: auto;
                    .holder_conteudo{
                        max-width: 475px;
                    }
                }
            }
        }
    }
    .galeria{
        padding-top: 0;
        .holder_galeria{
            flex-wrap: wrap;
            .single_imagem{
                padding: 5px;
                &.imagem_0{
                    width: 100%;
                    .imagem{
                        padding-bottom: 44%;
                    }
                }
                &.imagem_1{
                    width: 60%;
                    .imagem{
                        padding-bottom: 75%;
                    }
                }
                &.imagem_2{
                    width: 40%;
                    .imagem{
                        height: 100%;
                    }
                }
                .imagem{
                    position: relative;
                    overflow: hidden;
                    border-radius: 16px 0px;
                    img{
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        left: 0;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*FAQS*/
/*==================================================================================================*/


/*==================================================================================================*/
/*NEWSLETTER*/
/*==================================================================================================*/
.newsletter{
    .holder_newsletter{
        max-width: 510px;
        margin: 0 auto;
        h2{
            font-weight: 700;
            font-size: 40px;
            line-height: 110%;
            text-align: center;
            color: #FFFFFF;
        }
        #form_newsletter{
            margin-top: 30px;
            .rgpd{
                margin-top: 20px;
            }
            .rgpd,
            .rgpd a{
                color: #fff;
                text-decoration: none;
                font-weight: 500;
                font-size: 16px;
                line-height: 140%;
            }
            .rgpd {
                padding-top: 10px;
                label{
                    display: block;
                    position: relative;
                    padding-left: 25px;
                    cursor: default;
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    margin: 0;
                    input {
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        height: 0;
                        width: 0;
                    }
                    .checkbox {
                        position: absolute;
                        top: 2px;
                        left: 0;
                        height: 16px;
                        width: 16px;
                        border: 1px solid #fff;
                        cursor: pointer;
                        border-radius: 50%;
                    }
                    .checkbox:after {
                        content: "";
                        position: absolute;
                        display: none;
                    }
                    input:checked ~ .checkbox:after {
                        display: block;
                    }
                    .checkbox:after {
                        left: 4px;
                        top: 1px;
                        width: 6px;
                        height: 10px;
                        border: solid #fff;
                        border-width: 0 2px 2px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }
            }
            a:hover{
                text-decoration: underline;
            }
            .input-group{
                position: relative;
                padding: 10px;
                background: #B29227;
                border-radius: 88.2845px;
                font-weight: 500;
                font-size: 18px;
                line-height: 110%;
                color: #FFFFFF;
                input{
                    width: 100%;
                    background: transparent;
                    color: #fff;
                    border: none;
                    padding: 10px 20px;
                    &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                        color: #fff;
                    }
                    &::-moz-placeholder { /* Firefox 19+ */
                        color: #fff;
                    }
                    &:-ms-input-placeholder { /* IE 10+ */
                        color: #fff;
                    }
                    &:-moz-placeholder { /* Firefox 18- */
                        color: #fff;
                    }
                }
                button{
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    height: Calc(100% - 20px);
                    background: #F4EAE3;
                    border: none;
                    border-radius: 20px;
                    padding: 10px 20px;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 110%;
                    color: #C6AA4A;
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                }
            }
        }

        @media screen and (max-width: 1400px){
            h2{
                font-size: 30px;
            }
            #form_newsletter{
                .rgpd,
                .rgpd a{
                    font-size: 14px;
                }
                .input-group{
                    font-size: 16px;
                    button{
                        font-size: 14px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            h2{
                font-size: 20px;
            }
        }
    }
}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/
.last_block{
    padding-bottom: 80px;
    z-index: 0;
    position: relative;
}
footer{
    border-radius: 30px 30px 0px 0px;
    margin-top: -80px;
    position: relative;
    z-index: 1;

    .footer{
        position: relative;
        width: 100%;
        font-size: 16px;
        color: #FFFFFF;
        letter-spacing: 0;
        line-height: 24px;
        font-weight: 300;


        .holder_footer{
            flex-wrap: wrap;
            .first{
                width: 25%;
            }
            .menus{
                width: Calc(75% - 100px);
                .holder_menus{
                    flex-wrap: wrap;
                }
                .single_menu{
                    padding: 0 15px;
                    width: Calc(100% / 3);
                    ul{
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        li{
                            padding: 7px 0;
                        }
                    }
                }
            }
            .apoios{
                width: 100px;
                text-align: center;
                .single_apoio{
                    margin-bottom: 15px;
                    img{
                        max-width: 100%;
                    }
                }
            }
        }

        h4{
            font-weight: 700;
            font-size: 18px;
            line-height: 150%;
            text-transform: uppercase;
            color: #C6AA4A;
            margin-bottom: 10px;
            margin-top: 0;
        }
        .logo{
            img{
                width: 160px;
                max-width: 100%;
            }
        }

        &,
        p,
        label,
        a,
        .descricao{
            font-weight: 400;
            font-size: 18px;
            line-height: 150%;
            color: #FFFFFF;
            text-decoration: none;
        }
        .descricao{
            margin-top: 15px;
        }
        a:hover{
            text-decoration: underline;
        }
        .redes_sociais{
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 15px;
            .single_rede{
                border-radius: 50%;
                width: 48px;
                height: 48px;
                background: rgba(0, 0, 0, 0.04);
                border: 1px solid rgba(198, 170, 74, 0.2);
                display: inline-flex;
                justify-content: center;
                align-items: center;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                &:hover{
                    color: #002651;
                    background: #F9BC23;
                }
                a{
                    text-decoration: none;
                }
            }
        }

        @media screen and (max-width: 1400px){
            &, p, label, a, .descricao,h4 {
                font-size: 16px;
            }
        }
        @media screen and (max-width: 1200px){
            &, p, label, a, .descricao,h4 {
                font-size: 14px;
            }
            .holder_footer{
                .first{
                    width: 20%;
                }
                .menus{
                    width: Calc(80% - 80px);
                }
                .apoios{
                    width: 80px;
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                padding: 40px 0 20px;
            }
            .redes_sociais{
                justify-content: center;
            }
            .holder_footer{
                .first{
                    width: 100%;
                    text-align: center;
                }
                .menus{
                    width: 100%;
                    margin: 20px 0;
                    text-align: center;
                    .single_menu{
                        width: 100%;
                        padding: 10px 0;
                        ul {
                            li {
                                padding: 5px 0;
                            }
                        }
                        .descricao {
                            margin-top: 5px;
                        }
                        h4{
                            margin-bottom: 0;
                        }
                    }
                }
                .apoios{
                    width: 100%;
                }
            }
        }
    }

    .lower_footer {
        padding: 0 0 40px 0;
        text-align: center;
        position: relative;

        .holder_lower_footer{
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        &,
        p,
        a{
            font-weight: 500;
            font-size: 16px;
            line-height: 19px;
            color: #F4EAE3;
            text-decoration: none;
        }
        a:hover{
            text-decoration: underline;
        }
        hr {
            margin-top: 0;
            margin-bottom: 40px;
            opacity: 1;
            border: 0;
            border-top: 1px solid #C6AA4A;
        }
        .coluna{
            &.last{
                display: flex;
                gap: 30px;
                flex-wrap: wrap;
            }
        }
        @media screen and (max-width: 992px){
            &{
                .coluna{
                    &.first,
                    &.last{
                        justify-content: center;
                        width: 100%;
                        gap: 15px;
                    }
                }
            }
        }
    }
}

.alert{
    font-size: 13px;
}
.politica_privacidade {
    a{
        color: inherit;
    }
    .titulo_big{
        color: #C6AA4A;
    }
    table{
        max-width: 100% !important;
        border: none !important;
        tr {
            td{
                width: Calc(100% / 3) !important;
                padding: 5px 10px;
                border: none !important;
            }
            th{
                background: #c6c5c5;
                padding: 5px 10px;
            }
        }
    }
}

.fancybox-skin {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.mfp-wrap {
    background-color: rgba(0, 0, 0, .1);
}

.mfp-arrow-right:before {
    border: none !important;
    border-right: none;
    background-image: url(/site/imagens/seta_next_white.svg);
    width: 17px;
    height: 27px;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}
.mfp-arrow-right:after {
    border-left: none !important;
}
.mfp-arrow-left:before {
    border: none !important;
    border-right: none;
    background-image: url(/site/imagens/seta_prev_white.svg);
    width: 17px;
    height: 27px;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}
.mfp-arrow-left:after {
    border-right: none !important;
}