html {
    background: #000;
    overflow-x: hidden !important;
    min-height: 100vh;
}

body {
    background-color: #fff;
    overflow-x: hidden !important;
    min-height: 100vh;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

html.blocked,
html.blocked body {
    overflow: hidden !important;
}

body.pageContactos {
    overflow: hidden !important;
}

body:not(.initialized) > * {
    display: none;
}


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

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

a, button, textarea, input {
    outline: none;
    text-decoration: none !important;
}


.full_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.full_overlay .loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #f3ba19;
    width: 120px;
    height: 120px;

    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*==================================================================================================*/
/*BUTTONS*/
/*==================================================================================================*/


button.v1 {
    background: #000;
    padding: 10px 60px;
    margin: auto;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;

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

button.v1:hover {
    background: #222;
}


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

    button.v1 {
        padding: 7px 40px;
        font-size: 14px;
        line-height: 25px;
    }
}


/*==================================================================================================*/
/*SWAL*/
/*==================================================================================================*/


.swal2-container.swal2-center > .swal2-popup {
    transform: scale(1.3) !important;
}

.swal2-styled.swal2-confirm {
    background-color: #000 !important;
    border-radius: 0 !important;
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 0 !important;
}



/*==================================================================================================*/
/*ANIMATIONS*/
/*==================================================================================================*/


.animate {
    opacity: 0;
    transform: translate3d(0px, 50px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);

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

.animate.animated {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
}


.holder_overlay {
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;

    display: block !important;
}

.holder_overlay .holder_logo {
    position: absolute;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 235px;
    margin: auto;
}

.holder_overlay .holder_logo.out {
    transform: scale(1.8);
    opacity: 0;

    -webkit-transition: all 1.75s;
    -moz-transition: all 1.75s;
    transition: all 1.75s;
}

.holder_overlay .holder_logo img {
    width: 500px;
}


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


    .holder_overlay .holder_logo img {
        width: 250px;
    }
}


.holder_pageTransition {
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100vw;
    width: 100vw;
    z-index: 999;

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


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

.holder_menu {
    background: #000;
    position: fixed;
    display: flex;
    top: 0;
    right: -355px;
    width: 355px;
    height: 100vh;
    z-index: 99;
}

.holder_menu .front-face {
    position: relative;
    width: 55px;
}

.holder_menu .front-face .menu-toggler  {
    background: transparent;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: 30px;
    height: 35px;
    margin: auto;
    cursor: pointer;
    z-index: 99;
}

.holder_menu .front-face .menu-toggler span {
    background: #fff;
    position: absolute;
    display: block;
    height: 2px;
    width: 100%;
    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;
}

.holder_menu .front-face .menu-toggler.open span {
    background: #fff;
}

.holder_menu .front-face .menu-toggler span:nth-child(1) {
    top: 0px;
}

.holder_menu .front-face .menu-toggler span:nth-child(2) {
    top: 8px;
}

.holder_menu .front-face .menu-toggler span:nth-child(3) {
    top: 16px;
}

.holder_menu .front-face .menu-toggler div {
    position: absolute;
    left: -1px;
    bottom: -2px;
    color: #fff;
    font-size: 10px;
}

.holder_menu .front-face .menu-toggler.open span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.holder_menu .front-face .menu-toggler.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.holder_menu .front-face .menu-toggler.open span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.holder_menu .front-face .holder_frase {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -100px;
    width: 250px;
    height: 20px;
    margin: auto;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-90deg);
}

.holder_menu .front-face .holder_frase::after,
.holder_menu .front-face .holder_frase::before {
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    height: 1px;
    margin: auto;
}

.holder_menu .front-face .holder_frase::after {
    right: -120px;
}

.holder_menu .front-face .holder_frase::before {
    left: -120px;
}

.holder_menu .holder_inner_menu {
    position: relative;
    height: 500px;
    margin: auto 45px;
    text-align: right;
}

.holder_menu .holder_inner_menu .single_menu {
    position: relative;
    margin-bottom: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;

    opacity: 0;
    transform: translate3d(250px, 0px, 0px);

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.holder_menu .holder_inner_menu .single_menu.initial {
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}

.holder_menu .holder_inner_menu .single_menu:not(.redes_sociais):not(.active):hover {
    transform: translate3d(-10px, 0px, 0px) !important;
}

.holder_menu .holder_inner_menu .single_menu.active {
    color: #968464;
}

.holder_menu .holder_inner_menu .single_menu.redes_sociais {
    margin: 0;
    font-size: 25px;
}

.holder_menu .holder_inner_menu .single_menu.redes_sociais a {
    color: #fff;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.holder_menu .holder_inner_menu .single_menu.redes_sociais a:hover {
    color: #968464;
}

.outer_single_menu {
    position: fixed;
    top: 15px;
    right: 95px;
    width: 110px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    z-index: 99;
}

.outer_single_menu.scroll {
    background: #000;
}

.outer_single_menu:hover {
    font-weight: 500;
}


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

    .holder_menu {
        right: -100vw;
        width: 100%;
    }

    .holder_menu .front-face {
        margin-left: -65px;
    }

    .holder_menu .front-face .menu-toggler {
        background: #000;
        width: 40px;
        height: 45px;
    }

    .holder_menu .front-face .menu-toggler span {
        width: calc(100% - 10px);
        left: 5px;
    }

    .holder_menu .front-face .menu-toggler span:nth-child(1) {
        top: 8px;
    }

    .holder_menu .front-face .menu-toggler span:nth-child(2) {
        top: 14px;
    }

    .holder_menu .front-face .menu-toggler span:nth-child(3) {
        top: 20px;
    }

    .holder_menu .front-face .menu-toggler div {
        left: 0;
        bottom: 3px;
        right: 0;
        margin: auto;
        text-align: center;
    }

    .holder_menu .front-face .holder_frase {
        display: none !important;
    }

    .holder_menu .holder_inner_menu {
        margin: auto 80px;
    }
}


@media screen and (max-width: 991px) and (orientation: landscape) {

    .holder_menu .holder_inner_menu {
        height: 350px;
        margin: auto 0px auto 50vw;
    }

    .holder_menu .holder_inner_menu .single_menu {
        margin-bottom: 20px;
    }
}


.holder_top_logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 200px;
    cursor: pointer;
    z-index: 99;

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

.holder_top_logo.scroll {
    width: 138px;
}

.holder_top_logo img {
    width: 100%;
}


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

    .holder_top_logo {
        width: 110px !important;
    }
}


body.pageContactos .holder_top_logo,
body.pageContactos .outer_single_menu {
    display: none;
}


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

    .outer_single_menu {
        display: none !important;
    }
}


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


.bloco {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
}

.bloco .custom_container {
    position: relative;
    width: 85%;
    margin: auto;
}

.bloco .black_square {
    background: #000;
    position: relative;
    width: 60vw;
    padding: 25px;
    float: right;
    text-align: right;
}

.bloco .black_square h2 {
    margin: 0;
    color: #fff;
    font-size: 8cqw;
    line-height: 5cqw;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.bloco .black_square h3 {
    margin: 0;
    color: #fff;
    font-size: 3cqw;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco .black_square .ver_mais {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco .black_square .ver_mais:before {
    content: '';
    background: #fff;
    position: absolute;
    bottom: 5px;
    right: 75px;
    width: 40px;
    height: 1px;

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

.bloco .black_square .ver_mais:hover:before {
    width: 50px;
}


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

    .bloco .black_square h2 {
        font-size: 11cqw;
        line-height: 8cqw;
    }

    .bloco .black_square h3 {
        font-size: 4cqw;
    }
}


/*==================================================================================================*/
/*HOME*/
/*==================================================================================================*/


.holder_banner {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 50px);
    top: 0;
}

.holder_banner .single_banner {
    position: relative;
    width: 100vw;
    height: calc(100vh - 50px);
}

.holder_banner.interno,
.holder_banner.interno .single_banner {
    height: calc(55vh - 50px);
}

.holder_banner .single_banner .conteudo {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 600px;
    margin: auto;
}

.holder_banner .single_banner .conteudo h2 {
    margin: 0;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.holder_banner .single_banner .conteudo h3 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.holder_banner .single_banner .conteudo a {
    position: relative;
    margin-top: 20px;
    float: right;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.holder_banner .single_banner .conteudo a:before {
    content: '';
    background: #fff;
    position: absolute;
    bottom: 5px;
    right: 75px;
    width: 40px;
    height: 1px;

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

.holder_banner .single_banner .conteudo a:hover:before {
    width: 50px;
}


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

    .holder_banner,
    .holder_banner .single_banner {
        height: calc(55vh - 50px);
    }

    .holder_banner .single_banner .conteudo h2 {
        font-size: 40px;
    }

    .holder_banner .single_banner .conteudo h3 {
        font-size: 20px;
        font-weight: 400;
    }
}



.bloco.first_bloco {
    margin-top: calc(100vh - 50px);
    background: #fff;
    padding: 0 0 10vw;
    overflow: initial;
}

.bloco.first_bloco .black_square {
    height: 35vw;
    transform: translate3d(0px, -5vw, 0px);
}

.bloco.first_bloco .holder_imagem {
    position: relative;
    width: 60vw;
    height: 40vw;
    max-height: 570px;
    transform: translate3d(0px, 10vw, 0px);
    z-index: 1;
}


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

    .bloco.first_bloco {
        margin-top: calc(55vh - 50px);
        padding: 0 0 40px;
    }

    .bloco.first_bloco .black_square {
        background: #fff;
        transform: none;
        width: 100%;
        right: 0;
        float: none;
        text-align: center;
    }

    .bloco.first_bloco .black_square h2 {
        color: #000;
    }

    .bloco.first_bloco .black_square h3 {
        color: #000;
    }

    .bloco .black_square .ver_mais {
        color: #000;
    }

    .bloco .black_square .ver_mais::before {
        background: #000;
    }

    .bloco.first_bloco .holder_imagem {
        transform: none;
        float: none;
        width: 100%;
        min-width: unset;
        height: 270px;
        margin-bottom: 30px;
    }
}



.bloco_quem_somos {
    background: #000;
    margin-top: -40px;
    padding: 100px 0 190px;
    text-align: center;
}

.bloco_quem_somos h2 {
    margin: 0 0 40px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_quem_somos p {
    margin: 0;
    color: #cecece;
    font-size: 17px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_quem_somos .ver_mais {
    position: relative;
    margin-top: 30px;
    float: right;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_quem_somos .ver_mais:before {
    content: '';
    background: #fff;
    position: absolute;
    bottom: 5px;
    right: 75px;
    width: 40px;
    height: 1px;

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

.bloco_quem_somos .ver_mais:hover:before {
    width: 50px;
}


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

    .bloco_quem_somos {
        padding: 100px 0 130px;
    }

    .bloco_quem_somos p {
        font-size: 15px;
        line-height: 22px;
    }
}

.bloco_custom_slider {
    background: #fff;
    overflow: initial;
    margin-top: -50px;
    padding: 0 0 150px;
}

.bloco_custom_slider .holder_custom_slider {
    display: flex;
    width: calc(100vw - 75px);
    margin-left: 10px;
}

.bloco_custom_slider .holder_custom_slider .owl-stage-outer {
    margin-top: -50px;
    overflow: initial;
}

.bloco_custom_slider .holder_custom_slider .single {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 650px;
    padding: 0 20px;

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

.bloco_custom_slider .holder_custom_slider .single::before {
    content: '';
    background: #000;
    position: absolute;
    display: block;
    width: calc(100% - 40px);
    height: 100%;
    z-index: -1;
}

.bloco_custom_slider .holder_custom_slider .single.active {
    transform: scale(1.15);
}

.bloco_custom_slider .holder_custom_slider .single .inner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    width: 100%;
    height: 100%;

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

.bloco_custom_slider .holder_custom_slider .single:not(.active) .inner {
    filter: grayscale(1);
    opacity: 0.6;
}


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

    .bloco_custom_slider {
        padding: 0 0 60px;
    }

    .bloco_custom_slider .holder_custom_slider {
        width: calc(100vw);
        margin: 0;
    }

    .bloco_custom_slider .holder_custom_slider .single {
        height: 30vh;
        min-height: 220px;
        padding: 0 10px;
    }

    .bloco_custom_slider .holder_custom_slider .single::before {
        width: calc(100% - 20px);
    }
}



.midder {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    position: relative;
    width: 100vw;
    height: 390px;
    padding: 160px 0;
}

.midder::before {
    content: '';
    background: #4d4d4d;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: multiply;
    opacity: 0.75;
}

.midder h2 {
    margin: 0;
    color: #fff;
    font-size: 2cqw;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.midder button.v1 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
    width: 280px;
}


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

    .midder {
        height: 270px;
        padding: 100px 0;
        background-attachment: unset;
    }

    .midder h2 {
        font-size: 17px;
    }

    .midder button.v1 {
        bottom: 40px;
        width: 280px;
        margin: auto;
        font-size: 14px;
    }
}



.bloco_newsletter {
    background: #968464;
    padding: 60px 0;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
}

.bloco_newsletter .custom_container {
    display: flex;
}

.bloco_newsletter .column-left {
    position: relative;
    width: 500px;
}

.bloco_newsletter .column-left h2 {
    margin: 0;
    color: #fff;
    font-size: 110px;
    font-weight: 800;
    line-height: 100px;
    letter-spacing: -0.7px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_newsletter .column-left p {
    margin: 20px 0 0;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.bloco_newsletter .column-right {
    position: relative;
    width: calc(100% - 510px);
    padding-left: 50px;
}

.bloco_newsletter .column-right form {
    position: relative;
    width: 100%;
    margin-top: 125px;
}

.bloco_newsletter .column-right form label {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_newsletter .column-right form input {
    border: 0;
    width: 100%;
    padding: 7px 10px;
    margin-bottom: 15px;
}

.bloco_newsletter .column-right form button {
    background: #fff;
    margin-top: 10px;
    padding: 7px 40px;
    float: right;
    color: #968464;
    border: 0;
    font-size: 12px;
    text-transform: uppercase;
}


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

    .bloco_newsletter {
        padding: 60px 0 80px;
    }

    .bloco_newsletter .custom_container {
        display: block;
    }

    .bloco_newsletter .column-left h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .bloco_newsletter .column-left {
        width: 100%;
    }

    .bloco_newsletter .column-right {
        width: 100%;
        padding-left: 0;
    }

    .bloco_newsletter .column-right form {
        margin-top: 25px;
    }
}


/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/


.bloco_quemsomos {
    background: #fff;
    margin-top: calc(55vh - 50px);
    overflow: initial;
    padding: 90px 0 110px !important;
}

.bloco_quemsomos .custom_container {
    position: relative;
    display: flex;
}

.bloco_quemsomos .holder_conteudo {
    position: relative;
    width: 50%;
}

.bloco_quemsomos .holder_conteudo h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_quemsomos .holder_conteudo p {
    margin: 25px 0 0;
    color: #4d4d4d;
    font-size: 16px;
    text-align: left;
    line-height: 24px;
    letter-spacing: -0.2px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_quemsomos .holder_imagens {
    position: relative;
    width: 50%;
}

.bloco_quemsomos .holder_imagens .imagem1 {
    background: #ccc;
    position: absolute;
    right: 0;
    width: 500px;
    height: 250px;
    z-index: 2;

    text-align: center;
    padding-top: 10%;
}

.bloco_quemsomos .holder_imagens .imagem2 {
    background: #a8a8a8;
    position: absolute;
    top: 230px;
    left: 15%;
    width: 500px;
    height: 330px;
    z-index: 1;

    text-align: center;
    padding-top: 20%;
}

.bloco_quemsomos .holder_imagens .imagem3 {
    background: #eaeaea;
    position: absolute;
    top: 520px;
    right: -60px;
    width: 440px;
    height: 200px;
    z-index: 2;

    text-align: center;
    padding-top: 10%;
}


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

    .bloco_quemsomos {
        padding: 50px 0 !important;
    }

    .bloco_quemsomos .custom_container {
        display: block;
    }

    .bloco_quemsomos .holder_conteudo {
        width: 100%;
    }

    .bloco_quemsomos .holder_imagens {
        width: 100%;
        margin-top: 50px;
    }

    .bloco_quemsomos .holder_imagens .imagem1 {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 5px;
    }

    .bloco_quemsomos .holder_imagens .imagem2 {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        height: 220px;
        margin-bottom: 5px;
    }

    .bloco_quemsomos .holder_imagens .imagem3 {
        position: relative;
        top: unset;
        right: unset;
        width: 100%;
        height: 200px;
    }
}


.bloco_historia {
    background: #000;
    padding: 90px 0 110px !important;
    text-align: center;
}

.bloco_historia h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_historia p {
    margin: 25px 0 0;
    color: #9f9f9f;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    font-family: 'Montserrat', sans-serif;
}

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

}


/*==================================================================================================*/
/*FEEDBACK*/
/*==================================================================================================*/


.bloco_feedback {
    background: #fff;
    padding: 50px 0 !important;
    text-align: center;
}

.bloco_feedback h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_feedback p {
    margin: 25px 0 0;
    font-size: 17px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_feedback .holder_slider_feedback {
    position: relative;
    width: 100%;
    margin: 30px 0 50px;
}

.bloco_feedback .holder_slider_feedback .single_feedback {
    background: #f4f4f4;
    position: relative;
    width: calc(100% - 40px);
    max-width: 30vw;
    margin-left: 20px;
    padding: 50px;
    text-align: left;
}

.bloco_feedback .holder_slider_feedback .single_feedback .estrelas i {
    color: #e19408;
}

.bloco_feedback .holder_slider_feedback .single_feedback .conteudo {
    margin: 15px 0;
    color: #6c6c6c;
    line-height: 15px;
}

.bloco_feedback .holder_slider_feedback .single_feedback .nome {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Libre Caslon Text', serif;
}


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

    .bloco_feedback .holder_slider_feedback .single_feedback {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}


/*==================================================================================================*/
/*PRODUTOS*/
/*==================================================================================================*/


.bloco_produtos {
    background: #f2f2f2;
    margin-top: calc(55vh - 50px);
    padding: 50px 0 !important;
    text-align: center;
}

.bloco_produtos .custom_container {
    width: 100%;
    padding: 0 80px 0 20px !important;
}

.bloco_produtos h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_produtos p {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_produtos .holder_produtos {
    position: relative;
    margin-top: 50px;
}

.bloco_produtos .holder_produtos .single_produto {
    margin: 15px 0;
    padding: 0;
    box-shadow: 0 4px 12px #0000001a;
    cursor: pointer;
}

.bloco_produtos .holder_produtos .single_produto .holder_imagem {
    position: relative;
    height: 550px;
}

.bloco_produtos .holder_produtos .single_produto .holder_descricao {
    background: #fff;
    position: relative;
    padding: 15px;
    text-align: left;
}

.bloco_produtos .holder_produtos .single_produto .holder_descricao .titulo {
    font-size: 21px;
    font-weight: 400;
    font-family: 'Libre Caslon Text', serif;
}


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

    .bloco_produtos .holder_produtos {
        margin: 0;
    }

    .bloco_produtos .custom_container {
        padding: 0 20px !important;
    }

    .bloco_produtos .holder_produtos .single_produto .holder_imagem {
        height: 350px;
    }
}


.holder_detalhe_produto {
    background: #fff;
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90vw;
    height: 90vh;
    max-height: 860px;
    margin: auto;
    z-index: 999;
}

.holder_detalhe_produto .holder_descricao {
    position: relative;
    width: 450px;
    padding: 25px 35px;
}

.holder_detalhe_produto .holder_descricao .titulo {
    margin-bottom: 25px;
    font-size: 29px;
    font-weight: 400;
    font-family: 'Libre Caslon Text', serif;
}

.holder_detalhe_produto .holder_descricao .conteudo {
    overflow-y: auto;
    height: calc(100% - 190px);
    padding-right: 20px;
    color: #333;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
}

.holder_detalhe_produto .holder_slider {
    background: #f2f2f2;
    position: relative;
    overflow: hidden;
    width: calc(100% - 350px);
}

.holder_detalhe_produto .holder_slider .holder_imagem {
    width: 100%;
    height: 90vh;
    cursor: zoom-in;
}

.holder_detalhe_produto .holder_slider .owl-controls {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    padding: 0;
    margin: auto;
}

.holder_detalhe_produto .holder_slider .owl-controls .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    margin: auto;
}

.holder_detalhe_produto .holder_slider .owl-controls .owl-nav .owl-prev,
.holder_detalhe_produto .holder_slider .owl-controls .owl-nav .owl-next {
    position: absolute;
    background: #000;
    width: 30px;
    height: 30px;
    padding: 4px 0 0;
    margin-top: -15px;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    font-family: 'Libre Caslon Text', serif;
}

.holder_detalhe_produto .holder_slider .owl-controls .owl-nav .owl-next {
    right: 0;
}

.holder_detalhe_produto .holder_slider .owl-controls .owl-dots  {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.71) 0%, rgba(255,255,255,0) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 0;
    text-align: center;
}

.holder_detalhe_produto .holder_slider .owl-controls .owl-dots .owl-dot {
    background: #fff;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 2px;
    border-radius: 100%;
}

.holder_detalhe_produto .holder_slider .owl-controls .owl-dots .owl-dot.active {
    background: #000;
}

.holder_detalhe_produto .holder_close {
    background: #000;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 29px;
    font-weight: 400;
    text-align: center;
    font-family: 'Libre Caslon Text', serif;
    cursor: pointer;
    z-index: 9;
}

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

    .holder_detalhe_produto {
        display: block;
        width: 100vw;
        height: 100dvh;
    }

    .holder_detalhe_produto .holder_close {
        top: 0;
    }

    .holder_detalhe_produto .holder_descricao {
        position: absolute;
        overflow: auto;
        top: 265px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 265px);
        padding: 25px 25px 10px;
    }

    .holder_detalhe_produto .holder_descricao .titulo {
        margin-bottom: 5px;
        font-size: 22px;
    }

    .holder_detalhe_produto .holder_descricao .conteudo {
        height: calc(100% - 120px);
        font-size: 13px;
        line-height: 20px;
    }

    .holder_detalhe_produto .holder_descricao .trigger_orcamento {
        padding: 5px 40px;
        font-size: 15px;
    }

    .holder_detalhe_produto .holder_slider {
        width: 100%;
        max-height: 265px;
    }

    .holder_detalhe_produto .holder_slider .holder_imagem {
        height: 265px;
    }
}



.bloco_produto_detalhe {
    background: #fff;
    margin-top: 105px;
    padding: 50px 0 !important;
}

.bloco_produto_detalhe h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_produto_detalhe p {
    margin: 15px 0 0;
    color: #333;
    font-size: 17px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_produto_detalhe .holder_produtos {
    position: relative;
    margin-top: 50px;
}

.bloco_produto_detalhe .holder_produtos .single_produto {
    background: #f2f2f2;
    position: relative;
    padding: 50px 0 25px;
}


.bloco_produto_detalhe .holder_produtos .single_produto:nth-child(2n) {
    background: #fff;
}

.bloco_produto_detalhe .holder_produtos .single_produto h3 {
    margin: 0 0 0 calc(15% / 2);
    color: #333;
    font-size: 28px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin: 15px 0 0 calc((15% / 2) - 15px);
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-stage-outer {
    padding: 15px 0 15px 15px;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-controls {
    position: relative;
    width: calc(100% - 200px);
    margin-left: 15px;

    opacity: 0;

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

.bloco_produto_detalhe .holder_produtos .single_produto:hover .holder_imagens .owl-controls {
    opacity: 1;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-controls .owl-nav {
    text-align: center;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-controls .owl-nav .owl-prev,
.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-controls .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    font-size: 25px;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-controls .owl-nav img {
    width: 35px;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .single_imagem {
    width: calc(100% - 15px);
    height: 350px;
    cursor: pointer;

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

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .single_imagem:hover {
    transform: scale(1.02);
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .trigger_orcamento {
    background: #a8a8a8;
    width: 350px;
    height: 350px;
    padding-top: 100px;
    color: #fff;
    font-size: 27px;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;

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

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .trigger_orcamento:hover {
    background: #babcbc;
}

.bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .trigger_orcamento i {
    display: block;
    margin-bottom: 15px;
    font-size: 40px;
}

.bloco_produto_detalhe .holder_produtos .single_produto button.v1 {
    margin: 15px 0 0 calc(15% / 2);
}



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

    .bloco_produto_detalhe {
        margin-top: 50px;
    }

    .bloco_produto_detalhe h2 {
        font-size: 25px;
    }

    .bloco_produto_detalhe p {
        font-size: 15px;
    }

    .bloco_produto_detalhe .holder_produtos .single_produto {
        padding: 25px 0;
    }

    .bloco_produto_detalhe .holder_produtos .single_produto h3 {
        font-size: 20px;
    }

    .bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens {
        margin-top: 0;
    }

    .bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .single_imagem {
        height: 150px;
    }

    .bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .trigger_orcamento {
        width: 180px;
        height: 150px;
        padding-top: 30px;
        margin-right: 20px;
        font-size: 17px;
        line-height: 15px;
    }

    .bloco_produto_detalhe .holder_produtos .single_produto .holder_imagens .owl-controls {
        display: none;
    }
}


/*==================================================================================================*/
/*SERVIÇOS*/
/*==================================================================================================*/


.bloco_servicos {
    background: #f2f2f2;
    margin-top: calc(55vh - 50px);
    overflow: initial;
    padding: 50px 0 !important;
}



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

}



/*==================================================================================================*/
/*ORÇAMENTO*/
/*==================================================================================================*/


.holder_orcamento {
    background: #fff;
    position: fixed;
    top: -500px;
    left: 0;
    right: 0;
    width: 750px;
    margin: auto;
    padding: 30px 50px;
    z-index: 999;
}

.holder_orcamento h2 {
    margin: 0 0 30px 15px;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.holder_orcamento form input,
.holder_orcamento form textarea {
    background: #eee;
    width: 100%;
    margin-bottom: 15px;
    padding: 8px 15px;
    border: 0;
}



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

    .holder_orcamento {
        width: 100vw;
        height: 100dvh;
        padding: 60px 15px 15px;
    }

    .holder_orcamento h2 {
        margin: 0 0 30px;
        font-size: 26px;
    }

    .holder_orcamento .close {
        background: #000;
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        padding-top: 5px;
        color: #fff;
        font-size: 29px;
        font-weight: 400;
        text-align: center;
        font-family: 'Libre Caslon Text', serif;
        cursor: pointer;
        opacity: 1;
        z-index: 9;
    }
}


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


.bloco_contactos {
    background: #fff;
    overflow: initial;
    padding: 0 !important;
}

.bloco_contactos .mapa,
.bloco_contactos .mapa_mobile {
    width: 100%;

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

.bloco_contactos .mapa_mobile {
    display: none;
}

.bloco_contactos .mapa:hover {
    opacity: 0.9;
}

.bloco_contactos a {
    display: block;
    height: 0;
}


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

    .bloco_contactos .mapa {
        display: none;
    }

    .bloco_contactos .mapa_mobile {
        display: block;
    }
}


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


.bloco_privacidade {
    background: #fff;
    margin-top: calc(55vh - 50px);
    overflow: initial;
    padding: 90px 0 110px !important;
}

.bloco_privacidade .holder_conteudo {
    position: relative;
    width: 100%;
}

.bloco_privacidade .holder_conteudo h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_privacidade .holder_conteudo p {
    margin: 25px 0 0;
    color: #4d4d4d;
    font-size: 16px;
    text-align: left;
    line-height: 24px;
    letter-spacing: -0.2px;
    font-family: 'Montserrat', sans-serif;
}

.bloco_privacidade .holder_conteudo a {
    color: #4d4d4d;
}


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


.bloco_footer {
    background: #000;
    position: relative;
    overflow: initial;

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

.bloco_footer .holder_logo {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    width: 130px;
    margin: auto;
}

.bloco_footer .holder_logo img {
    width: 100%;
}

.bloco_footer .holder_conteudo {
    display: inline-block;
    position: relative;
}

.bloco_footer p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.bloco_footer p a {
    color: #fff;

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

.bloco_footer p a:hover {
    font-weight: 500;
}

.bloco_footer .trigger_orcamento {
    background: #fff !important;
    padding: 8px 40px;
    margin-top: 5px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}


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

}



body.pageContactos .bloco_footer {
    position: fixed;
    top: 25vh;
    left: 15px;
    width: 40vw;
    max-width: 780px;
    height: 460px;
    z-index: 99;
}

body.pageContactos .bloco_footer .holder_logo {
    left: 7%;
    right: unset;
    cursor: pointer;
}


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

    body.pageContactos .bloco_footer {
        top: unset;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: auto;
        padding: 60px 0 20px;
        max-width: unset;
        z-index: 9;
    }

    body.pageContactos .bloco_footer p {
        font-size: 14px;
    }
}


.lower_footer {
    background: #fff;
    padding: 15px 0;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.lower_footer a {
    color: #000;
}

body.pageContactos .lower_footer {
    background: transparent;
    position: fixed;
    bottom: 10px;
    left: 1%;
    width: 330px;
    padding: 0;
    color: #fff;
}

body.pageContactos .lower_footer div.col-md-6 {
    width: 100% !important;
}

body.pageContactos .lower_footer div.right {
    display: none;
}

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

    .lower_footer, .lower_footer div.right {
        text-align: center !important;
    }
}


/*==================================================================================================*/
/*COOKIE BAR*/
/*==================================================================================================*/


.cookie_bar {
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    bottom: 5px;
    left: 5px;
    color: #fff;
    width: calc(100% - 10px);
    border-radius: 20px;
    padding: 10px 25px;
    text-align: center;
    z-index: 999;
}

.cookie_bar a {
    color: #fff;
    text-decoration: underline !important;
}

.cookie_bar .close_cookie_bar {
    background: transparent;
    position: absolute;
    top: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 0;
    cursor: pointer;
}


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

    .cookie_bar {
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 35px;
    }

    .cookie_bar .close_cookie_bar {
        background: #333;
        border-radius: 100%;
        top: -15px;
        right: 0px;
        width: 30px;
        height: 30px;
    }
}