@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;
    color: #374151;
}
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;
            }
        }
    }
    &.v3{
        background: #E5E7EB;
        border: 1px solid #E5E7EB;
        color: #102216;
        svg path{
            fill: #102216;
        }
        &:hover{
            background: #11D452;
            svg path{
                fill: #11D452;
            }
        }
    }
}

.cabecalho{
    margin-bottom: 25px;
}
.titulo{
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 150%;
    color: #102216;
    margin-bottom: 15px;
    margin-top: 0;

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

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

    @media screen and (max-width: 767px){
        &{
            font-size: 25px;
        }
    }
}
.subtitulo{
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #11D452;
}
.descricao{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #4B5563;
    @media screen and (max-width: 1200px){
        &{
            font-size: 16px;
        }
    }
}
.bg_lightgreen{
    background: #F6F8F6;
}
.text-grey{
    color: #D1D5DB;
}


/* Bloqueia o scroll quando o pop-up está ativo */
body.age-gate-active {
    overflow: hidden;
}

/* Fundo escuro que bloqueia o site */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.95); /* Fundo muito escuro e baço */
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* Esconde o pop-up quando o utilizador for validado */
#age-gate-overlay.age-gate-hidden {
    display: none;
}

/* A caixa principal do aviso */
.age-gate-modal {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
}

.age-gate-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.age-gate-modal h2 {
    color: #102216;
    margin-top: 0;
    font-size: 24px;
}

/* Botões */
.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mensagem de Erro (escondida por defeito) */
.age-gate-error-message {
    display: none;
    margin-top: 20px;
    color: #b91c1c;
    font-weight: bold;
    font-size: 14px;
    background-color: #fee2e2;
    padding: 10px;
    border-radius: 4px;
}

/*==================================================================================================*/
/*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*/
/*==================================================================================================*/
.fakebanner{
    height: 100px;
}

.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;
                transform: translateY(30px);

                .single_logo{
                    img{
                        max-width: 95px;
                        max-height: 90px;
                        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 {

                .single_banner,
                .single_banner .holder_content,
                .single_banner .holder_content_img {
                    height: 430px;
                }

                .conteudo {
                    .descricao {
                        font-size: 16px;
                        h1, h2 {
                            font-size: 32px;
                            line-height: 1.2;
                        }
                    }

                    .botoes{
                        margin-top: 25px;
                    }

                    .logos{
                        margin-top: 25px;
                        transform: translateY(0px);
                    }

                }
            }
        }
    }
}


/*==================================================================================================*/
/*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*/
/*==================================================================================================*/
.cards{
    .holder_cards{
        display: flex;
        flex-wrap: wrap;
        .single_card{
            width: Calc(100% / 4);
            padding: 12px;
            .holder_single_card{
                padding: 24px;
                background: #F6F8F6;
                border: 1px solid #F3F4F6;
                border-radius: 12px;
                height: 100%;
                .icon{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    width: 48px;
                    height: 48px;
                    background: rgba(17, 212, 82, 0.1);
                    border-radius: 8px;
                    margin-bottom: 15px;
                    img{
                        max-width: 90%;
                    }
                }
                .nome{
                    font-weight: 700;
                    font-size: 24px;
                    line-height: 150%;
                    color: #102216;
                }
                .descricao{
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 150%;
                    color: #6B7280;

                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .holder_cards{
                .single_card{
                    padding: 10px;
                    .holder_single_card{
                        padding: 15px;
                        .nome{
                            font-size: 20px;
                        }
                        .descricao{
                            font-size: 14px;

                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .holder_cards{
                .single_card{
                    width: 50%;
                    .holder_single_card{
                        padding: 15px;
                        .nome{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        &{
            .holder_cards{
                .single_card{
                    width: 100%;
                    padding: 10px 0;
                    .holder_single_card{
                        padding: 15px;
                        .nome{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
}

.quem_somos{

    .holder_quem_somos{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        .esquerda{
            width: 50%;
            padding-right: 30px;
            .imagem{
                width: Calc(100% - 24px);
                padding-bottom: 24px;
                position: relative;
                img{
                    width: 100%;
                    border-radius: 16px;
                    z-index: 1;
                    position: relative;
                }
                &:before{
                    content: '';
                    width: 100%;
                    height: Calc(100% - 24px);
                    right: -24px;
                    bottom: 0;
                    border: 2px solid #11D452;
                    border-radius: 16px;
                    position: absolute;
                    z-index: 0;
                }
            }
        }
        .direita{
            width: 50%;
            padding-left: 30px;
        }
        .equipa{
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            margin-top: 40px;
            .frase{
                font-weight: 500;
                font-size: 14px;
                line-height: 120%;
                color: #6B7280;
            }
        }
    }

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

                .esquerda{
                    width: 100%;
                    padding-right: 0;
                }
                .direita{
                    width: 100%;
                    padding-left: 0;
                    margin-top: 40px;
                }
                .equipa{
                    margin-top: 30px;
                }
            }
        }
    }

    .holder_quem_somos.missao_visao{
        padding: 64px;
        background: #102216;
        border-radius: 24px;
        position: relative;
        .icon_svg{
            position: absolute;
            top: 64px;
            right: 64px;
            width: 133px;
            opacity: 0.1;
            max-width: 20%;
            svg{
                width: 100%;
                height: auto;

            }
        }
        .holder_missao_visao{
            display: flex;
            flex-wrap: wrap;
            margin: 15px -15px 0 -15px;
            .single_missao_visao{
                width: 50%;
                padding: 15px;
                .holder_single_missao_visao{
                    display: flex;
                    flex-wrap: wrap;
                    .icon{
                        display: inline-flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        background: rgba(17, 212, 82, 0.2);
                        border-radius: 9999px;
                    }
                    .conteudo{
                        width: Calc(100% - 40px);
                        padding-left: 15px;
                        .nome{
                            font-weight: 700;
                            font-size: 16px;
                            line-height: 150%;
                            color: #FFFFFF;
                        }
                        .descricao{
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 150%;
                            color: #9CA3AF;
                        }
                    }
                }
            }
        }
        .cards{
            .holder_cards{
                margin: 0 -10px;
                .single_card{
                    width: 50%;
                    padding: 10px;
                    .holder_single_card{
                        background: rgba(255, 255, 255, 0.05);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        backdrop-filter: blur(2px);
                        .nome {
                            font-weight: 900;
                            font-size: 30px;
                            color: #11D452;
                        }
                        .descricao{
                            font-weight: 700;
                            font-size: 12px;
                            line-height: 16px;
                            text-transform: uppercase;
                            color: #9CA3AF;
                        }
                    }
                }
            }
            @media screen and (max-width: 1400px) {
                &{
                    .holder_cards{
                        .single_card{
                            .holder_single_card{
                                .nome {
                                    font-size: 25px;
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 1200px) {
                &{
                    .holder_cards{
                        .single_card{
                            .holder_single_card{
                                .nome {
                                    font-size: 22px;
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 567px) {
                &{
                    .holder_cards{
                        .single_card{
                            .holder_single_card{
                                .nome {
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
            }
        }


        @media screen and (max-width: 1400px) {
            &{
                padding: 54px;
                .icon_svg{
                    top: 54px;
                    right: 54px;
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                padding: 44px;
                .icon_svg{
                    top: 44px;
                    right: 44px;
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                padding: 34px;
                .icon_svg{
                    top: 34px;
                    right: 34px;
                }

                .holder_missao_visao{
                    display: flex;
                    flex-wrap: wrap;
                    margin: 15px -15px 0 -15px;
                    .single_missao_visao{
                        width: 50%;
                        padding: 15px;
                        .holder_single_missao_visao{
                            .conteudo{
                                .nome{
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px) {
            &{
                .holder_missao_visao{
                    margin: 15px 0 0;
                    .single_missao_visao{
                        width: 100%;
                        padding: 15px 0;
                    }
                }
            }
        }
        @media screen and (max-width: 450px) {
            &{
                padding: 34px 24px;
                .icon_svg{
                    top: 34px;
                    right: 24px;
                }
            }
        }
    }
}

.servicos.cards{
    .holder_cards{
        margin-top: 64px;
        .single_card{
            width: Calc(100% / 3);
            .holder_single_card{
                background: #FFFFFF;
                .icon{
                    border-radius: 50%;
                    background: #DCFCE7;
                }
                .nome{
                    font-size: 20px;
                }
            }
            &:last-child{
                .holder_single_card{
                    .icon{
                        background: #FEF9C3;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 992px){
        &{
            .holder_cards{
                margin-top: 40px;
                .single_card{
                    width: Calc(100% / 2);
                    .holder_single_card{
                        .nome{
                            font-size: 18px;
                        }
                    }
                    &:last-child{
                        width: 100%;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        &{
            .holder_cards{
                .single_card{
                    width: 100%;
                }
            }
        }
    }
}

.produtos{
    .holder_cabecalho{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;

        .frase{
            width: 40%;
            text-align: right;
            span{
                display: inline-flex;
                margin-left: auto;
                padding: 6px 16px;
                background: #FEE2E2;
                border: 1px solid #FECACA;
                border-radius: 8px;
                font-weight: 700;
                font-size: 12px;
                line-height: 16px;
                text-transform: uppercase;
                color: #991B1B;
                gap: 8px;
            }
        }
        .cabecalho{
            width: 60%;
            margin-bottom: 0;
        }

        @media screen and (max-width: 767px){
            &{
                .cabecalho {
                    width: 100%;
                    margin-bottom: 25px;
                }
                .frase {
                    width: 100%;
                    text-align: left;
                }
            }
        }
    }
    .holder_produtos{
        display: flex;
        flex-wrap: wrap;
        margin: 40px -12px 0 -12px;
        .single_produto{
            width: Calc(100% / 3);
            padding: 12px;
            .holder_single_produto{
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                &:after{
                    content: '';
                    position: absolute;
                    left: 0px;
                    right: 0px;
                    top: 0px;
                    bottom: 0px;
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
                    opacity: 0.9;
                    z-index: 0;
                }
                .imagem{
                    position: relative;
                    padding-bottom: 125%;
                    overflow: hidden;
                    z-index: 1;
                    img{
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        object-fit: cover;
                    }
                }
                .conteudo{
                    position: absolute;
                    padding: 24px;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    z-index: 1;
                    .nome{
                        font-weight: 700;
                        font-size: 20px;
                        color: #FFFFFF;
                        margin: 0;
                    }
                    .descricao{
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 150%;
                        display: flex;
                        align-items: center;
                        color: #D1D5DB;
                    }
                }
            }
        }

        @media screen and (max-width: 992px){
            &{
                margin: 40px -8px 0;
                .single_produto{
                    padding: 8px;
                    .holder_single_produto{
                        .conteudo{
                            padding: 15px;
                            .nome{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px){
            &{
                margin: 40px -8px 0;
                .single_produto{
                    padding: 8px;
                    .holder_single_produto{
                        .conteudo{
                            padding: 15px;
                            .nome{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                margin: 40px 0 0;
                .single_produto{
                    width: 100%;
                    padding: 10px 0;
                    .holder_single_produto{
                        .conteudo{
                            padding: 15px;
                            .nome{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.jogo_responsavel{
    .holder_jogo_moderado{
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        .single_jogo_moderado{
            .holder_single_jogo_moderado{
                display: inline-flex;
                flex-direction: row;
                align-items: center;
                padding: 8px 16px;
                gap: 8px;
                background: #FFFFFF;
                border: 1px solid #E5E7EB;
                border-radius: 9999px;
                .nome{
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 150%;
                    color: #102216;
                    margin: 0;
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                justify-content: center;
            }
        }
    }
    .cards{
        .holder_cards{
            .single_card{
                width: 50%;
                padding: 10px;
                .holder_single_card{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    background: #FFFFFF;
                    border: 1px solid #F3F4F6;
                    border-radius: 16px;
                    padding-bottom: 100%;
                    height: 0;
                    position: relative;
                    .conteudo{
                        position: absolute;
                        padding: 24px;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%,-50%);
                        -moz-transform: translate(-50%,-50%);
                        -webkit-transform: translate(-50%,-50%);
                        width: 100%;
                        text-align: center;
                    }
                    .icon{
                        background: transparent;
                        margin: 0 auto 15px auto;
                    }
                    .nome{
                        font-weight: 700;
                        font-size: 14px;
                        line-height: 150%;
                        text-transform: uppercase;
                        color: #102216;
                    }
                }
            }
        }

        @media screen and (max-width: 567px){
            &{
                .holder_cards{
                    .single_card{
                        padding: 5px;
                        .holder_single_card{
                            .conteudo{
                                padding: 14px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.parceiros{
    .subtitulo{
        color: #9CA3AF;
    }
    .holder_parceiros{
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 32px;
        row-gap: 52px;

        .single_logo{
            .logo{
                position: relative;

                .legenda{
                    font-size: 12px;
                    max-width: 160px;
                    text-align: center;
                    margin-top: 14px;
                    position: absolute;
                    left: Calc(50% - 80px);
                }

                img{
                    max-height: 85px;
                }
            }
        }

        @media screen and (max-width: 575px) {
            &{
                flex-direction: column;
                row-gap: 32px;

                .legenda{
                    position: relative !important;
                    left: unset !important;
                    display: block;
                    margin: 14px auto 0;
                }
            }
        }

    }
}

.lojas{
    .holder_lojas{
        display: flex;
        flex-wrap: wrap;
        margin: 50px -15px 0 -15px;
        .single_loja{
            width: Calc(100% / 3);
            padding: 15px;
            .holder_single_loja{
                background: #F6F8F6;
                border: 1px solid #F3F4F6;
                border-radius: 12px;
                overflow: hidden;
                height: 100%;
                .imagem{
                    position: relative;
                    padding-bottom: 65%;
                    width: 100%;
                    img{
                        position: absolute;
                        object-fit: cover;
                        width: 100%;
                        height: 100%;
                        top: 0;
                        left: 0;
                        z-index: 0;
                    }
                    .label{
                        position: absolute;
                        z-index: 1;
                        background: rgba(255, 255, 255, 0.9);
                        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
                        border-radius: 9999px;
                        font-weight: 700;
                        font-size: 12px;
                        line-height: 16px;
                        display: flex;
                        align-items: center;
                        color: #16A34A;
                        top: 12px;
                        right: 12px;
                        padding: 6px 8px;
                        gap: 6px;
                    }
                }
                .conteudo{
                    padding: 24px;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 23px;
                    color: #4B5563;
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    a{
                        color: inherit;
                        text-decoration: none;
                        &:hover{
                            text-decoration: underline;
                        }
                    }
                    .info{
                        width: 100%;
                        .nome{
                            font-weight: 900;
                            font-size: 20px;
                            line-height: 150%;
                            color: #102216;
                        }
                        .texto{
                            min-height: 130px;
                        }
                    }
                    .bottom{
                        width: 100%;
                        margin-top: 15px;
                    }
                    .contactos{
                        min-height: 130px;
                        .single_contacto{
                            padding: 5px 0;
                            display: flex;
                            gap: 15px;
                            .icon{
                                width: 20px;
                            }
                        }
                    }
                    .mapa{
                        margin-top: 10px;
                        padding-top: 15px;
                        border-top: 1px solid #E5E7EB;
                        a{
                            font-weight: 700;
                            font-size: 14px;
                            line-height: 20px;
                            color: #11D452;
                            text-transform: uppercase;
                            display: inline-flex;
                            gap: 10px;
                            transition: all .3s ease-in-out;
                            -moz-transition: all .3s ease-in-out;
                            -webkit-transition: all .3s ease-in-out;
                            align-items: center;
                            &:hover{
                                gap: 15px;
                                text-decoration: none;
                            }
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .single_loja{
                    .holder_single_loja{
                        .conteudo{
                            .info{
                                .texto{
                                    min-height: 170px;
                                }
                            }
                            .contactos{
                                min-height: 150px;
                            }
                        }
                    }
                }

            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .single_loja{
                    .holder_single_loja{
                        .conteudo{
                            .info{
                                .texto{
                                    min-height: 180px;
                                }
                            }
                            .contactos{
                                min-height: 150px;
                            }
                        }
                    }
                }

            }
        }
        @media screen and (max-width: 992px) {
            &{
                justify-content: center;
                .single_loja{
                    width: 50%;
                    .holder_single_loja{
                        .conteudo{
                            .info{
                                .texto{
                                    min-height: 180px;
                                }
                            }
                            .contactos{
                                min-height: 150px;
                            }
                        }
                    }
                }

            }
        }
        @media screen and (max-width: 767px) {
            &{
                justify-content: center;
                margin: 40px 0 0;
                flex-wrap: wrap;
                .single_loja{
                    width: 100%;
                    padding: 15px 0;
                    .holder_single_loja{
                        .conteudo{
                            .info{
                                .texto{
                                    min-height: unset;
                                }
                            }
                            .contactos{
                                min-height: unset;
                            }
                        }
                    }
                }

            }
        }
    }
    .botao{
        margin-top: 50px;
        text-align: center;
    }
}

.contactos{
    .holder_zona_contactos{
        display: flex;
        flex-wrap: wrap;
        .coluna{
            width: 50%;
            padding: 20px;
        }

        .holder_formulario{
            background: #FFFFFF;
            border: 1px solid #F3F4F6;
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 40px;

            .single_input{
                margin-bottom: 15px;
                label{
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    color: #374151;
                    width: 100%;
                }
                .input{
                    padding: 13.5px 12px;
                    background: #F9FAFB;
                    border: 1px solid #D1D5DB;
                    border-radius: 8px;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 19px;
                    color: #6B7280;
                    width: 100%;
                }
                textarea{
                    resize: none;
                }
                .btn1{
                    width: 100%;
                }
                &.rgpd{
                    &, label, a{
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 16px;
                        color: #6B7280;
                    }
                }
            }
            .alert{
                font-size: 14px;
            }
            .logo{
                width: 285px;
                max-width: 100%;
                display: block;
                margin: 71px auto 0 auto;
            }
        }

        .holder_contactos{
            display: flex;
            flex-wrap: wrap;
            .single_contacto{
                width: 100%;
                padding: 10px;
                &:nth-child(1),
                &:nth-child(2){
                    width: 50%;
                }
                .holder_single_contacto{
                    background: #FFFFFF;
                    border: 1px solid #F3F4F6;
                    border-radius: 12px;
                    padding: 25px;
                    height: 100%;
                    .icon{
                        margin-bottom: 12px;
                    }
                    .nome{
                        font-weight: 700;
                        font-size: 16px;
                        line-height: 24px;
                        color: #102216;
                    }
                    .contacto{
                        margin-top: 4px;
                        &, a{
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 20px;
                            color: #6B7280;
                            text-decoration: none;
                        }
                        a:hover{
                            text-decoration: underline;
                        }
                    }
                    .more_info{
                        font-size: 12px;
                        line-height: 16px;
                        color: #9CA3AF;
                        margin-top: 4px;
                    }
                }

                .mapa{
                    padding-bottom: 85%;
                    height: 0;
                    border-radius: 12px;
                    position: relative;
                    overflow: hidden;
                    iframe{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        border: 0;
                    }
                }
            }
        }


        @media screen and (max-width: 992px){
            &{
                .coluna{
                    width: 100%;
                    padding: 20px 0;
                }
            }
        }
        @media screen and (max-width: 567px){
            &{

                .holder_contactos{
                    .single_contacto{
                        padding: 10px 0;
                        &:nth-child(1),
                        &:nth-child(2){
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
}

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

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

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

        &,
        p,
        label,
        a,
        .descricao{
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            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: 15px 0;
                    }
                }
            }
            .logo{
                margin-bottom: 15px;
                img{
                    width: 60px;
                    max-width: 100%;
                }
            }
            h3{
                font-weight: 700;
                font-size: 18px;
                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,
        .descricao{
            font-weight: 400;
            font-size: 12px;
            line-height: 120%;
            color: #6B7280;
        }
    }
}



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

}


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