@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.open{
    overflow: hidden;
}

img{
    max-width: 100%;
}

#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;
}


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

header .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 9;

    .barra1{
        padding: 13px 15px;
        background: #41C4DD;
        text-align: center;
        font-family: 'Plus Jakarta Sans';
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        color: #FFFFFF;
    }

    .barra2{
        padding: 25px 15px;
        background: #00264C;
        font-family: 'Plus Jakarta Sans';
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        text-align: center;
        color: #FFFFFF;
    }

    .menu_holder {
        padding: 30px 0;
    }

    .menu_holder .navbar-header img {
        width: 165px;
        max-width: 100%;
    }

    .menu_holder .menu-toggler {
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        display: none;
    }

    #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
        width: 35px;
        height: 24px;
        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;
    }

    #nav-icon1 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #fff;
        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;
    }

    .menu_holder.scroll #nav-icon1 span {
        background: #fff;
    }

    #nav-icon1.black span {
        background: #35353a;
    }

    #nav-icon1.white span {
        background: #fff;
    }

    #nav-icon1.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;
    }

    #nav-icon1 span:nth-child(1) {
        top: 0px;
    }

    #nav-icon1 span:nth-child(2) {
        top: 10px;
    }

    #nav-icon1 span:nth-child(3) {
        top: 20px;
    }

    #nav-icon1.open span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(140deg);
        -moz-transform: rotate(140deg);
        -o-transform: rotate(140deg);
        transform: rotate(140deg);
    }

    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #nav-icon1.open span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(-140deg);
        -moz-transform: rotate(-140deg);
        -o-transform: rotate(-140deg);
        transform: rotate(-140deg);
    }

    .menu_holder .menu .menu-nav {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 25px;
        justify-content: end;
        align-items: center;
    }

    .menu_holder .menu .menu-nav .dropdown {
        margin-left: 30px;

        a{
            font-family: "Plus Jakarta Sans";
            font-weight: 500;
            font-size: 16px;
            line-height: 1;
            color: #00264C;
            text-decoration: none;
        }

        &#m8 {
            margin-left: 0;

            a{
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 12px 30px;
                gap: 10px;
                background: #41C4DD;
                border: 1px solid rgba(255, 255, 255, 0.19);
                backdrop-filter: blur(40px);
                border-radius: 10px;
                font-family: 'Plus Jakarta Sans';
                font-weight: 700;
                font-size: 16px;
                line-height: 1;
                text-align: center;
                color: #FFFFFF;

                &:after {
                    content: '';
                    width: 24px;
                    height: 24px;
                    display: inline-block;
                    background-image: url('/site/imagens/chip_extraction.png');
                }

                @media screen and (max-width: 1199px) {
                    &{
                        font-size: 14px;
                        padding-left: 12px;
                        padding-right: 12px;
                    }
                }

            }
        }

        @media screen and (max-width: 1399px) {
            &{
                margin-left: 0;
            }
        }

        @media screen and (max-width: 1199px) {
            a{
                font-size: 14px;
            }
        }

    }


    .menu_holder .menu-nav .dropdown a:hover,
    .menu_holder .menu-nav li.active > a,
    .menu_holder .menu-nav li.active:hover > a {
        color: #F9BC23;
    }

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


    .menu_holder .menu .menu-nav .dropdown .dropdown-menu a {
        color: #000;
    }

    .menu_holder .menu-nav .dropdown .dropdown-menu a:hover,
    .menu_holder .menu-nav .dropdown-menu li.active > a,
    .menu_holder .menu-nav .dropdown-menu li.active:hover > a {
        color: #D43838;
        text-decoration: none !important;
    }

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

        .menu_holder .menu-toggler {
            display: inline-block;
        }

        .menu_holder .menu{
            position: absolute;
            top: 100%;
            left: 0;
            padding: 20px 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
            text-align: left;
            width: Calc(100% - 80px);
            margin: 0 40px;
            display: none;
        }

        .menu_holder .menu .menu-nav{
            flex-direction: column;
            align-items: flex-start;
        }

    }

}

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


.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.banner .mask{
    position: absolute;
    width: 100%;
    bottom: -2px;
    z-index: 2;
}

.banner .mask img{
    width: 100%;
}

.banner .holder_slider{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.banner .holder_slider img{
    width: 100%;
}

.banner .holder_slider .single_banner,
.banner .holder_slider .single_banner .holder_content,
.banner .holder_slider .single_banner .holder_content_img{
    width: 100%;
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.banner .holder_slider .single_banner .holder_content_img .iframe_holder{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner.banner_interno ul li{
    height: 480px;
}
.banner .owl-carousel .owl-stage-outer{
}
.banner.internas li {
    height: 260px;
    background-position: top center;
}

.banner #slider_home .owl-controls {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 100px;
}

.banner #slider_home .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    margin: -25px auto 0;
    left: 0;
    right: 0;
}

.banner #slider_home .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    border: 2px solid #fff;
    background: #fff;
}

.banner #slider_home .owl-dots .owl-dot.active {
    background: #F9BC23;
    border: 2px solid #F9BC23;
}

.banner #slider_home .owl-prev img,
.banner #slider_home .owl-next img {
    width: 32px !important;
}

.banner .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;
}

.banner .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;
}

.banner.banner_interno .conteudo{
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.banner .conteudo .nome{
    font-size: 60px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 71px;
    font-weight: 600;
    width: 690px;
    margin-bottom: 30px;
}

.banner .conteudo .descricao{
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 300;
    width: 690px;
    margin-bottom: 30px;
}

.banner .conteudo button{
    border: 0;
    padding: 20px 35px;
    border-radius: 0;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0;
    text-align: center;
    line-height: 20px;
    background: #FFFFFF;
}



@media screen and (max-width: 1500px) {
    .banner .holder_slider .single_banner{
        width: 100%;
        height: 700px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .banner #slider_home .owl-controls {
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 60px;
    }
}



@media screen and (max-width: 1400px) {
    .banner .conteudo .nome {
        font-size: 55px;
        line-height: 66px;
    }
}


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

    .banner .conteudo .nome {
        font-size: 50px;
        line-height: 61px;
    }
}

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

    .banner, .banner .holder_slider .single_banner {
        height: 650px;
    }
    .banner_interno, .banner_interno ul li {
        height: 480px;
    }

    .banner.internas,
    .banner.internas li {
        height:200px;
    }

    .banner .holder_slider img{
        display: none;
    }
    .banner .conteudo {

    }
    .banner .conteudo .nome {
        font-size: 40px;
        line-height: 51px;
        width: 100%;
    }
    .banner .conteudo .descricao {
        width: 100%;
    }

    .banner .conteudo {
        text-align: center;
    }

    .banner .conteudo button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .banner #slider_home .owl-controls {
        bottom: 70px;
    }

    .banner .holder_slider .single_banner {
        background-position: top right;
    }
}

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

    .banner .conteudo .nome {
        font-size: 35px;
        line-height: 46px;
    }

    .banner .conteudo .descricao {
        font-size: 16px;
    }

    .banner .holder_slider .single_banner {
    }
}

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

    .banner .conteudo .nome {
        font-size: 35px;
        line-height: 46px;
    }

    .banner .conteudo .descricao {
        font-size: 16px;
    }
}


/*==================================================================================================*/
/*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{
    padding: 65px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #00264C;
    backdrop-filter: blur(49.4px);
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;

    .margin-helper{
        padding-top: 80px;
    }

    h3{
        font-family: 'Plus Jakarta Sans';
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        color: #41C4DD;
    }

    ul{
        list-style: none;
        padding: 0;

        li{
            padding-bottom: 10px;
        }
    }

    .lower_footer{
        margin-top: 20px;
        padding-top: 50px;
        border-top: 1px solid #41C4DD;
        font-family: 'Plus Jakarta Sans';
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #41C4DD;

        .redes_sociais{
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: end;
        }
    }

    a{
        text-decoration: none;
        font-weight: 700;
        color: inherit;
    }

    #form_newsletter{

        .input-group{
            position: relative;
        }

        input[type='text'],
        input[type='email']{
            width: 335px;
            padding: 18px 14px;
            display: inline-block;
            font-family: 'Plus Jakarta Sans';
            font-weight: 400;
            font-size: 16px;
            line-height: 30px;
            color: #00264C;
            background: #FFFFFF;
            border-radius: 10px;
            border: none;
        }

        .rgpd{

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

            label{

                .checkmark{
                    width: 11px;
                    height: 11px;
                    border: 1px solid #41C4DD;
                    border-radius: 20px;
                    margin-right: 5px;
                    display: inline-block;
                }

                font-family: 'Plus Jakarta Sans';
                font-weight: 400;
                font-size: 10px;
                line-height: 28px;
                color: #FFFFFF;
            }
        }

    }

}

#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;
}