@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: "Public Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Public Sans", 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_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{
    background: #11D452;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #102216;
    border: 1px solid #11D452;
    padding: 10px 20px;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    svg path{
        fill: #102216;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
    }
    &:hover{
        background: transparent;
        color: #11D452;
        svg path{
            fill: #11D452;
        }
    }
    &.icon{
        display: inline-block;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    &.v2{
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid #4B5563;
        backdrop-filter: blur(2px);
        color: #fff;
        svg path{
            fill: #fff;
        }
        &:hover{
            background: #4B5563;
            color: #11D452;
            svg path{
                fill: #11D452;
            }
        }
    }
}
/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 20px 0;
    width: 100%;
    z-index: 6;
    background: rgba(246, 248, 246, 0.95);
    backdrop-filter: blur(4px);
    &:after{
        content: '';
        position: absolute;
        left: 0px;
        right: 0px;
        top: 78px;
        bottom: 0px;
        background: linear-gradient(0, #102216 0%, rgba(16, 34, 22, 0.8) 50%, rgba(16, 34, 22, 0) 100%);
        opacity: 0.1;
    }


    .navbar-header {
        float: unset;
        display: inline-block;
        width: 73px;
        vertical-align: middle;
        position: relative;
        z-index: 2;
        img{
            width: 150px;
            max-width: 100%;
        }
    }
    .menu-toggler{
        position: absolute;
        background: transparent;
        border: 0;
        width: 35px;
        top: 10px;
        cursor: pointer;
        z-index: 2;
        padding: 0;

        display: none;


        #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
            width: 100%;
            height: 24px;
            position: relative;
            margin: 0 auto;
            padding: 0;
            -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;
                width: 100%;
                background: #3bd24f;
                border-radius: 10px;
                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 {
                    -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: 10px;
                        -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: 10px;
                        -webkit-transform: rotate(-140deg);
                        -moz-transform: rotate(-140deg);
                        -o-transform: rotate(-140deg);
                        transform: rotate(-140deg);
                    }
                }
            }
        }
    }
    .menu{
        position: relative;
        z-index: 2;
        color: #fff;
        width: Calc(100% - 78px);
        text-align: right;
        vertical-align: middle;
        margin: 0;
        float: unset;
        padding: 0;
        display: inline-flex;
        align-items: center;
        .botao{
            width: 200px
        }
        .menu-nav{
            list-style: none;
            margin: 0;
            width: Calc(100% - 200px);
            text-align: center;
            .dropdown{
                display: inline-block;
                margin: 0 16px;
                color: #fff;
                a{
                    font-weight: 600;
                    font-size: 14px;
                    line-height: 120%;
                    color: #374151;
                    text-decoration: none !important;
                    cursor: pointer;
                }

                & a:hover,
                &.active > a,
                &.active:hover > a {
                    color: #11D452;
                    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,
                    li.active > a,
                    li.active:hover > a {
                        color: #11D452;
                        text-decoration: none !important;
                        background-color: transparent;
                    }

                }

            }
        }
    }

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

    @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: 8px;
            }
            .menu {
                width: 100%;
                padding: 40px 0 60px 0;
                text-align: left;
                display: none;
                max-height: Calc(100vh - 97px);
                overflow-y: auto;

                .botao{
                    width: 100%;
                    text-align: center;
                    margin-top: 40px;
                }
                .menu-nav {
                    padding: 0;
                    width: 100%;
                    .dropdown {
                        display: block;
                        width: 100%;
                        margin: 30px 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: 100px;
    .holder_slider{
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        img{
            width: 100%;
        }

        .single_banner,
        .single_banner .holder_content,
        .single_banner .holder_content_img{
            width: 100%;
            height: 600px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
            background-color: #102216;
            &:after{
                content: '';
                position: absolute;
                left: 0px;
                right: 0px;
                top: 0px;
                bottom: 0px;
                background: linear-gradient(90deg, #102216 0%, rgba(16, 34, 22, 0.8) 50%, rgba(16, 34, 22, 0) 100%);
                z-index: 1;
            }
        }

        .iframe_holder{
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
        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: 50%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            left: 0;
            right: 0;
            text-align: left;
            margin: auto;
            z-index: 2;

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

            .holder_conteudo{
                display: flex;
                flex-wrap: wrap;
                align-items: flex-end;
                .texto{
                    width: 60%;
                }
                .logos{
                    width: 40%;
                }
            }
            .label{
                display: inline-flex;
                align-items: center;
                padding: 4px 12px;
                background: rgba(17, 212, 82, 0.2);
                border: 1px solid rgba(17, 212, 82, 0.3);
                backdrop-filter: blur(6px);
                border-radius: 9999px;
                font-style: normal;
                font-weight: 700;
                font-size: 12px;
                line-height: 16px;
                letter-spacing: 0.6px;
                text-transform: uppercase;
                color: #11D452;
                margin-bottom: 25px;
                gap: 5px;
            }
            .botoes{
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                margin-top: 40px;
            }
            .descricao{
                font-weight: 400;
                font-size: 20px;
                line-height: 120%;
                color: #D1D5DB;
                max-width: 670px;
                h1, h2{
                    max-width: 592px;
                    font-weight: 900;
                    font-size: 72px;
                    line-height: 120%;
                    letter-spacing: -1.8px;
                    color: #FFFFFF;
                    span{
                        color: #11D452 !important;
                    }
                }
            }

            .logos{
                display: inline-flex;
                justify-content: right;
                align-items: center;
                gap: 30px;
                .single_logo{
                    img{
                        max-width: 125px;
                        max-height: 125px;
                        object-fit: contain;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .holder_slider {
                .conteudo {
                    .descricao {
                        h1, h2 {
                            font-size: 68px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{

            .holder_slider {
                .conteudo {
                    .holder_conteudo{
                        .texto{
                            width: 100%;
                        }
                        .logos{
                            width: 100%;
                        }
                    }
                    .descricao {
                        text-align: center;
                        max-width: 100%;
                        font-size: 18px;
                        h1, h2 {
                            font-size: 52px;
                            margin: 0 auto 15px auto;
                        }
                    }
                    .texto{
                        text-align: center;
                    }
                    .botoes{
                        justify-content: center;
                    }
                    .logos{
                        margin-top: 50px;
                        gap: 20px;
                        justify-content: center;
                        .single_logo{
                            img{
                                max-width: 90px;
                                max-height: 70px;
                                object-fit: contain;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px){
        &{

            .holder_slider {
                .conteudo {
                    .descricao {
                        font-size: 16px;
                        h1, h2 {
                            font-size: 42px;
                            max-width: 500px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        &{

            .holder_slider {
                .conteudo {
                    .descricao {
                        font-size: 16px;
                        h1, h2 {
                            font-size: 38px;
                        }
                    }
                }
            }
        }
    }
}


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

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

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


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

    .bloco{
        padding: 40px 0;
    }
}


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


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


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

footer{
    background: #102216;
    .footer{
        position: relative;
        width: 100%;
        padding: 50px 0;

        &,
        p,
        label,
        a{
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 120%;
            color: #9CA3AF;
        }

        .holder_footer{
            display: flex;
            flex-wrap: wrap;
            margin: 0 -25px;
            .coluna{
                width: Calc(100% / 4);
                padding: 0 25px;
                &:first-child{
                    padding-right: 80px;

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

                    @media screen and (max-width: 1400px){
                        &{
                            padding-right: 40px;
                        }
                    }
                    @media screen and (max-width: 1200px){
                        &{
                            padding-right: 20px;
                        }
                    }
                    @media screen and (max-width: 567px){
                        &{
                            padding-right: 0;
                        }
                    }
                }

                @media screen and (max-width: 992px){
                    &{
                        width: 50%;
                        padding: 25px;
                    }
                }
                @media screen and (max-width: 567px){
                    &{
                        width: 100%;
                        padding: 25px 0;
                    }
                }
            }
            .logo{
                margin-bottom: 15px;
                img{
                    width: 60px;
                    max-width: 100%;
                }
            }
            h3{
                font-weight: 700;
                font-size: 16px;
                line-height: 120%;
                color: #FFFFFF;
            }
            a{
                text-decoration: none;
            }
            .links{
                margin-top: 15px;
                .single_link{
                    display: flex;
                    gap: 10px;
                    padding: 5px 0;
                    align-items: center;
                    &.livro_reclamacoes{
                        margin-top: 15px;
                    }
                }
            }
            .restricao_etaria{
                padding: 14px 16px 16px;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 8px;
                .cabecalho{
                    display: flex;
                    gap: 10px;
                    margin-bottom: 10px;
                    align-items: center;
                    .titulo{
                        font-weight: 700;
                        font-size: 12px;
                        line-height: 120%;
                        text-transform: uppercase;
                        color: #F87171;
                        margin: 0;
                    }
                }
            }

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

        .redes_sociais{
            display: flex;
            gap: 20px;
            margin-top: 15px;
            a{
                text-decoration: none;
            }
            .single_rede{
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #fff;
                font-size: 20px;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                &:hover{
                    background: #11D452;
                    color: #102216;
                }
            }
        }
    }

    .lower_footer {
        padding: 0 0 30px 0;
        hr{
            border-top: 1px solid #1F2937;
            margin: 0 0 30px;
            display: block;
            opacity: 1;
        }
        .holder_lower_footer{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            @media screen and (max-width: 640px){
                &{
                    justify-content: center;
                }
            }
        }
        &,
        p,
        label,
        a{
            font-weight: 400;
            font-size: 12px;
            line-height: 120%;
            color: #6B7280;
        }
    }
}



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

}


.politica_privacidade {
    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;
            }
        }
    }
}