:root{
    --font-family: "Roboto", sans-serif;
    --font-family2: "Exo", sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    position: relative;
    font-family: var(--font-family);
}

body{
    background-color: #fff;
}

body.open{
    overflow: hidden;
}


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

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

#popup_holder{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;

    &:after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .close{
        cursor: pointer;
        position: absolute;
        color: #fff;
        top: 10px;
        right: 10px;
        z-index: 3;
    }

    a{
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .img{
        position: relative;
        height: 400px;
        z-index: 2;
        width: 800px;
        display: inline-block;
        max-width: 100%;

        img{
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            position: absolute;
            object-fit: cover;
        }
    }


    &.close{
        display: none !important;
    }
}

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

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


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

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


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


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

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

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

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

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

.btn1{
    padding: 12px 33px;
    background: #F44E19;
    border-radius: 3px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    border: 2px solid #F44E19;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    &:hover{
        color: #F44E19;
        background: transparent;
    }
    &.v2{
        color: #F44E19;
        background: #fff;
        border: 2px solid #fff;
        &:hover{
            color: #fff;
            background: #F44E19;
            border: 2px solid #F44E19;
        }
    }
    @media screen and (max-width: 1400px){
        &{
            font-size: 14px;
        }
    }
    @media screen and (max-width: 992px){
        &{
            padding: 8px 15px;
        }
    }
}

.btnseta{
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #F44E19;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    span{
        width: 23px;
        height: 23px;
        background-color: #F44E19 !important;
        border-radius: 50%;
        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{
        span{
           transform: rotate(45deg);
           -moz-transform: rotate(45deg);
           -webkit-transform: rotate(45deg);
        }
    }

    @media screen and (max-width: 1400px){
        &{
            font-size: 16px;
        }
    }
    @media screen and (max-width: 1200px){
        &{
            font-size: 14px;
        }
    }
}
/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    width: 100%;
    z-index: 6;
    .holder_menu{
        display: flex;
        flex-wrap: wrap;
        background: #767676;
        border-radius: 0px 0px 3px 3px;
        overflow: hidden;
        .col_direita{
            position: relative;
            z-index: 1;
            width: Calc(100% - 267px);
            display: inline-flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            .faixa_contactos{
                width: 100%;
            }
            .menu{
                width: 100%;
            }
        }
    }
    .faixa_contactos{
        padding: 15px;
        background: #F44E19;
        position: relative;
        .conteudo{
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            gap: 15px;
            flex-wrap: wrap;
            .single_contacto{
                display: inline-flex;
                gap: 10px;
                &,
                a{
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 120%;
                    color: #FFFFFF;
                    text-decoration: none;
                }
                a:hover{
                    text-decoration: underline;
                }
            }
        }
        &:after{
            content: '';
            position: absolute;
            background: #F44E19;
            width: Calc(100% + 267px);
            right: 0;
            top: 0;
            height: 100%;
            z-index: 0;
        }

    }
    .faixa_contactos.mobile{
        display: none;
    }

    .navbar-header {
        float: unset;
        width: 267px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        border-radius: 0px 0px 70px 3px;
        position: relative;
        z-index: 2;
        img{
            max-width: 100%;
            width: 197px;
        }
    }
    .menu-toggler{
        position: absolute;
        background: transparent;
        border: 0;
        width: 35px;
        top: 10px;
        right: 2%;
        cursor: pointer;

        display: none;


        #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
            width: 25px;
            height: 20px;
            position: relative;
            margin: 0 auto;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;
            span {
                display: block;
                position: absolute;
                height: 3px;
                background: #FFFFFF;
                width: 100%;
                border-radius: 5px;
                opacity: 1;
                left: 0;
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-transition: .25s ease-in-out;
                -moz-transition: .25s ease-in-out;
                -o-transition: .25s ease-in-out;
                transition: .25s ease-in-out;
                &:nth-child(1) {
                    top: 0px;
                }
                &:nth-child(2) {
                    top: 8px;
                }
                &:nth-child(3) {
                    top: 16px;
                }
            }
            &.open{
                span{
                    &:nth-child(1) {
                        top: 8px;
                        -webkit-transform: rotate(140deg);
                        -moz-transform: rotate(140deg);
                        -o-transform: rotate(140deg);
                        transform: rotate(140deg);
                    }
                    &:nth-child(2) {
                        opacity: 0;
                        left: -60px;
                    }
                    &:nth-child(3) {
                        top: 8px;
                        -webkit-transform: rotate(-140deg);
                        -moz-transform: rotate(-140deg);
                        -o-transform: rotate(-140deg);
                        transform: rotate(-140deg);
                    }

                }
            }
        }
    }
    .menu{
        display: inline-block;
        margin: 0;
        float: unset;
        color: #fff;
        width: Calc(100% - 304px);
        text-align: right;
        vertical-align: middle;
        padding: 15px;
        .menu-nav{
            padding: 0;
            list-style: none;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            .dropdown{
                display: inline-block;
                margin: 0 15px;
                cursor: pointer;
                color: #fff;
                &.btn{
                    margin-right: 0;
                    padding: 0;
                    position: relative;
                    &:before{
                        content: '';
                        position: absolute;
                        width: 64.66px;
                        height: 187.93px;
                        background: rgba(255, 255, 255, 0.04);
                        transform: rotate(24.95deg) translate(-50%, -50%);
                        -moz-transform: rotate(24.95deg) translate(-50%, -50%);
                        -webkit-transform: rotate(24.95deg) translate(-50%, -50%);
                        left: -20%;
                        top: 50%;
                    }
                }
                a{
                    font-family: var(--font-family2);
                    font-style: normal;
                    font-weight: 500;
                    font-size: 17px;
                    line-height: 120%;
                    color: #FFFFFF;
                    text-decoration: none !important;
                }
                a:hover,
                &.active:hover > a {
                    color: #F44E19;
                    text-decoration: none !important;
                }
                &.active > a {
                    font-weight: 700;
                }
                .dropdown-menu {
                    background-color: #fff;
                    cursor: default;
                    text-align: left;
                    color: #000;
                    margin-top: 20px;
                    top: 5px;
                    a {
                        color: #000;
                    }
                    a:hover,
                    li.active > a,
                    li.active:hover > a {
                        color: #F44E19;
                        text-decoration: none !important;
                        background-color: transparent;
                    }

                }
            }
        }
    }

    @media screen and (min-width: 993px) {
        &{
            .menu {
                display: inline-block !important;
            }
        }

    }

    @media screen and (max-width: 1400px) {
        & {
            .faixa_contactos {
                .conteudo {
                    .single_contacto {
                        &, a {
                            font-size: 14px;
                        }
                    }
                }
            }
            .menu {
                .menu-nav {
                    .dropdown {
                        a {
                            font-size: 15px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1300px) {
        & {
            .holder_menu {
                .col_direita {
                    width: Calc(100% - 200px);
                }
            }
            .navbar-header {
                width: 200px;
                img{
                    width: 110px;
                }
            }
            .faixa_contactos {
                .conteudo {
                    .single_contacto {
                        &, a {
                            font-size: 12px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            background: #F44E19;
            .custom_container{
                max-width: 100%;
                padding: 0;
            }
            .faixa_contactos.desktop{
                display: none;
            }
            .faixa_contactos.mobile{
                display: block;
            }
            .faixa_contactos{
                margin-top: 40px;
                .conteudo {
                    gap: 50px;
                    .single_contacto {
                        width: 100%;
                        &, a{
                            font-size: 16px;
                        }
                    }
                }
            }
            .holder_menu {
                display: block;
                background: transparent;
                min-height: 100px;
                .col_direita {
                    width: 100%;
                }
            }
            .navbar-header {
                float: unset;
                display: inline-flex;
                width: 192px;
                height: 100px;
                position: absolute;
                top: 0;
                left: 0;
                img{
                    width: 140px;
                }
            }
            &.open{
                .navbar-header{

                }
            }
            .menu-toggler{
                display: inline-block;
                position: relative;
                top: 38px;
            }
            .menu {
                width: 100%;
                padding: 100px 0 30px 0;
                display: none;
                text-align: left;
                height: 98vh;
                overflow: auto;
                .menu-nav {
                    display: block;
                    padding: 0 15px;
                    .dropdown {
                        display: block;
                        width: 100%;
                        margin: 30px 0;
                        a{
                            font-size: 32px;
                            font-weight: 500;
                        }
                    }
                }
            }
        }
    }

}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/

.fakebanner{
    height: 150px;
}
.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    .holder_slider{
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        img{
            width: 100%;
        }
        .single_banner{
            &,
            .holder_content,
            .holder_content_img{
                width: 100%;
                height: 750px;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: top center;
                position: relative;
                overflow: hidden;
            }
            .holder_content_img{
                .iframe_holder{
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
                }
            }
            .retangulo{
                position: absolute;
                background-image: url(/site/imagens/mask_banner.svg);
                top: 0;
                left: 0;
                width: 100%;
                height: 102%;
                background-position: center;
                background-size: cover;
            }
        }
        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;
        }
        .owl-dots {
            position: absolute;
            bottom: 20px;
            text-align: center;
            margin: -25px auto 0;
            left: 0;
            right: 0;
            .owl-dot {
                width: 15px;
                height: 15px;
                display: inline-block;
                margin: 0 5px;
                border-radius: 100%;
                border: 2px solid #fff;
                background: #fff;
                &.active {
                    background: #F9BC23;
                    border: 2px solid #F9BC23;
                }
            }
        }
        .holder_conteudo{
            max-width: 630px;
        }
        .conteudo{
            position: absolute;
            top: 60%;
            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;
            .nome{
                font-family: var(--font-family2);
                font-size: 55px;
                color: #FFFFFF;
                letter-spacing: 0;
                line-height: 150%;
                font-weight: 600;
                margin: 0;
            }
            .descricao{
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 150%;
                color: rgb(255 255 255 / 80%);
                margin-top: 15px;
            }
            .botao{
                margin-top: 30px;
            }
        }
    }

    @media screen and (max-width: 1400px) {
        &{
            .holder_slider{
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: 650px;
                    }
                }
                .holder_conteudo{
                    max-width: 530px;
                }
                .conteudo{
                    .nome{
                        font-size: 45px;
                    }
                    .descricao{
                        font-size: 16px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .holder_slider{
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: 550px;
                    }
                }
                .conteudo{
                    .nome{
                        font-size: 40px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            margin-top: 100px;
            .holder_conteudo{
                max-width: 330px;
            }
            .holder_slider{
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: 350px;
                    }
                }
                .conteudo{
                    top: 50%;
                    .nome{
                        font-size: 35px;
                    }
                    .descricao{
                        font-size: 14px;
                    }

                    .botao{
                        margin-top: 15px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        &{
            .holder_slider{
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: 300px;
                    }
                }
                .conteudo{
                    .nome{
                        font-size: 29px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        &{
            .holder_slider{
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: 250px;
                    }
                }
                .conteudo{
                    .nome{
                        font-size: 25px;
                    }
                }
            }
        }
    }
}
.banner.banner_interno{
    text-align: center;
    .holder_slider {
        .holder_conteudo {
            max-width: 630px;
            margin: 0 auto;
            text-align: center;
        }
    }
    .breadcrumbs{
        background: #F44E19;
        border-radius: 3px;
        gap: 20px;
        flex-wrap: wrap;
        display: inline-flex;
        padding: 13px 30px;
        margin-top: 20px;
        .single_breadcrumb{
            &.active{
                text-decoration: underline;
            }
            &, a{
                display: inline-flex;
                position: relative;
                font-style: normal;
                font-size: 16px;
                line-height: 150%;
                color: #FFFFFF;
                align-items: center;
                gap: 5px;
            }
            a{
                font-weight: 600;
                text-decoration: none;
                &:hover{
                    text-decoration: underline;
                }
            }
            &:not(.first):before{
                content: '';
                width: 6px;
                height: 6px;
                background: #fff;
                display: block;
                position: absolute;
                top: 9px;
                left: -12px;
                border-radius: 50%;
            }
        }
        @media screen and (max-width: 992px){
            &{
                padding: 13px 20px;
                .single_breadcrumb {
                    &, a {
                        font-size: 14px;
                    }
                    &:not(.first):before{
                        top: 7px;
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                padding: 10px 20px;
                .single_breadcrumb {
                    &, a {
                        font-size: 12px;
                    }
                    &:not(.first):before{
                        top: 6px;
                    }
                }
            }
        }
    }
}


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

.bloco{
    position: relative;
    width: 100%;
    padding: 85px 0;
    &.no-margin{
        padding: 0;
    }
    @media screen and (max-width: 992px) {
        &{
            padding: 40px 0;
        }
    }
}

/*==================================================================================================*/
/*TITULOS*/
/*==================================================================================================*/
.cabecalho{
    margin-bottom: 20px;
}
.titulo_linha{
    position: relative;
    font-family: var(--font-family2);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #F44E19;
    display: flex;
    align-items: center;
    gap: 10px;
    &:before{
        content: '';
        position: relative;
        width: 40px;
        height: 2px;
        background: #F44E19;

    }
    @media screen and (max-width: 767px) {
        &{
            font-size: 12px;
        }
    }
}
.subtitulo{
    font-family: var(--font-family2);
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 150%;
    color: #15181B;

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

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

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

    @media screen and (max-width: 567px) {
        &{
            font-size: 25px;
        }
    }
}
.titulo_items{
    font-family: var(--font-family2);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #15181B;

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

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

/*==================================================================================================*/
/*CARROUSEL*/
/*==================================================================================================*/
.owl-nav{
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;

    button{
        width: 23px;
        height: 23px;
        background-color: #F44E19 !important;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}
/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/
.quem_somos{
    .holder_quem_somos{
        flex-wrap: wrap;
        .esquerda{
            width: 40%;
            position: relative;
            padding-bottom: 35%;
            height: 0;
            img{
                width: 130%;
                position: absolute;
                right: 0;
                top: 0;
            }
            &:after{
                content: '';
                position: absolute;
                width: 55%;
                height: 82%;
                background: rgba(255, 54, 54, 0.1);
                filter: blur(50px);
                right: 0;
                bottom: 0;
                z-index: -1;
            }
            &:before{
                content: '';
                position: absolute;
                width: 55%;
                height: 82%;
                background: rgba(255, 54, 54, 0.1);
                filter: blur(200px);
                left: 0;
                top: 0;
                z-index: -1;
            }
        }
        .direita{
            width: 60%;
            padding-left: 160px;
        }
        .descricao{
            font-style: normal;
            font-weight: 400;
            font-size: 20px;
            line-height: 150%;
            color: #6A6A6A;
            ul{
                list-style: none;
                padding: 0;
                margin-top: 60px;
                padding-left: 30px;
                li{
                    font-family: var(--font-family2);
                    font-style: normal;
                    font-weight: 600;
                    font-size: 19px;
                    line-height: 150%;
                    color: #15181B;
                    padding: 0 0 20px 30px;
                    position: relative;
                    &:before{
                        content: '';
                        display: block;
                        background-image: url(/site/imagens/check.webp);
                        background-size: cover;
                        width: 19px;
                        height: 19px;
                        left: 0;
                        top: 4px;
                        position: absolute;
                        background-position: center;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            .holder_quem_somos{
                .descricao{
                    font-size: 18px;
                    ul{
                        margin-top: 40px;
                        li{
                            font-size: 17px;
                            &:before{
                                width: 17px;
                                height: 17px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .holder_quem_somos{
                .direita{
                    padding-left: 80px;
                }
                .descricao{
                    font-size: 17px;
                    ul{
                        margin-top: 40px;
                        li{
                            font-size: 16px;
                            &:before{
                                width: 16px;
                                height: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .holder_quem_somos{
                .esquerda{
                    width: 50%;
                    margin: 0 auto;
                    padding-bottom: 50%;
                    img{
                        width: 150%;
                    }
                }
                .direita{
                    padding-left: 0;
                    width: 100%;
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        &{
            .holder_quem_somos{
                .esquerda{
                    width: 100%;
                    padding-bottom: 100%;
                    img{
                        width: 150%;
                    }
                }
                .descricao{
                    font-size: 16px;
                    ul{
                        li{
                            font-size: 15px;
                            &:before{
                                width: 15px;
                                height: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.experiencia{
    background: #F8F8F8;
    position: relative;
    .forma{
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }
    .custom_container{
        position: relative;
        z-index: 1;
    }
    .holder_slider{
        margin-top: 70px;
    }
    .single_experiencia{
        padding: 0 15px;
        .holder_single_experiencia{
            background: #FFFFFF;
            border: 1px solid rgba(21, 24, 27, 0.1);
            border-radius: 10px;
            padding: 30px;

            .imagem{
                margin-bottom: 30px;
                img{
                    width: 80px;
                    height: 80px;
                    object-fit: contain;
                }
            }
            .descricao{
                font-style: normal;
                font-weight: 400;
                font-size: 20px;
                line-height: 150%;
                color: #6A6A6A;
                margin-top: 25px;
            }
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            .single_experiencia{
                .holder_single_experiencia{
                    .descricao{
                        font-size: 18px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .single_experiencia{
                .holder_single_experiencia{
                    .descricao{
                        font-size: 16px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        &{
            .holder_slider{
                margin-top: 40px;
            }
            .single_experiencia{
                padding: 0;
                .holder_single_experiencia{
                    .descricao{
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

.catalogos{
    .lista_catalogos{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        .nome_lateral{
            position: absolute;
            font-style: normal;
            font-weight: 700;
            font-size: 8vw;
            color: #15181B;
            opacity: 0.03;
            left: -16vw;
            top: -5vw;
            transform: rotate(-90deg) translate(-50%, -50%);
        }
        .single_categoria{
            width: Calc(100% / 3);
            padding: 15px;
        }
        @media screen and (max-width: 1500px){
            &{
                .single_categoria{
                    padding: 10px;
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .single_categoria{
                    width: Calc(100% / 2);
                    padding: 15px;
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                .single_categoria{
                    width: 100%;
                    padding: 15px 0;
                }
            }
        }
    }
    .single_categoria{
        padding: 15px;
        a{
            text-decoration: none;
        }
        .holder_single_categoria{
            background: linear-gradient(-89.91deg, #C4C4C4 46.5%, #EEF0F4 99.92%);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            padding: 30px;
            height: 100%;
            transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            &:hover{
                background: linear-gradient(-89.91deg, #C4C4C4 46.5%, #C4C4C4 99.92%);
                .btnseta{
                    span{
                        transform: rotate(45deg);
                        -moz-transform: rotate(45deg);
                        -webkit-transform: rotate(45deg);
                    }
                }
            }
            .forma{
                position: absolute;
                top: 0;
                right: 0;
                width: 30%;
                z-index: 1;
                svg{
                    width: 100%;
                    height: auto;
                }
            }
            .info{
                position: relative;
                z-index: 1;
                .imagem{
                    margin-bottom: 30px;
                    img{
                        height: 74px;
                        max-width: 100%;
                        object-fit: contain;
                        width: auto;
                    }
                }
                .nome{
                    font-family: var(--font-family2);
                    font-style: normal;
                    font-weight: 700;
                    font-size: 24px;
                    line-height: 120%;
                    color: #F44E19;
                }
                .botao{
                    text-align: right;
                    margin-top: 80px;
                }
            }
        }

        @media screen and (max-width: 1500px){
            &{
                .holder_single_categoria{
                    padding: 25px;
                    .info{
                        .nome{
                            font-size: 23px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .holder_single_categoria{
                    .info{
                        .imagem{
                            img{
                                height: 64px;
                            }
                        }
                        .nome{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1300px){
            &{
                .holder_single_categoria{
                    .info{
                        .nome{
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }
}

#homepage{
    .catalogos {
        .owl-stage{
            display: flex;
            .owl-item{
                .single_categoria{
                    height: 100%;
                    .holder_single_categoria{
                        height: 100%;
                    }
                }
            }
        }
        .cabecalho{
            max-width: 700px;
        }
        .descricao{
            font-style: normal;
            font-weight: 400;
            font-size: 23px;
            line-height: 120%;
            color: #6A6A6A;
            a{
                font-family: 'Roboto';
                font-style: normal;
                font-weight: 600;
                font-size: 18px;
                line-height: 120%;
                color: #F44E19;
                text-decoration: none;
                position: relative;
                &:after{
                    content: "\f061";
                    position: absolute;
                    top: 2px;
                    right: -25px;
                    font-family: "Font Awesome 6 Free";
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                }
                &:hover{

                    &:after{
                        right: -35px;
                    }
                }
            }
        }
        .zona_catalogos {
            margin-top: 60px;
        }
        @media screen and (max-width: 1400px){
            &{
                .descricao{
                    font-size: 21px;
                    a{
                        font-size: 16px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .descricao{
                    font-size: 19px;
                    a{
                        font-size: 14px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .descricao{
                    font-size: 17px;
                    a{
                        font-size: 12px;
                    }
                }
                .zona_catalogos {
                    .custom_container{
                        padding: 0;
                        max-width: 100%;
                    }
                }
                .single_categoria {
                    padding: 10px;
                }
            }
        }
    }
}
.zona_form_contactos{
    .contactos{
        background-size: cover;
        background-position: center;
        padding-bottom: 315px;
        .holder_contactos{
            flex-wrap: wrap;
            .single_contacto{
                width: Calc(100% / 4);
                padding: 15px;
                .holder_single_contacto{
                    background: #FFFFFF;
                    border: 1px solid rgba(21, 24, 27, 0.1);
                    border-radius: 3px;
                    padding: 30px;
                    align-items: center;
                    height: 100%;
                    .icon{
                        width: 50px;
                        img{
                            max-width: 100%;
                            object-fit: contain;
                        }
                    }
                    .info{
                        width: Calc(100% - 50px);
                        padding-left: 25px;
                        .nome{
                            font-family: var(--font-family2);
                            font-style: normal;
                            font-weight: 700;
                            font-size: 24px;
                            line-height: 120%;
                            color: #15181B;
                        }
                        .descricao{
                            margin-top: 10px;
                            &, a{
                                font-style: normal;
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 120%;
                                color: #6A6A6A;
                                text-decoration: none;
                            }
                            a:hover{
                                text-decoration: underline;
                            }
                        }
                    }
                }
            }

        }

        @media screen and (max-width: 1400px){
            &{
                .holder_contactos{
                    .single_contacto{
                        .holder_single_contacto{
                            padding: 15px;
                            .icon{
                                width: 40px;

                            }
                            .info{
                                width: Calc(100% - 40px);
                                padding-left: 20px;
                                .nome{
                                    font-size: 22px;
                                }
                            }
                        }
                    }

                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_contactos{
                    .single_contacto{
                        .holder_single_contacto{
                            .icon{
                                width: 30px;
                            }
                            .info{
                                width: Calc(100% - 30px);
                                padding-left: 15px;
                                .nome{
                                    font-size: 20px;
                                }
                                .descricao{
                                    &, a{
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }

                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                padding-bottom: 140px;
                .holder_contactos{
                    .single_contacto{
                        .holder_single_contacto{
                            flex-wrap: wrap;
                            text-align: center;
                            .icon{
                                width: 100%;
                                img{
                                    width: 30px;
                                }
                            }
                            .info{
                                width: 100%;
                                padding-left: 0;
                                margin-top: 20px;
                                .nome{
                                    font-size: 18px;
                                }
                            }
                        }
                    }

                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                .holder_contactos{
                    .single_contacto{
                        width: 50%;
                        .holder_single_contacto{
                            .info{
                                .nome{
                                    font-size: 16px;
                                }
                            }
                        }
                    }

                }
            }
        }
        @media screen and (max-width: 400px){
            &{
                .holder_contactos{
                    .single_contacto{
                        width: 100%;
                        padding: 10px 0;
                        .holder_single_contacto{
                            .info{
                                .nome{
                                    font-size: 16px;
                                }
                            }
                        }
                    }

                }
            }
        }
    }
    .formulario{
        margin-top: -250px;
        position: relative;
        z-index: 3;
        @media screen and (max-width: 992px){
            &{
                margin-top: -100px;
            }
        }
        .holder_zona_form{
            background: #FFFFFF;
            box-shadow: 0px 20px 40px rgba(21, 24, 27, 0.1);
            border-radius: 10px;
            overflow: hidden;
            flex-wrap: wrap;
            .esquerda{
                width: 45%;
                background: #FFEFEA;
                padding: 100px 50px;
                position: relative;
                .forma{
                    position: absolute;
                    z-index: 1;
                    top: 80px;
                    left: 50%;
                    transform: translateX(-50%);
                    -moz-transform: translateX(-50%);
                    -webkit-transform: translateX(-50%);
                    width: 80%;
                    max-height: 80%;
                    svg{
                        width: 100%;
                        height: auto;
                    }
                }
                .cabecalho{
                    position: relative;
                    z-index: 2;
                }
                .descricao{
                    margin-top: 65px;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 17px;
                    line-height: 150%;
                    color: #6A6A6A;
                    position: relative;
                    z-index: 2;
                }


                @media screen and (max-width: 1500px){
                    &{
                        padding: 80px 30px;
                    }
                }

                @media screen and (max-width: 992px){
                    &{
                        width: 100%;
                        padding: 30px;
                        .descricao{
                            margin-top: 40px;
                            font-size: 14px;
                        }
                    }
                }
            }
            .direita{
                width: 55%;
                padding: 40px;

                @media screen and (max-width: 992px){
                    &{
                        width: 100%;
                    }
                }
            }
            .subsubtitulo{
                text-align: center;
                font-family: var(--font-family2);
                font-style: normal;
                font-weight: 700;
                font-size: 30px;
                line-height: 120%;
                color: #15181B;
                margin-bottom: 40px;

                @media screen and (max-width: 1200px){
                    &{
                        font-size: 28px;
                    }
                }
                @media screen and (max-width: 992px){
                    &{
                        font-size: 25px;
                    }
                }
            }
            .form{
                .single_input{
                    position: relative;
                    margin-bottom: 30px;
                    .input{
                        background: #FFFFFF;
                        border: 1px solid rgba(21, 24, 27, 0.1);
                        border-radius: 3px;
                        width: 100%;
                        padding: 20px;
                        &:focus-visible {
                            outline: #F44E19 auto 1px;
                        }
                    }

                    &.icon{
                        .input{
                            padding-right: 50px;
                        }
                    }
                    &.icon{
                        svg{
                            position: absolute;
                            top: 50%;
                            right: 20px;
                            transform: translateY(-50%);
                            -moz-transform: translateY(-50%);
                            -webkit-transform: translateY(-50%);
                        }
                    }
                    &.textarea{
                        .input{
                            height: 120px;
                        }
                    }
                    &.textarea.icon{
                        svg{
                            top: 25px;
                            transform: none;
                            -moz-transform: none;
                            -webkit-transform: none;
                        }
                    }
                    &.rgpd{
                        label{
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            width: 100%;
                            gap: 10px;
                        }
                        &, label, a{
                            font-style: normal;
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 16px;
                            color: #6A6A6A;
                        }
                        a{
                            color: #F44E19;
                            text-decoration: none;
                            &:hover{
                                text-decoration: underline;
                            }
                        }
                        input{
                            position: absolute;
                            opacity: 0;
                            cursor: pointer;
                            height: 0;
                            width: 0;
                        }
                        .texto{
                            max-width: Calc(100% - 27px);
                        }
                        /* Create a custom checkbox */
                        .checkbox {
                            display: inline-flex;
                            height: 17px;
                            width: 17px;
                            background: #FFFFFF;
                            border: 1px solid #CECECE;
                            cursor: pointer;
                            position: relative;
                        }

                        /* Create the checkmark/indicator (hidden when not checked) */
                        .checkbox:after {
                            content: "";
                            position: absolute;
                            display: none;
                        }

                        /* Show the checkmark when checked */
                        input:checked ~ .checkbox:after {
                            display: block;
                        }

                        input:checked ~ .checkbox {
                            background-color: #F44E19;
                        }

                        /* Style the checkmark/indicator */
                        .checkbox:after {
                            left: 5px;
                            top: 1px;
                            width: 5px;
                            height: 10px;
                            border: solid #fff;
                            border-width: 0 2px 2px 0;
                            -webkit-transform: rotate(45deg);
                            -ms-transform: rotate(45deg);
                            transform: rotate(45deg);
                        }

                    }
                }
                .btn1{
                    width: 100%;
                    text-align: center;
                }
            }

        }
    }
}
.alert{
    font-size: 14px;
}
.missao{
    .holder_missao{
        flex-wrap: wrap;
        margin-top: 70px;
        position: relative;
        .linha{
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            top: -25px;
            &.linha_desktop{
                width: 100%;
                svg{
                    width: 100%;
                    height: auto;
                }
            }
            &.linha_mobile{
                display: none;
            }
            @media screen and (max-width: 992px){
                &{
                    &.linha_desktop{
                        display: none;
                    }
                    &.linha_mobile{
                        display: block;
                    }
                }
            }
        }
        .single_missao{
            width: Calc(100% / 3);
            padding: 0 15px;
            .holder_single_missao{
                text-align: center;
                max-width: 300px;
                margin: 0 auto;
                .imagem{
                    position: relative;
                    background: #FFFFFF;
                    border-bottom: 5px solid #F44E19;
                    box-shadow: 0px 0px 60px rgba(21, 24, 27, 0.1);
                    border-radius: 94px;
                    width: 150px;
                    height: 150px;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 30px;
                    img{
                        max-width: 65px;
                        max-height: 65px;
                        object-fit: contain;
                    }
                    .numero{
                        position: absolute;
                        width: 36px;
                        height: 36px;
                        background: #15181B;
                        border-radius: 50%;
                        font-family: var(--font-family2);
                        font-style: normal;
                        font-weight: 800;
                        font-size: 16px;
                        line-height: 26px;
                        display: flex;
                        align-items: center;
                        text-align: center;
                        justify-content: center;
                        color: #FFFFFF;
                        top: 0;
                        right: 0;
                    }
                }
                .nome{
                    font-family: var(--font-family2);
                    font-style: normal;
                    font-weight: 700;
                    font-size: 22px;
                    line-height: 120%;
                    color: #15181B;
                }
                .descricao{
                    font-weight: 400;
                    font-size: 22px;
                    line-height: 120%;
                    color: #6A6A6A;
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                .single_missao{
                    .holder_single_missao{
                        .imagem{
                            width: 140px;
                            height: 140px;
                            img{
                                max-width: 55px;
                                max-height: 55px;
                            }
                        }
                        .nome{
                            font-size: 20px;
                        }
                        .descricao{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .single_missao{
                    .holder_single_missao{
                        .imagem{
                            width: 130px;
                            height: 130px;
                            margin-bottom: 30px;
                            img{
                                max-width: 45px;
                                max-height: 45px;
                            }
                        }
                        .nome{
                            font-size: 18px;
                        }
                        .descricao{
                            font-size: 18px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                max-width: 400px;
                margin: 80px auto 0 auto;
                .single_missao{
                    width: 100%;
                    padding: 150px 0;
                    .holder_single_missao{
                        max-width: 100%;
                        .imagem{
                            width: 120px;
                            height: 120px;
                            margin-bottom: 30px;
                            img{
                                max-width: 45px;
                                max-height: 45px;
                            }
                        }
                        .nome{
                            font-size: 16px;
                        }
                        .descricao{
                            font-size: 16px;
                        }
                        .info{
                            max-width: 200px;
                        }
                    }
                    &:nth-child(3){
                        padding-top: 0;
                    }
                    &:last-child{
                        padding-bottom: 0;
                    }
                    &:nth-child(odd){
                        .holder_single_missao {
                            .nome,.descricao{
                                text-align: left;
                            }
                        }
                    }
                    &:nth-child(even){
                        .holder_single_missao {
                            .nome,.descricao{
                                text-align: right;
                            }
                            .info{
                                margin-left: auto;
                            }
                        }
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/
#contactos{
    .contactos{
        .holder_contactos{
            max-width: 1045px;
            margin: 0 auto;
            flex-wrap: wrap;
            .single_contacto{
                width: Calc(100% / 3);
                padding: 15px;
                .holder_single_contacto{
                    text-align: center;
                    border: 1px solid rgba(21, 24, 27, 0.1);
                    border-radius: 10px;
                    padding: 50px;
                    height: 100%;
                    .icon{
                        margin-bottom: 40px;
                        img{
                            height: 80px;
                            max-width: 100%;
                            object-fit: contain;
                        }
                    }
                    .nome{
                        font-family: var(--font-family2);
                        font-style: normal;
                        font-weight: 600;
                        font-size: 24px;
                        line-height: 120%;
                        color: #15181B;
                    }
                    .descricao{
                        margin-top: 25px;
                        &, a{
                            font-style: normal;
                            font-weight: 400;
                            font-size: 17px;
                            line-height: 120%;
                            color: #6A6A6A;
                            text-decoration: none;
                        }
                        a:hover{
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px){
            &{
                .holder_contactos{
                    .single_contacto{
                        .holder_single_contacto{
                            .icon{
                                img{
                                    height: 60px;
                                }
                            }
                            .nome{
                                font-size: 22px;
                            }
                            .descricao{
                                margin-top: 25px;
                                &, a{
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_contactos{
                    .single_contacto{
                        .holder_single_contacto{
                            padding: 30px;
                            .icon{
                                margin-bottom: 20px;
                            }
                            .nome{
                                font-size: 20px;
                            }
                            .descricao{
                                margin-top: 15px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_contactos{
                    .single_contacto{
                        padding: 5px;
                        .holder_single_contacto{
                            padding: 15px;
                            .icon{
                                margin-bottom: 20px;
                            }
                            .nome{
                                font-size: 18px;
                            }
                            .descricao{
                                &, a{
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                .holder_contactos{
                    justify-content: center;
                    .single_contacto{
                        padding: 5px;
                        width: 50%;
                        .holder_single_contacto{
                            padding: 15px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                .holder_contactos{
                    justify-content: center;
                    .single_contacto{
                        padding: 5px 0;
                        width: 100%;
                    }
                }
            }
        }
    }
    .formulario{
        .holder_zona_form{
            flex-wrap: wrap;
            .coluna{
                width: 50%;
            }
            .esquerda{
                padding-right: 60px;
            }
            .direita{

            }
            .subtitulo{
                font-family: var(--font-family2);
                font-style: normal;
                font-weight: 700;
                font-size: 90px;
                line-height: 120%;
                color: #15181B;
            }
            .subsubtitulo{
                font-family: var(--font-family2);
                font-style: normal;
                font-weight: 400;
                font-size: 30px;
                line-height: 120%;
                color: #15181B;
                padding: 0 10px;
            }

            .single_input{
                position: relative;
                margin-bottom: 30px;
                .input{
                    background: #FFFFFF;
                    border: none;
                    color: #15181B;
                    border-bottom: 1px solid #15181B;
                    border-radius: 0;
                    width: 100%;
                    padding: 20px 0;
                    &:focus-visible {
                        outline: #F44E19 auto 1px;
                    }
                }
                &.textarea{
                    .input{
                        height: 120px;
                    }
                }
                &.textarea.icon{
                    svg{
                        top: 25px;
                        transform: none;
                        -moz-transform: none;
                        -webkit-transform: none;
                    }
                }
                &.rgpd{
                    label{
                        display: flex;
                        flex-wrap: wrap;
                        width: 100%;
                        gap: 10px;
                    }
                    &, label, a{
                        font-style: normal;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 16px;
                        color: #6A6A6A;
                    }
                    a{
                        color: #F44E19;
                        text-decoration: none;
                        &:hover{
                            text-decoration: underline;
                        }
                    }
                    input{
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        height: 0;
                        width: 0;
                    }
                    .texto{
                        max-width: Calc(100% - 27px);
                    }
                    /* Create a custom checkbox */
                    .checkbox {
                        display: inline-flex;
                        height: 17px;
                        width: 17px;
                        background: #FFFFFF;
                        border: 1px solid #CECECE;
                        cursor: pointer;
                        position: relative;
                    }

                    /* Create the checkmark/indicator (hidden when not checked) */
                    .checkbox:after {
                        content: "";
                        position: absolute;
                        display: none;
                    }

                    /* Show the checkmark when checked */
                    input:checked ~ .checkbox:after {
                        display: block;
                    }

                    input:checked ~ .checkbox {
                        background-color: #F44E19;
                    }

                    /* Style the checkmark/indicator */
                    .checkbox:after {
                        left: 5px;
                        top: 1px;
                        width: 5px;
                        height: 10px;
                        border: solid #fff;
                        border-width: 0 2px 2px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }

                }
            }
        }
        @media screen and (max-width: 1600px){
            &{
                .holder_zona_form{
                    .subtitulo{
                        font-size: 80px;
                    }
                    .subsubtitulo{
                        font-size: 28px;
                    }
                }
            }
        }
        @media screen and (max-width: 1500px){
            &{
                .holder_zona_form{
                    .subtitulo{
                        font-size: 70px;
                    }
                    .subsubtitulo{
                        font-size: 26px;
                    }
                }
            }
        }
        @media screen and (max-width: 1300px){
            &{
                .holder_zona_form{
                    .subtitulo{
                        font-size: 60px;
                    }
                    .subsubtitulo{
                        font-size: 24px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px){
            &{
                .holder_zona_form{
                    .subtitulo{
                        font-size: 50px;
                    }
                    .subsubtitulo{
                        font-size: 22px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_zona_form{
                    .coluna{
                        width: 100%;
                    }
                    .esquerda{
                        padding: 0 10px;
                        margin-bottom: 20px;
                    }
                    .subtitulo{
                        font-size: 40px;
                    }
                    .subsubtitulo{
                        font-size: 20px;
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                .holder_zona_form{
                    .subtitulo{
                        font-size: 30px;
                    }
                    .subsubtitulo{
                        font-size: 18px;
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*SERVICOS*/
/*==================================================================================================*/
#servicos{
    .servicos{
        .holder_servicos{
            margin-top: 60px;
            flex-wrap: wrap;
            .single_servico{
                width: Calc(100% / 3);
                padding: 15px;
                .holder_single_servico{
                    border: 1px solid rgba(21, 24, 27, 0.1);
                    border-radius: 10px;
                    position: relative;
                    overflow: hidden;
                    height: 100%;
                    padding: 30px;
                    &:before{
                        position: absolute;
                        content: '';
                        background: linear-gradient(-89.91deg, #C4C4C4 46.5%, #EEF0F4 99.92%);
                        overflow: hidden;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 1;
                        opacity: 0;
                        visibility: hidden;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    .forma{
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: 30%;
                        z-index: 1;
                        opacity: 0;
                        visibility: hidden;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        svg{
                            width: 100%;
                            height: auto;
                        }
                    }
                    .imagem,
                    .titulo_items,
                    .descricao{
                        position: relative;
                        z-index: 2;
                    }
                    .info{
                        position: relative;
                        z-index: 1;
                        .imagem{
                            margin-bottom: 30px;
                            img{
                                height: 74px;
                                max-width: 100%;
                                object-fit: contain;
                            }
                        }
                        .nome{
                            font-family: var(--font-family2);
                            font-style: normal;
                            font-weight: 700;
                            font-size: 24px;
                            line-height: 120%;
                            color: #15181B;
                            transition: all .3s ease-in-out;
                            -moz-transition: all .3s ease-in-out;
                            -webkit-transition: all .3s ease-in-out;
                        }
                        .descricao{
                            font-style: normal;
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 120%;
                            color: #6A6A6A;
                            margin-top: 15px;
                        }
                    }
                    &:hover{
                        &:before{
                            opacity: 1;
                            visibility: visible;
                        }
                        .forma{
                            opacity: 1;
                            visibility: visible;
                        }
                        .info {
                            .nome {
                                color: #F44E19;
                            }
                        }
                    }
                }
                @media screen and (max-width: 1500px){
                    &{
                        .holder_single_servico{
                            padding: 25px;
                            .info{
                                .nome{
                                    font-size: 23px;
                                }
                            }
                        }
                    }
                }
                @media screen and (max-width: 1400px){
                    &{
                        .holder_single_servico{
                            .info{
                                .imagem{
                                    img{
                                        height: 64px;
                                    }
                                }
                                .nome{
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                }
                @media screen and (max-width: 1300px){
                    &{
                        padding: 10px;
                        .holder_single_servico{
                            .info{
                                .nome{
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
                @media screen and (max-width: 992px){
                    &{
                        width: 50%;
                        .holder_single_servico{
                            .info{
                                .imagem{
                                    img{
                                        height: 54px;
                                    }
                                }
                                .nome{
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
                @media screen and (max-width: 567px){
                    &{
                        width: 100%;
                        padding: 10px 0;
                        .holder_single_servico{
                            .info{
                                .imagem{
                                    img{
                                        height: 44px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 567px){
                &{
                    margin-top: 20px;
                }
            }
        }

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

footer{
    background: #6A6A6A;
    .footer{
        position: relative;
        width: 100%;
        letter-spacing: 0;
        padding-bottom: 40px;

        a{
            text-decoration: none;
            &:hover{
                text-decoration: underline;
            }
        }
        .holder_footer{
            flex-wrap: wrap;
            .coluna{
                padding: 0 15px;
            }
            .info{
                width: 35%;
                .nome_site{
                    margin: 0;
                }
                .descricao{
                    max-width: 410px;
                    margin-top: 30px;
                }
            }
            .menus{
                width: 15%;
                .single_menu{
                    padding-bottom: 20px;
                }
            }
            .contactos{
                width: 25%;
                .conteudo{
                    .single_contacto{
                        width: 100%;
                        padding-bottom: 30px;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 150%;
                        color: #FFFFFF;
                        a{
                            color: rgb(255 255 255 / 70%);
                        }
                        .icon{
                            width: 15px;
                        }
                        .info{
                            width: Calc(100% - 15px);
                            padding-left: 15px;
                            margin-bottom: 0;
                        }
                    }
                }
            }
            .mapa{
                width: 25%;
                .iframe_holder{
                    padding-bottom: 70%;
                    border-radius: 10px;
                    overflow: hidden;
                }
            }
            .nome_site{
                font-family: var(--font-family2);
                font-style: normal;
                font-weight: 700;
                font-size: 48px;
                line-height: 81%;
                color: #FFFFFF;

                @media screen and (max-width: 1400px){
                    &{
                        font-size: 46px;
                    }
                }
                @media screen and (max-width: 1200px){
                    &{
                        font-size: 44px;
                    }
                }
                @media screen and (max-width: 992px){
                    &{
                        font-size: 38px;
                    }
                }
            }
            .titulo{
                font-family: var(--font-family2);
                font-style: normal;
                font-weight: 700;
                font-size: 20px;
                line-height: 120%;
                text-transform: capitalize;
                color: #FFFFFF;
                margin-bottom: 50px;

                @media screen and (max-width: 1400px){
                    &{
                        font-size: 18px;
                    }
                }
                @media screen and (max-width: 1200px){
                    &{
                        font-size: 16px;
                    }
                }
            }
            .descricao{
                &, a{
                    font-style: normal;
                    font-weight: 400;
                    font-size: 17px;
                    line-height: 150%;
                    color: rgb(255 255 255 / 70%);

                    @media screen and (max-width: 1400px){
                        &{
                            font-size: 15px;
                        }
                    }
                    @media screen and (max-width: 1200px){
                        &{
                            font-size: 13px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_footer {
                    .info {
                        width: 100%;
                        margin-bottom: 50px;
                        .descricao {
                            margin-top: 25px;
                        }
                    }
                    .mapa{
                        display: none;
                    }
                    .menus{
                        width: 40%;
                    }
                    .contactos{
                        width: 60%;
                        .conteudo {
                            .single_contacto {
                                padding-bottom: 20px;
                            }
                        }
                    }
                    .titulo{
                        margin-bottom: 20px;
                    }
                }
            }
        }
    }

    .lower_footer {
        padding: 0 0 30px 0;
        text-align: center;
        position: relative;
        hr {
            margin-top: 0;
            margin-bottom: 30px;
            border: 0;
            border-top: 1px solid rgb(255 255 255 / 10%);
        }

        &,
        p,
        a{
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 150%;
            color: rgb(255 255 255 / 70%);

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

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

    }
}


/*==================================================================================================*/
/*POLÍTICA DE PRIVACIDADE*/
/*==================================================================================================*/

.politica_privacidade{
    a{
        color: #F44E19;
    }
    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;
            }
        }
    }
}