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

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

body{
    background-color: #fff;
    font-family: "Figtree", sans-serif;
}

body.open{
    overflow: hidden;
}


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

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

#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{
        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{
    background: #0877F4;
    border-radius: 31px;
    font-family: "Figtree", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    padding: 20px 30px;
    border: 1px solid #0877F4;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    &:hover{
        transform: scale(1.03);
        -moz-transform: scale(1.03);
        -webkit-transform: scale(1.03);
    }
    &.v2{
        background: #FFFFFF;
        color: #0877F4;
        border: 1px solid #FFFFFF;
        &:hover{
            background: transparent;
            color: #FFFFFF;
            transform: scale(1.03);
            -moz-transform: scale(1.03);
            -webkit-transform: scale(1.03);
        }
    }
    &.v3{
        background: transparent;
        color: #ffff;
        border: 1px solid #FFFFFF;
        &:hover{
            background: #FFFFFF;
            color: #0877F4;
            transform: scale(1.03);
            -moz-transform: scale(1.03);
            -webkit-transform: scale(1.03);
        }
    }
}

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

.faixa_idiomas{
    position: relative;
}
.menu_holder {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    padding: 70px 0;
    width: 100%;
    z-index: 6;
    .navbar-header {
        float: unset;
        width: 290px;
        display: inline-block;
        img{
            width: 270px;
            max-width: 100%;
        }
    }
    .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: 38px;
            height: 45px;
            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: 5px;
                width: 100%;
                background: #fff;
                border-radius: 0;
                opacity: 1;
                left: 0;
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-transition: .25s ease-in-out;
                -moz-transition: .25s ease-in-out;
                -o-transition: .25s ease-in-out;
                transition: .25s ease-in-out;
                &:nth-child(1) {
                    top: 0px;
                }
                &:nth-child(2) {
                    top: 10px;
                }
                &:nth-child(3) {
                    top: 20px;
                }
            }
        }
        &.open {
            span {
                background: #fff;
                -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: 18px;
                    -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: 18px;
                    -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% - 295px);
        text-align: right;
        vertical-align: middle;
        ul{
            padding: 0;
        }
        .botoes{
            display: inline-flex;
            width: 290px;
            gap: 20px;
            justify-content: right;
            .btn1{
                font-size: 14px;
                padding: 15px 28px;
                &.v3:hover{
                    transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -webkit-transform: scale(1.1);
                }
            }
        }
        .menu-nav{
            list-style: none;
            margin: 0;
            display: inline-block;
            width: Calc(100% - 295px);
            text-align: center;
            .dropdown{
                display: inline-block;
                margin: 0 30px;
                cursor: pointer;
                color: #fff;
                a, span{
                    font-style: normal;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 120%;
                    text-align: center;
                    color: #DCEBFD;
                    text-decoration: none !important;
                }

                & a:hover,
                &.active > a,
                &.active:hover > a,
                & span:hover,
                &.active > span,
                &.active:hover > span {
                    color: #FFFFFF;
                    text-decoration: none !important;
                }

                .dropdown-menu {
                    background-color: #fff;
                    cursor: default;
                    text-align: left;
                    color: #000;
                    margin-top: 20px;
                    top: 5px;
                    a {
                        color: #000;
                    }

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

            }

        }
    }

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

    @media screen and (max-width: 1400px) {
        & {
            .navbar-header {
                width: 245px;
                img{
                    width: 225px;
                }
            }
            .menu {
                width: Calc(100% - 250px);
                .botoes {
                    width: 245px;
                    .btn1 {
                        font-size: 13px;
                        padding: 10px 20px;
                    }
                }
                .menu-nav {
                    width: Calc(100% - 250px);
                    .dropdown {
                        margin: 0 20px;
                        a {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        & {
            padding: 50px 0;
            .navbar-header {
                width: 205px;
                img{
                    width: 195px;
                }
            }
            .menu {
                width: Calc(100% - 210px);
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .navbar-header {
                float: unset;
                display: inline-block;
                width: Calc(100% - 39px);
                img{
                    width: 70px;
                }
            }
            .menu-toggler{
                display: inline-block;
                position: relative;
                top: 26px;
            }
            .menu {
                width: 100%;
                padding: 40px 0 30px 0;
                text-align: left;
                display: none;
                .menu-nav {
                    padding: 0;
                    .dropdown {
                        display: block;
                        width: 100%;
                        margin: 15px 0;
                        a{
                            font-size: 17px;
                            font-weight: 400;
                        }

                    }
                }
            }
        }
    }
}


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


.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    margin-top: -192px;
    .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;
            }
            .holder_content_img {
                .iframe_holder{
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
                }
            }
            .holder_slider {
                video{
                    position: absolute;
                    width: 100%;
                    /* height: 100%; */
                    top: Calc( 50% - 36px );
                    left: 50%;
                    -webkit-transform: translate(-50%,-50%);
                    -ms-transform: translate(-50%,-50%);
                    transform: translate(-50%,-50%);
                    z-index: 1;
                }
            }
            .conteudo{
                position: absolute;
                top: 165px;
                left: 0;
                right: 0;
                text-align: left;
                margin: auto;

                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                transition: all .3s;
                .nome{
                    font-size: 60px;
                    color: #FFFFFF;
                    letter-spacing: 0;
                    line-height: 71px;
                    font-weight: 600;
                    width: 690px;
                    margin-bottom: 30px;
                }
                .descricao{
                    font-size: 18px;
                    color: #FFFFFF;
                    letter-spacing: 0;
                    line-height: 25px;
                    font-weight: 300;
                    width: 690px;
                    margin-bottom: 30px;
                }
            }
        }
    }
}



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

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

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


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

    .bloco{
        padding: 40px 0;
    }
}


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


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

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

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

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

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

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


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

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

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

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


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


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


.produto .produto_imagem img{
    width: 100%;
}


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




/*==================================================================================================*/
/*BLOG*/
/*==================================================================================================*/
.pagina_noticias{

}

.pagina_noticias .listagem_noticias .paginacao{

}

.pagina_noticias .listagem_noticias .paginacao .single_pag{
    display: inline-block;
    cursor: pointer;
    padding: 10px;
}

.pagina_noticias .listagem_noticias .paginacao .single_pag.active{
    font-weight: 600;
}

.pagina_noticias .listagem_noticias .lista_noticias{
    display: flex;
    flex-wrap: wrap;
}
.pagina_noticias .listagem_noticias .single_noticia{
    width: Calc(100% / 3);
}

.pagina_noticias .listagem_noticias .single_noticia .imagem img{
    width: 100%;
}
.pagina_noticias #load-noticias-blog.display_none{
    display: none !important;
}
.pagina_noticias .noticias-loading-blog{
    display: none;
}

/*==================================================================================================*/
/*FAQS*/
/*==================================================================================================*/

.faqs{

}

.faqs .holder_faqs{
    width: 70%;
    margin: 0 auto;
}

.faqs .holder_faqs .pergunta{
    cursor: pointer;
}

.faqs .holder_faqs .pergunta .cabecalho h2{
    text-align: left;
    margin: 0;
    color: #B23E3E;
    font-size: 35px;
    line-height: 40px;
}


.faqs .holder_faqs .pergunta .cabecalho{
    position: relative;
    border-bottom: 1px solid #B23E3E;
    padding-bottom: 10px;
    padding-right: 45px;
}

.faqs .holder_faqs .pergunta .cabecalho span{
    position: absolute;
    color: #B23E3E;
    top: 12px;
    /* left: 0; */
    font-size: 26px;
    right: 0;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}


.faqs .holder_faqs .pergunta.open .cabecalho span{
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.faqs .holder_faqs .resposta p,
.faqs .holder_faqs .resposta {
    margin: 0;
    font-size: 18px;
    color: #000;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.faqs .holder_faqs .resposta {
    display: none;
    padding-top: 20px;
}
.faqs .holder_faqs .single_faq{
    margin-bottom: 40px;
}
.faqs .holder_faqs .single_faq:last-child{
    margin-bottom: 0;
}

@media screen and (max-width: 1400px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .faqs .holder_faqs .pergunta .cabecalho span {
        top: 8px;
    }

    .faqs .holder_faqs {
        width: 80%;
    }
}

@media screen and (max-width: 1300px){
    .faqs .holder_faqs {
        width: 100%;
    }
}

@media screen and (max-width: 992px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .faqs .holder_faqs .pergunta .cabecalho span {
        top: 6px;
        font-size: 23px;
    }

    .faqs .holder_faqs .resposta p, .faqs .holder_faqs .resposta {
        font-size: 16px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px){
    .faqs .holder_faqs .pergunta .cabecalho h2 {
        font-size: 21px;
        line-height: 26px;
    }
}
/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


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

.footer h2{
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer h3{
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer p,
.footer label,
.footer a{
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.lower_footer {
    padding: 0 0 30px 0;
    background: #3D3D3D;
    text-align: center;
    position: relative;
}

.lower_footer hr {
    margin-top: 0;
    margin-bottom: 30px;
    border: 0;
    border-top: 1px solid #979797;
}

.lower_footer p,
.lower_footer a{
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 300;
}

#newsletter_response{
    font-size: 13px;
}

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

}


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

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