@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: "Archivo", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #4D4D4D;
}

body.open{
    overflow: hidden;
}


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

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


.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*/
/*==================================================================================================*/

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    padding: 30px 0;
    width: 100%;
    z-index: 6;
    &.scroll{
        box-shadow: 0px 0px 11px rgb(16 96 144 / 30%);
    }
    .navbar-header {
        float: unset;
        width: 207px;
        display: inline-block;
        img{
            width: 100%;
            max-width: 100%;
        }
    }
    .menu-toggler{
        position: absolute;
        background: transparent;
        border: 0;
        width: 34px;
        top: 10px;
        right: 2%;
        cursor: pointer;
        padding: 0;
        display: none;

        #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
            width: 32px;
            height: 22px;
            position: relative;
            margin: 0 auto;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;

            span {
                display: block;
                position: absolute;
                height: 3px;
                width: 100%;
                background: #106090;
                border-radius: 0;
                opacity: 1;
                left: 0;
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-transition: .25s ease-in-out;
                -moz-transition: .25s ease-in-out;
                -o-transition: .25s ease-in-out;
                transition: .25s ease-in-out;
                &:nth-child(1) {
                    top: 0px;
                }
                &:nth-child(2) {
                    top: 8px;
                }
                &:nth-child(3) {
                    top: 16px;
                }
            }
            &.open{
                span {
                    background: #106090;
                    -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: 8px;
                        -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: 8px;
                        -webkit-transform: rotate(-140deg);
                        -moz-transform: rotate(-140deg);
                        -o-transform: rotate(-140deg);
                        transform: rotate(-140deg);
                    }
                }
            }
        }
    }
    .menu{
        display: inline-block;
        margin: 0;
        float: unset;
        color: #fff;
        width: Calc(100% - 215px);
        text-align: right;
        vertical-align: middle;
        .menu-nav{
            list-style: none;
            margin: 0;
            .dropdown{
                display: inline-block;
                margin: 0 15px;
                &, a{
                    cursor: pointer;
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 120%;
                    color: #106090;
                    text-decoration: none !important;
                }
                &.single_menu a{
                    position: relative;
                    &:before{
                        content: '';
                        position: absolute;
                        width: 0;
                        background: #106090;
                        height: 2px;
                        left: 50%;
                        transform: translateX(-50%);
                        -moz-transform: translateX(-50%);
                        -webkit-transform: translateX(-50%);
                        top: 100%;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                }

                #navbarDropdown_pesquisa{
                    i{
                        font-size: 16px;
                    }
                }
                .dropdown-toggle{
                    display: inline-flex;
                    gap: 7px;
                    align-items: center;
                    i{
                        font-size: 14px;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }

                    &.show:not(#navbarDropdown_pesquisa){
                        i{
                            transform: rotate(180deg);
                            -moz-transform: rotate(180deg);
                            -webkit-transform: rotate(180deg);
                        }
                    }
                    &:after{
                        display: none;
                    }
                }
                a:hover,
                &.active > a,
                &.active:hover > a {
                    text-decoration: none !important;
                    &:before{
                        width: 100%;
                    }
                }

                &.language {
                    text-transform: uppercase;
                    display: inline-flex;
                    gap: 15px;
                    .single_idioma{
                        position: relative;
                        &:not(:last-child):before{
                            content: '';
                            position: absolute;
                            width: 2px;
                            background: #106090;
                            height: 100%;
                            top: 50%;
                            transform: translateY(-50%);
                            -moz-transform: translateY(-50%);
                            -webkit-transform: translateY(-50%);
                            right: -9px;
                        }
                        a.active{
                            color: #000;
                        }
                    }
                }
                .dropdown-menu {
                    background-color: #FAFAFA;
                    cursor: default;
                    text-align: left;
                    color: #000;
                    top: 5px;
                    border-radius: 12px;
                    border: none;
                    padding: 30px 50px;
                    min-width: 400px;
                    max-width: 100vw;
                    margin-top: 30px !important;
                    &.produtos{
                        width: 780px;
                    }
                    .holder_submenu{
                        flex-wrap: wrap;
                        gap: 40px;
                        .coluna{
                            width: 200px;
                        }
                    }
                    .single_holder_submenu{
                        border-top: 1px solid rgba(74, 71, 65, 0.2);
                        padding-top: 16px;
                        margin-bottom: 30px;
                    }

                    .titulo{
                        &, h3{
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 700;
                            font-size: 16px;
                            line-height: 120%;
                            color: #106090;
                            margin-bottom: 15px;
                        }
                    }
                    .single_submenu{
                        padding: 3px 0;
                        &, a{
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 400;
                            font-size: 15px;
                            line-height: 120%;
                            color: #000000;
                        }
                        a{
                            &:before{
                                display: none;
                            }
                        }
                        a:hover,
                        &.active > a,
                        &.active:hover > a {
                            color: #106090;
                            font-weight: 700;
                            text-decoration: none !important;
                        }
                    }
                }

                &.pesquisa{
                    .dropdown-menu{
                        .single_input{
                            width: 100%;
                            position: relative;
                            input{
                                width: 100%;
                                border: 1px solid #E5E5E5;
                                border-radius: 12px;
                                padding: 8px 40px 8px 20px;
                                font-family: 'Assistant', sans-serif;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 15px;
                            }
                            button{
                                position: absolute;
                                top: 50%;
                                transform: translateY(-50%);
                                -moz-transform: translateY(-50%);
                                -webkit-transform: translateY(-50%);
                                right: 7px;
                                background: transparent;
                                border: none;
                                color: #106090;
                            }
                        }
                    }
                }

            }
        }

    }


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

    }

    @media screen and (max-width: 1200px) {
        &{
            .navbar-header {
                width: 170px;
            }
            .menu {
                width: Calc(100% - 178px);
                .menu-nav {
                    .dropdown {
                        &, a {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {

        &{
            .navbar-header {
                float: unset;
                display: inline-block;
                width: Calc(100% - 39px);
                img{
                    width: 150px;
                }
            }
            .menu {
                width: 100%;
                padding: 40px 0 150px 0;
                text-align: left;
                display: none;
                max-height: 100vh;
                overflow-y: auto;
                margin-top: 30px;

                .menu-nav {
                    padding: 0;

                    .dropdown {
                        display: block;
                        width: 100%;
                        margin: 30px 0;

                        &, a{
                            font-size: 17px;
                        }

                        .dropdown-menu {
                            position: relative !important;
                            inset: unset !important;
                            margin: 20px 0 0 0 !important;
                            transform: unset !important;
                            min-width: unset;
                            max-width: 100%;
                            padding: 20px;
                        }
                    }

                }
            }
            .menu-toggler{
                display: inline-block;
                position: relative;
                top: 7px;
            }
        }
    }
}



/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/
.fakebanner{
    height: 110px;

    @media screen and (max-width: 992px) {
        &{
            height: 96px;
        }
    }
}

.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    .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: 715px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
        }
        .single_banner .iframe_holder{
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
        .single_banner 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;

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

            .holder_conteudo{
                width: 545px;
                max-width: 100%;
                &.direita{
                    margin-left: auto;
                }
                &.centro{
                    margin: 0 auto;
                    text-align: center;
                }
            }

            .nome{
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 59px;
                line-height: 110%;
                color: #FFFFFF;
            }
            .descricao{
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 25px;
                line-height: 160%;
                color: rgba(250, 250, 250, 0.980392);
                margin-top: 25px;
            }
            .botao{
                margin-top: 40px;
                display: inline-flex;
                gap: 24px;
                flex-wrap: wrap;
                justify-content: center;
                a{
                    text-decoration: none;
                }
            }

        }
    }
    .zona_bullets{
        position: absolute;
        bottom: 55px;
        right: 0;
        width: 100%;
        z-index: 2;
        .custom-dots-container{
            margin-left: auto;
            width: 545px;
            max-width: 100%;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            .dot-number{
                pointer-events: auto !important;
                cursor: pointer !important;
                z-index: 999;
                position: relative;
                background: rgba(250, 250, 250, 0.50);
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 10px;
                line-height: 120%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #000000;
                width: 34px;
                height: 34px;
                border-radius: 50%;
                &.active{
                    background: #fff;
                }
            }
        }
    }

    &.interno{
        .holder_slider{
            .single_banner,
            .single_banner .holder_content,
            .single_banner .holder_content_img{
                height: 384px;
            }
            .conteudo{
                .holder_conteudo{
                    width: 100%;
                    max-width: 100%;
                    margin: 0 auto;
                    text-align: center;
                }
            }
        }
    }
    @media screen and (max-width: 1500px) {
        &{
            .holder_slider{
                .single_banner,
                .single_banner .holder_content,
                .single_banner .holder_content_img{
                    height: 615px;
                }
            }
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            .holder_slider{
                .conteudo{
                    .holder_conteudo{
                        width: 460px;
                    }

                    .nome{
                        font-size: 49px;
                    }
                    .descricao{
                        font-size: 20px;
                    }

                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .holder_slider{
                .conteudo{
                    .holder_conteudo{
                        width: 380px;
                    }

                    .nome{
                        font-size: 39px;
                    }
                    .descricao{
                        font-size: 16px;
                    }

                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .holder_slider{
                .conteudo{
                    .holder_conteudo{
                        width: 380px;
                        margin: 0 auto;
                        text-align: center;
                    }

                    .nome{
                        font-size: 35px;
                    }

                }
            }
            .zona_bullets {
                .custom-dots-container {
                    width: 100%;
                    justify-content: center;
                }
            }
        }
    }

}


/*==================================================================================================*/
/*BOTÕES*/
/*==================================================================================================*/

.button{
    padding: 12px 32px;
    background: #F9FAF9;
    border: 1px solid rgba(145, 149, 146, 0.15);
    border-radius: 9999px;
    font-family: 'Assistant', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #3B3B3B;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    svg path, svg rect{
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }
    &:hover{
        background: #106090;
        color: #fff;
        svg path, svg rect{
            stroke: #fff;
        }
    }
    &.v2{
        background: #106090;
        color: #fff;
        border: 1px solid #106090;
        &:hover{
            background: transparent;
            color: #106090;
            svg path, svg rect{
                stroke: #106090;
            }
        }
    }

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

.bg_lightgray{
    background: #FAFAFA;
}
.bg_lightblue{
    background: #F3F4F6;
}
.bg_lightblue2{
    background: #D6E4EC;
}
.bg_blue{
    background: #106090;
}
/*==================================================================================================*/
/*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*/
/*==================================================================================================*/

#homepage{
    .cabecalho{
        .titulo{
            font-family: 'Assistant', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 50px;
            line-height: 120%;
            color: #000000;
            text-align: center;
            a{
                text-decoration: none;
                color: inherit;
            }
        }
        .descricao{
            font-family: 'Assistant';
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 160%;
            text-align: center;
            color: #5C615F;
            margin-top: 25px;
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            .cabecalho{
                .titulo{
                    font-size: 40px;
                }
                .descricao{
                    font-size: 16px;
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .cabecalho{
                .titulo{
                    font-size: 35px;
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .cabecalho{
                .titulo{
                    font-size: 30px;
                }
            }
        }
    }
    .explorar_catalogo{
        .holder_conteudo{
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
            .single_pagina{
                width: Calc(100% / 4);
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 120%;
                color: #106090;
                padding: 15px;
                a{
                    color: inherit;
                    text-decoration: none;
                    &:hover{
                        text-decoration: underline;
                    }
                }
                h3{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 30px;
                    line-height: 140%;
                    color: #0C1310;
                }
                ul{
                    list-style: none;
                    margin: 0;
                    padding-left: 13px;
                    li{
                        position: relative;
                        padding: 3px 0;
                        &:before{
                            content: '\f054';
                            position: absolute;
                            left: -15px;
                            top: 4px;
                            font-family: 'Font Awesome 6 Free';
                            font-weight: 900;
                            font-size: 13px;
                        }
                    }
                }
                .imagem{
                    width: 100%;
                    img{
                        width: 100%;
                    }
                }
            }
        }
        .botao{
            margin-top: 15px;
            text-align: center;
        }

        @media screen and (max-width: 1400px) {
            &{
                .holder_conteudo{
                    .single_pagina{
                        font-size: 16px;
                        h3{
                            font-size: 25px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_conteudo{
                    .single_pagina{
                        h3{
                            font-size: 22px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_conteudo{
                    .single_pagina{
                        width: 50%;

                        h3{
                            font-size: 20px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 360px) {
            &{
                .holder_conteudo{
                    .single_pagina{
                        width: 100%;
                    }
                }
            }
        }
    }
    .marcas{
        .cabecalho{
            .titulo{
                color: #106090;
            }
        }
        .holder_marcas{
            margin-top: 50px;
            position: relative;
            
            .owl-nav{
                position: absolute;
                top: -40px;
                right: 10px;
                display: flex;
                gap: 10px;
                button{
                    border: 1px solid #106090;
                    border-radius: 9999px;
                    background: transparent;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    width: 30px;
                    height: 40px;
                }
            }
            .single_marca{
                padding: 10px;
                .holder_single_marca{
                    background: #FFFFFF;
                    border: 1px solid #F3F4F6;
                    border-radius: 3px;
                    padding-bottom: 50%;
                    position: relative;
                    overflow: hidden;
                    height: 0;
                    img, span{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        max-width: 90%;
                        max-height: 60%;
                        transform: translate(-50%, -50%);
                        -moz-transform: translate(-50%, -50%);
                        -webkit-transform: translate(-50%, -50%);
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    span{
                        text-align: center;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 140%;
                        color: #0C1310;
                        font-weight: 700;
                    }

                    img{
                        object-fit: contain;
                    }
                    &:hover{
                        img{
                            transform: translate(-50%, -50%) scale(1.1);
                        }
                        span{
                            color: #106090;
                        }
                    }
                }
            }
        }
    }
    .compromisso{
        .titulo{
            font-family: 'Assistant', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 80px;
            line-height: 110%;
            text-align: center;
            color: #FFFFFF;
        }
        .holder_conteudo{
            margin-top: 120px;
            display: flex;
            flex-wrap: wrap;
            .single_compromisso{
                width: Calc(100% / 3);
                padding: 15px;
                .holder_single_compromisso{
                    padding: 79.28px 32px 80px;
                    background: #FFFFFF;
                    border-radius: 12px;
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 150%;
                    text-align: center;
                    color: #4D4D4D;
                    height: 100%;
                    position: relative;

                    .imagem{
                        width: 96px;
                        height: 96px;
                        background: #FFFFFF;
                        border: 3px solid #F9CB0E;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        position: absolute;
                        top: -47px;
                        left: 50%;
                        transform: translateX(-50%);
                        -moz-transform: translateX(-50%);
                        -webkit-transform: translateX(-50%);
                        img{
                            width: 64px;
                            height: 51px;
                            object-fit: contain;
                        }
                    }
                    h3{
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 40px;
                        line-height: 120%;
                        /*text-transform: uppercase;*/
                        color: #106090;
                        margin-bottom: 20px;
                    }
                }
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .titulo{
                    font-size: 70px;
                }
                .holder_conteudo{
                    .single_compromisso{
                        .holder_single_compromisso{
                            font-size: 18px;
                            .imagem{
                                width: 96px;
                                height: 96px;
                                top: -47px;
                                img{
                                    width: 64px;
                                    height: 51px;
                                }
                            }
                            h3{
                                font-size: 30px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1300px) {
            &{
                .titulo{
                    font-size: 60px;
                }
                .holder_conteudo{
                    .single_compromisso{
                        .holder_single_compromisso{
                            .imagem{
                                width: 86px;
                                height: 86px;
                                top: -37px;
                                img{
                                    width: 54px;
                                    height: 41px;
                                }
                            }
                            h3{
                                font-size: 25px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .titulo{
                    font-size: 50px;
                }
                .holder_conteudo{
                    margin-top: 80px;
                    .single_compromisso{
                        .holder_single_compromisso{
                            font-size: 16px;
                            .imagem{
                                width: 76px;
                                height: 76px;
                                top: -27px;
                                img{
                                    width: 44px;
                                    height: 31px;
                                }
                            }
                            h3{
                                font-size: 22px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .titulo{
                    font-size: 40px;
                }
                .holder_conteudo{
                    margin-top: 80px;
                    .single_compromisso{
                        width: 100%;
                        padding: 15px 0 30px;
                        .holder_single_compromisso{
                            padding-bottom: 30px;
                            h3{
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {
            &{
                .titulo{
                    font-size: 30px;
                }
            }
        }
    }
    .valores{
        .holder_conteudo{
            display: flex;
            flex-wrap: wrap;
            .single_valor{
                width: Calc(100% / 4);
                padding: 15px;
                .holder_single_valor{
                    text-align: center;
                    h3{
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 22px;
                        line-height: 120%;
                        letter-spacing: 0.78px;
                        color: #3B3B3B;
                    }
                    img{
                        width: 45px;
                        height: 50px;
                        object-fit: contain;
                        margin-bottom: 10px;
                    }
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                .holder_conteudo{
                    .single_valor{
                        .holder_single_valor{
                            h3{
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1300px) {
            &{
                .holder_conteudo{
                    .single_valor{
                        .holder_single_valor{
                            h3{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {
            &{
                .holder_conteudo{
                    .single_valor{
                        width: 50%;
                        .holder_single_valor{
                            img{
                                width: 35px;
                                height: 40px;
                            }
                            h3{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*SOBRE NÓS*/
/*==================================================================================================*/

#sobre-nos{
    .bloco-numeros{
        padding: 40px 0;
        .holder_numeros{
            justify-content: center;
            .single_numero{
                width: Calc(100% / 3);
                padding: 10px;
                .holder_single_numero{
                    padding: 32px;
                    background: #FFFFFF;
                    border: 1px solid #F9FAFB;
                    border-radius: 16px;
                    height: 100%;
                    text-align: center;
                }
                .imagem{
                    width: 64px;
                    height: 64px;
                    background: #EEF7FF;
                    border-radius: 9999px;
                    display: flex;
                    margin: 0 auto 20px;
                    justify-content: center;
                    align-items: center;
                    img{
                        width: 32px;
                        height: 32px;
                        object-fit: contain;
                    }

                }
                .number-holder{
                    .zona_numero{
                        display: flex;
                        justify-content: center;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 48px;
                        line-height: 120%;
                        color: #106090;
                        .number{
                            display: flex;
                        }
                    }
                    .title{
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 150%;
                        text-transform: uppercase;
                        color: #4D4D4D;
                    }
                }
            }
        }

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

            &{
                .holder_numeros{
                    .single_numero{
                        .imagem{
                            width: 54px;
                            height: 54px;
                            img{
                                width: 22px;
                                height: 22px;
                            }

                        }
                        .number-holder{
                            .zona_numero{
                                font-size: 38px;
                            }
                            .title{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {

            &{
                .holder_numeros{
                    flex-wrap: wrap;
                    .single_numero{
                        width: 50%;
                        .number-holder{
                            .zona_numero{
                                font-size: 35px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px) {

            &{
                .holder_numeros{
                    .single_numero{
                        width: 100%;
                        padding: 10px 0;
                    }
                }
            }
        }
    }

    .text_imagens{
        .holder_conteudo{
            flex-wrap: wrap;
            align-items: center;
            .col_text{
                width: 50%;
                padding-right: 32px;
                .small_title{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 20px;
                    display: inline-flex;
                    align-items: center;
                    color: #0A3A56;
                    padding: 8px 16px;
                    background: #D1E7F3;
                    border-radius: 9999px;
                    text-transform: uppercase;
                }
                .descricao{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 35px;
                    line-height: 120%;
                    color: #252422;
                    margin-top: 25px;
                }
                .conteudo{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 150%;
                    color: #4D4D4D;
                    margin-top: 25px;
                }
            }
            .col_imagens{
                width: 50%;
                padding-left: 32px;
                .holder_imagem{
                    align-items: center;
                    .coluna{
                        width: 50%;
                    }
                    .single_imagem{
                        padding: 7px;
                        img{
                            width: 100%;
                            border-radius: 24px;
                        }
                    }
                }
            }
        }

        @media screen and (min-width: 993px) {
            .holder_conteudo.invert{
                .col_text{
                    order: 2;
                    padding-right: 0;
                    padding-left: 32px;
                }
                .col_imagens{
                    order: 1;
                    padding-left: 0;
                    padding-right: 32px;
                }
            }
        }
        @media screen and (max-width: 1200px) {

            .holder_conteudo{
                .col_text{
                    .descricao{
                        font-size: 30px;
                    }
                    .conteudo{
                        font-size: 18px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {

            .holder_conteudo{
                .col_text{
                    width: 100%;
                    padding-right: 0;
                    .descricao{
                        font-size: 25px;
                    }
                    .conteudo{
                        font-size: 16px;
                    }
                }
                .col_imagens{
                    width: 100%;
                    padding-left: 0;
                    margin-top: 40px;
                }
            }
        }
    }

    .quote{
        .holder_frase{
            position: relative;
            margin: 0 auto;
            font-family: 'Assistant', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 45px;
            line-height: 150%;
            color: rgba(250, 250, 250, 0.980392);
            width: 780px;
            text-align: center;
            .svg{
                position: absolute;
                top: 0;
                right: -150px;
            }
            .aspas{
                position: absolute;
                top: -10px;
                left: -50px;
                font-size: 100px;
            }

        }

        @media screen and (max-width: 1200px) {
            &{
                .holder_frase{
                    font-size: 35px;
                    width: 680px;
                    .svg{
                        right: -120px;
                    }
                    .aspas{
                        left: -30px;
                    }

                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_frase{
                    font-size: 30px;
                    width: 680px;
                    max-width: 100%;
                    .svg{
                        position: relative;
                        right: unset;
                        margin-bottom: 30px;
                    }
                    .aspas{
                        position: relative;
                        left: 0;
                        top: 15px;
                    }

                }
            }
        }
        @media screen and (max-width: 767px) {
            &{
                .holder_frase{
                    font-size: 25px;
                }
            }
        }
        @media screen and (max-width: 567px) {
            &{
                .holder_frase{
                    font-size: 22px;
                }
            }
        }
    }
}

/*==================================================================================================*/
/*LOJAS*/
/*==================================================================================================*/
#lojas{
    .zona_mapa{
        .cabecalho{
            margin-bottom: 60px;
            text-align: center;
            .titulo{
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 48px;
                line-height: 150%;
                letter-spacing: -0.02em;
                color: #486284;
            }
        }
        .holder_zona_mapa{
            display: flex;

            .bloco_ponto_mapa{
                .titulo{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 120%;
                    color: #0F172A;
                }
                .morada{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 120%;
                    color: #475569;
                    margin-top: 8px;
                }
                .como_chegar_telefone{
                    margin-top: 15px;
                    align-items: center;
                    gap: 10px;
                    display: flex;
                    width: 100%;
                    .como_chegar_a{
                        width: Calc(100% - 32.5px);
                    }
                    .como_chegar{
                        width: 100%;
                        justify-content: center;
                        padding: 11px 0px;
                        background: #106090;
                        border: 1px solid #106090;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 14px;
                        line-height: 120%;
                        color: #FFFFFF;
                        border-radius: 8px;
                        display: inline-flex;
                        gap: 10px;
                        align-items: center;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        svg path{
                            transition: all .3s ease-in-out;
                            -moz-transition: all .3s ease-in-out;
                            -webkit-transition: all .3s ease-in-out;
                        }
                        &:hover{
                            background: transparent;
                            color: #106090;

                            svg path{
                                fill: #106090;
                            }
                        }
                    }
                    .telefone{
                        padding: 10px;
                        width: 32.5px;
                        height: 32.5px;
                        border: 1px solid #E2E8F0;
                        border-radius: 8px;
                        background: transparent;
                        display: inline-flex;
                        align-items: center;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        svg path{
                            transition: all .3s ease-in-out;
                            -moz-transition: all .3s ease-in-out;
                            -webkit-transition: all .3s ease-in-out;
                        }
                        &:hover{
                            background: #106090;
                            svg path{
                                fill: #fff;
                            }
                        }
                    }
                }
            }
            .lista_lojas{
                width: 400px;
                #counterLojas{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 14px;
                    line-height: 20px;
                    color: #475569;
                    background: #F8FAFC;
                    border-bottom: 1px solid #F1F5F9;
                    padding: 16px;
                }
                #listPinsFound{
                    height: 637px;
                    overflow-y: scroll;
                    padding: 0 16px 16px;
                    .bloco_ponto_mapa{
                        padding: 16px;
                        background: #FFFFFF;
                        border: 1px solid #E2E8F0;
                        border-radius: 12px;
                        margin: 16px 0;

                        &.active{
                            background: #F8FAFC;
                            border: 2px solid #106090;
                        }
                    }
                }
            }
            #map{
                width: Calc(100% - 400px);
                height: 690px;
                .como_chegar_telefone{
                    .como_chegar_a{
                        width: 200px;
                    }
                }
            }

        }
    }

    @media screen and (max-width: 1200px) {
        &{
            .zona_mapa{
                .cabecalho{
                    margin-bottom: 40px;
                    .titulo{
                        font-size: 38px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{

            .zona_mapa{
                .cabecalho{
                    .titulo{
                        font-size: 28px;
                    }
                }
                .holder_zona_mapa{
                    flex-wrap: wrap;

                    .bloco_ponto_mapa{
                        .titulo{
                            font-size: 16px;
                        }
                    }
                    .lista_lojas{
                        width: 100%;
                        order: 2;
                        #listPinsFound{
                            height: auto;
                            display: flex;
                            flex-wrap: wrap;
                            gap: 10px;
                            justify-content: space-between;
                            .bloco_ponto_mapa{
                                width: Calc(50% - 5px);
                            }
                        }
                    }
                    #map{
                        order: 1;
                        width: 100%;
                        height: 690px;
                    }

                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        &{
            .zona_mapa{
                .holder_zona_mapa{
                    .lista_lojas{
                        #listPinsFound{
                            gap: 0;
                            .bloco_ponto_mapa{
                                width: 100%;
                            }
                        }
                    }

                }
            }
        }
    }
}


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


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


/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/
#contactos{
    .zona_contactos{
        .cabecalho{
            text-align: center;
            margin-bottom: 70px;
            .titulo{
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 48px;
                line-height: 150%;
                letter-spacing: -0.02em;
                color: #486284;
            }
        }
        .holder_zona_contactos{
            display: flex;
            flex-wrap: wrap;
            .mapa{
                width: 50%;
                padding-right: 32px;
                iframe{
                    width: 100% !important;
                    height: 470px !important;
                }
            }
            .dados_contactos{
                width: 50%;
                display: flex;
                flex-wrap: wrap;
                align-content: space-between;
                padding: 50px 0 50px 32px;
                .single_contactos{
                    width: 50%;
                    padding: 15px;
                    display: inline-flex;
                    flex-wrap: wrap;
                    &, a{
                        font-family: 'Archivo', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 15.5px;
                        line-height: 160%;
                        color: #3B3B3B;
                        text-decoration: none;
                    }
                    a:hover{
                        text-decoration: underline;
                    }
                    .icon{
                        width: 35px;
                        height: 35px;
                        img{
                            max-width: 100%;
                            max-height: 100%;
                            object-fit: contain;
                        }
                    }
                    .conteudo{
                        width: Calc(100% - 35px);
                        padding-left: 10px;
                        h4{
                            margin: 0;
                            margin-bottom: 15px;
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 400;
                            font-size: 22px;
                            line-height: 120%;
                            letter-spacing: -0.02em;
                            color: #106090;
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1200px) {
            &{
                .cabecalho{
                    margin-bottom: 40px;
                    .titulo{
                        font-size: 38px;
                    }
                }

                .holder_zona_contactos{
                    .mapa{
                        padding-right: 20px;
                    }
                    .dados_contactos{
                        padding: 50px 0 50px 20px;
                        .single_contactos{
                            &, a{
                                font-size: 15px;
                            }
                            a:hover{
                                text-decoration: underline;
                            }
                            .icon{
                                width: 30px;
                                height: 30px;
                            }
                            .conteudo{
                                width: Calc(100% - 30px);
                                h4{
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .cabecalho{
                    .titulo{
                        font-size: 28px;
                    }
                }

                .holder_zona_contactos{
                    .mapa{
                        width: 100%;
                        padding-right: 0;
                        margin-bottom: 40px;
                    }
                    .dados_contactos{
                        width: 100%;
                        padding: 0 30px;
                    }
                }
            }
        }
        @media screen and (max-width: 567px) {
            &{
                .holder_zona_contactos{
                    .dados_contactos{
                        .single_contactos{
                            width: 100%;

                            .conteudo{
                                h4{
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .banner_distribuidor{
        padding: 200px 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        .titulo{
            font-family: 'Assistant', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 88px;
            line-height: 120%;
            color: #F3F1EE;
            text-align: center;
        }
        @media screen and (max-width: 1400px) {
            &{
                .titulo{
                    font-size: 78px;
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .titulo{
                    font-size: 68px;
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                padding: 150px 0;
                .titulo{
                    font-size: 58px;
                }
            }
        }
        @media screen and (max-width: 767px) {
            &{
                padding: 100px 0;
                .titulo{
                    font-size: 48px;
                }
            }
        }
        @media screen and (max-width: 567px) {
            &{
                padding: 90px 0;
                .titulo{
                    font-size: 38px;
                }
            }
        }
    }
    .formulario{
        .cabecalho{
            width: 790px;
            max-width: 100%;
            margin: 0 auto 40px auto;
            h3{
                text-align: center;
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 48px;
                line-height: 130%;
                letter-spacing: 0.78px;
                color: #2E2A39;
            }
            .descricao{
                margin-top: 24px;
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 130%;
                color: #000000;
            }
        }
        .botao{
            text-align: center;
        }
        #form_contactos{
            width: 850px;
            max-width: 100%;
            margin: 0 auto;
        }

        @media screen and (max-width: 1400px) {
            &{
                .cabecalho{
                    h3{
                        font-size: 38px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .cabecalho{
                    h3{
                        font-size: 28px;
                    }
                    .descricao{
                        font-size: 14px;
                        text-align: center;
                    }
                }
            }
        }

    }
    .procurar_loja{
        .holder_procurar_loja{
            padding: 50px;
            border-radius: 50px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            .cabecalho{
                text-align: center;
                margin-bottom: 60px;
                .titulo{
                    font-style: normal;
                    font-weight: 400;
                    font-size: 48px;
                    line-height: 150%;
                    letter-spacing: 0.78px;
                    color: #2E2A39;
                }
            }

            .form{
                width: 524px;
                max-width: 100%;
                margin: 0 auto;
                .single_input{
                    position: relative;
                    input{
                        width: 100%;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 16px;
                        color: #6A6A6A;
                        padding: 18px 18px 18px 26px;
                        background: #FFFFFF;
                        border: 1px solid rgba(16, 96, 144, 0.3);
                        border-radius: 36px;
                    }
                    button{
                        position: absolute;
                        background: transparent;
                        font-size: 22px;
                        color: #106090;
                        right: 8px;
                        top: 11px;
                        border: none;
                    }
                }
            }
        }

        @media screen and (max-width: 1200px) {
            &{
                .holder_procurar_loja{
                    .cabecalho{
                        margin-bottom: 40px;
                        .titulo{
                            font-size: 38px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_procurar_loja{
                    padding: 30px;
                    background-position: right center;
                    .cabecalho{
                        margin-bottom: 30px;
                        .titulo{
                            font-size: 28px;
                        }
                    }
                }
            }
        }

    }
}

.formulario{
    textarea{
        resize: none;
    }
    .form-control{
        margin-bottom: 25px;
        padding: 15px 24px;
        background: #FFFFFF;
        box-shadow: 0px 4px 4px rgba(214, 240, 232, 0.2);
        border-radius: 11px;
        font-family: 'Assistant';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1px;
        color: #3B3B3B;
    }
    .alert{
        font-size: 14px;
        line-height: 150%;
        margin-top: 20px;
    }
    .rgpd{
        &, label, a{
            font-family: 'Assistant', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 130%;
            color: #000000;
        }
    }
    @media screen and (max-width: 992px) {
        &{

            button{
                font-size: 14px;

            }
        }
    }
}



/*==================================================================================================*/
/*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{
    .holder_faqs{
        display: flex;
        flex-wrap: wrap;
        .coluna{
            width: 50%;
        }
        .single_faq{
            padding: 15px;
            .holder_single_faq{
                display: flex;
                background: #FFFFFF;
                box-shadow: 0px 24.5562px 32.7416px -14.7337px rgba(149, 149, 149, 0.25);
                border-radius: 4.91124px;
                padding: 35px;

                span{
                    cursor: pointer;
                    display: block;
                    width: 20px;
                    height: 20px;
                    position: relative;
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;

                    &:before{
                        content: '';
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        width: 100%;
                        height: 3px;
                        background: #AFD9E3;
                        opacity: 0.8;
                        border-radius: 20px;

                        transform: translate(-50%, -50%);
                        -moz-transform: translate(-50%, -50%);
                        -webkit-transform: translate(-50%, -50%);
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    &:after{
                        content: '';
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        height: 100%;
                        width: 3px;
                        background: #AFD9E3;
                        opacity: 0.8;
                        border-radius: 20px;

                        transform: translate(-50%, -50%);
                        -moz-transform: translate(-50%, -50%);
                        -webkit-transform: translate(-50%, -50%);
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                }
                &.open{
                    span{
                        &:after{
                            transform: translate(-50%, -50%) rotate(-90deg);
                            -moz-transform: translate(-50%, -50%) rotate(-90deg);
                            -webkit-transform: translate(-50%, -50%) rotate(-90deg);
                        }
                    }
                }
                .conteudo{
                    width: Calc(100% - 20px);
                    padding-left: 40px;
                }
                .pergunta{
                    cursor: pointer;
                    .cabecalho {
                        h2{
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 400;
                            font-size: 18px;
                            line-height: 130%;
                            color: rgb(59 59 59 / 88%);
                        }
                    }
                    &.open{
                        .cabecalho{
                            span{
                                transform: rotate(180deg);
                                -moz-transform: rotate(180deg);
                                -webkit-transform: rotate(180deg);
                            }
                        }
                    }
                }
                .resposta{
                    display: none;
                    padding-top: 30px;
                    &, p, a{
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 150.7%;
                        letter-spacing: 0.1px;
                        color: rgb(59 59 59 / 70%);
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1200px) {
        &{
            .holder_faqs {
                .single_faq {
                    .holder_single_faq {
                        .conteudo {
                            padding-left: 20px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .holder_faqs {
                .coluna{
                    width: 100%;
                }
                .single_faq {
                    padding: 15px 0;
                }
            }
        }
    }
}

/*==================================================================================================*/
/*MARCAS*/
/*==================================================================================================*/
#marcas{
    .logos.marcas{
        .cabecalho{
            margin-bottom: 80px;
            .titulo{
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 80px;
                line-height: 110%;
                text-align: center;
                color: #106090;
            }
            @media screen and (max-width: 1400px) {
                &{
                    .titulo{
                        font-size: 70px;
                    }
                }
            }
            @media screen and (max-width: 1200px) {
                &{
                    .titulo{
                        font-size: 60px;
                    }
                }
            }
            @media screen and (max-width: 992px) {
                &{
                    .titulo{
                        font-size: 50px;
                    }
                }
            }
            @media screen and (max-width: 767px) {
                &{
                    .titulo{
                        font-size: 40px;
                    }
                }
            }
            @media screen and (max-width: 567px) {
                &{
                    .titulo{
                        font-size: 30px;
                    }
                }
            }
        }
        .holder_marcas{
            
            &.owl-carousel .owl-stage{
                margin: 0 auto;
            }
            
            .owl-nav{
                position: absolute;
                top: -40px;
                right: 10px;
                display: flex;
                gap: 10px;
                &.disabled{
                    display: none;
                }
                button{
                    border: 1px solid #106090;
                    border-radius: 9999px;
                    background: transparent;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    width: 30px;
                    height: 40px;
                }
            }
            .single_marca{
                padding: 10px;
                cursor: pointer;
                .holder_single_marca{
                    padding-bottom: 50%;
                    position: relative;
                    overflow: hidden;
                    height: 0;
                    img, span{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        max-width: 90%;
                        max-height: 60%;
                        transform: translate(-50%, -50%);
                        -moz-transform: translate(-50%, -50%);
                        -webkit-transform: translate(-50%, -50%);
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                    span{
                        text-align: center;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 140%;
                        color: #0C1310;
                        font-weight: 700;
                    }

                    img{
                        object-fit: contain;
                    }
                    &:hover{
                        img{
                            transform: translate(-50%, -50%) scale(1.1);
                        }
                        span{
                            color: #106090;
                        }
                    }
                }
            }
        }
    }

    .lista_marcas.single_marca{
        .holder_single_marca{
            display: flex;
            flex-wrap: wrap;
            .zona_imagem{
                width: 50%;
                padding-right: 25px;
                .imagem{
                    padding-bottom: 70%;
                    height: 0;
                    background: #fff;
                    position: relative;
                    &.bg_lightgray{
                        background: #FAFAFA;
                    }
                    img{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        -moz-transform: translate(-50%, -50%);
                        -webkit-transform: translate(-50%, -50%);
                        max-width: 90%;
                        max-height: 60%;
                    }
                }
            }
            .conteudo{
                width: 50%;
                padding-left: 25px;
                .titulo{
                    font-family: 'Archivo', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 30px;
                    line-height: 120%;
                    letter-spacing: -0.75px;
                    color: #10628E;
                }
                .descricao{
                    font-family: 'Archivo', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 150%;
                    color: #4E7E97;
                    margin-top: 25px;
                    ul{
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        li{
                            padding: 5px 0 5px 25px;
                            position: relative;
                            font-family: 'Archivo', sans-serif;
                            font-style: normal;
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 20px;
                            color: #0E161B;
                            &:before{
                                content: '';
                                background-image: url(/site/imagens/check.png);
                                width: 15px;
                                height: 15px;
                                display: block;
                                position: absolute;
                                top: 7px;
                                left: 0;
                            }
                        }
                    }
                }
                .botao{
                    margin-top: 30px;
                }
            }
        }

        @media screen and (min-width: 993px) {
            &:nth-child(odd){

                .holder_single_marca{
                    .zona_imagem{
                        order: 2;
                        padding-right: 0;
                        padding-left: 25px;
                    }
                    .conteudo{
                        order: 1;
                        padding-left: 0;
                        padding-right: 25px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_single_marca{
                    .conteudo{
                        .titulo{
                            font-size: 25px;
                        }
                        .descricao{
                            font-size: 16px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{

                .holder_single_marca{
                    .zona_imagem{
                        width: 100%;
                        padding-right: 0;
                        padding-left: 0;
                        margin-bottom: 40px;
                        .imagem {
                            padding-bottom: 150px;
                            height: 0;
                            background: transparent !important;
                            position: relative;
                            width: 150px;
                        }
                    }
                    .conteudo{
                        width: 100%;
                        padding-left: 0;
                        padding-right: 0;
                        .titulo{
                            font-size: 22px;
                        }
                    }
                }
            }
        }
    }
}
/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/
#produtos{
    .categorias{
        .holder_categorias{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            .single_categoria{
                width: 120px;
                text-align: center;
                cursor: pointer;
                .icon{
                    position: relative;
                    img{
                        height: 70px;
                        width: 70px;
                        object-fit: contain;
                    }
                }
                .nome{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 13px;
                    line-height: 30px;
                    text-transform: uppercase;
                    color: #106090;
                }
            }
        }

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

            .holder_categorias{
                gap: 10px;
                .single_categoria{
                    width: 90px;
                    .nome{
                        font-size: 12px;
                    }
                }
            }
        }

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

            .holder_categorias{
                .single_categoria{
                    .icon{
                        img{
                            height: 50px;
                            width: 50px;
                        }
                    }
                }
            }
        }
    }
    .pesquisa_produtos{
        background: rgb(16 96 144 / 5%);
        .holder_pesquisa_produtos{
            max-width: 490px;
            margin: 0 auto;
            .single_input{
                width: 100%;
                position: relative;
                input{
                    width: 100%;
                    padding: 19px 16px 20px 48px;
                    background: #FFFFFF;
                    border: 2px solid rgba(16, 96, 144, 0.2);
                    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
                    border-radius: 51px;
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 120%;
                    color: #94A3B8;
                }
                button{
                    position: absolute;
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 120%;
                    color: #FFFFFF;
                    border: 1px solid #106090;
                    padding: 10px 24px;
                    background: #106090;
                    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
                    border-radius: 26px;
                    right: 10px;
                    top: 12px;
                    transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    &:hover{
                        background: transparent;
                        color: #106090;
                    }
                }
                span{
                    position: absolute;
                    color: #106090;
                    top: 17px;
                    left: 17px;
                }
            }
        }

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

                .holder_pesquisa_produtos{
                    .single_input{
                        input{
                            font-size: 18px;
                        }
                        button{
                            font-size: 14px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{

                .holder_pesquisa_produtos{
                    .single_input{
                        input{
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    .produtos{
        .holder_produtos{
            display: flex;
            flex-wrap: wrap;
            .filtros{
                width: 255px;
                .botao_filtros_mobile, .botao_filtrar_mobile, .fechar_filtros_mobile{
                    display: none;
                }
                .single_tipo_filtros{
                    margin-bottom: 40px;
                    &:last-child{
                        margin-bottom: 0;
                    }
                    .titulo{
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 120%;
                        color: #106090;
                    }
                    .cabecalho{
                        border-bottom: 1px solid #E2E8F0;
                        padding: 8px 0;
                        margin-bottom: 6px;
                        .titulo{
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 500;
                            font-size: 18px;
                            line-height: 120%;
                            color: #0F172A;

                        }
                    }
                    .single_categoria{
                        padding: 6px 0;
                        h3{
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 120%;
                            color: #4B5563;
                            position: relative;
                            padding-right: 20px;
                            cursor: pointer;
                            i{
                                font-size: 14px;
                                position: absolute;
                                top: 2px;
                                right: 0;
                                transition: all .3s ease-in-out;
                                -moz-transition: all .3s ease-in-out;
                                -webkit-transition: all .3s ease-in-out;
                            }
                            &.open{
                                i{
                                    transform: rotate(-180deg);
                                    -moz-transform: rotate(-180deg);
                                    -webkit-transform: rotate(-180deg);
                                }
                            }
                        }
                        .sub_filtros{
                            padding-left: 20px;
                            display: none;
                        }
                    }
                }

                .single_filtro{
                    padding: 10px 0;
                    label{
                        display: flex;
                        gap: 8px;
                        position: relative;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 120%;
                        color: #4B5563;
                        padding-left: 25px;
                        cursor: pointer;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        user-select: none;
                    }
                    label .icon{
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        padding: 2px 4px;
                        background: rgba(16, 96, 144, 0.1);
                        border-radius: 4px;
                        margin-top: -3px;
                        img{
                            width: 18px;
                            height: 22px;
                            object-fit: contain;
                        }
                    }

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

                    label .checkmark {
                        position: absolute;
                        top: 0;
                        left: 0;
                        background-color: transparent;
                        cursor: pointer;
                        width: 20px;
                        height: 20px;
                        border: 2px solid #D1D5DB;
                        border-radius: 6px;
                    }

                    label .checkmark:after{
                        content: "";
                        position: absolute;
                        display: none;
                    }

                    label input:checked ~ .checkmark:after {
                        display: block;
                    }

                    label input:checked ~ .checkmark{
                        background-color: #106090;
                        border-color: #106090;
                    }

                    label .checkmark:after {
                        left: 6px;
                        top: 2px;
                        width: 5px;
                        height: 10px;
                        border: solid #fff;
                        border-width: 0 2px 2px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }

                @media screen and (max-width: 992px) {
                    &{
                        .botao_filtros_mobile, .botao_filtrar_mobile, .fechar_filtros_mobile{
                            display: flex;
                            flex-wrap: wrap;
                        }
                        .botao_filtros_mobile{
                            display: inline-flex;
                            font-family: 'Assistant', sans-serif;
                            font-style: normal;
                            font-weight: 700;
                            font-size: 16px;
                            line-height: 120%;
                            color: #10628E;
                            padding: 4px 12px;
                            background: rgba(16, 96, 144, 0.1);
                            border: 1px solid rgba(16, 96, 144, 0.2);
                            border-radius: 9999px;
                            gap: 8px;
                            align-items: center;
                            cursor: pointer;
                            margin-bottom: 40px;
                        }
                        .botao_filtrar_mobile{
                            gap: 10px;
                            justify-content: center;
                        }

                        #form_filtros_produtos{
                            position: relative;
                            display: none;
                            position: fixed;
                            top: 50%;
                            z-index: 999;
                            background: #f3f6f9;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            max-width: 90%;
                            max-height: 80%;
                            overflow-y: auto;
                            width: 500px;
                            padding: 30px;
                            border-radius: 30px;
                            box-shadow: 0px 0px 11px #0A3A56;
                            &.open{
                                display: block;
                            }
                        }

                        .fechar_filtros_mobile{
                            position: absolute;
                            top: 30px;
                            right: 30px;
                        }
                    }
                }
            }
            .listagem_produtos{
                width: Calc(100% - 255px);
                padding-left: 40px;
                .filtros_aplicados{
                    margin-bottom: 50px;
                    display: flex;
                    flex-wrap: wrap;
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 120%;
                    color: #6B7280;
                    background: #F8FAFC;
                    border: 1px solid #E2E8F0;
                    border-radius: 8px;
                    padding: 17px;
                    &.display_none{
                        display: none;
                    }
                    .zona_filtros{
                        display: inline-flex;
                        flex-wrap: wrap;
                        gap: 12px;
                        width: Calc(100% - 80px);
                        label{
                            margin-top: 4px;
                        }
                        .lista_filtros{
                            gap: 8px;
                            display: inline-flex;
                            flex-wrap: wrap;

                            .single_filtro_aplicado{
                                display: inline-flex;
                                font-family: 'Assistant', sans-serif;
                                font-style: normal;
                                font-weight: 700;
                                font-size: 14px;
                                line-height: 120%;
                                color: #10628E;
                                padding: 4px 12px;
                                background: rgba(16, 96, 144, 0.1);
                                border: 1px solid rgba(16, 96, 144, 0.2);
                                border-radius: 9999px;
                                gap: 8px;
                                .remover_filtro{
                                    cursor: pointer;
                                    &:hover{
                                        color: #000;
                                    }
                                }
                            }
                        }
                    }
                    .limpar_todos_filtros  {
                        width: 80px;
                        text-decoration-line: underline;
                        cursor: pointer;
                        margin-top: 4px;
                    }
                }
                .holder_listagem_produtos{
                    display: flex;
                    flex-wrap: wrap;
                    .single_produto{
                        width: Calc(100% / 3);
                        padding: 30px;
                        a{
                            color: inherit;
                            text-decoration: none;
                        }
                        .holder_single_produto{
                            background: #FFFFFF;
                            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
                            border-radius: 12px;
                            padding: 24px;
                            height: 100%;
                            display: flex;
                            flex-wrap: wrap;
                            align-content: space-between;
                            .botao{
                                width: 100%;
                                text-align: center;
                                margin-top: 20px;
                                button{
                                    font-weight: 700;
                                    font-size: 12px;
                                    line-height: 15px;
                                }
                            }
                            .info_prod{
                                width: 100%;
                                .marca{
                                    font-family: 'Archivo', sans-serif;
                                    font-style: normal;
                                    font-weight: 700;
                                    font-size: 10px;
                                    line-height: 120%;
                                    color: #10628E;
                                    padding: 5px 8px;
                                    display: inline-block;
                                    background: rgba(16, 96, 144, 0.1);
                                    border: 1px solid rgba(16, 96, 144, 0.2);
                                    border-radius: 4px;
                                    margin-bottom: 10px;
                                }
                                .imagem{
                                    position: relative;
                                    padding-bottom: 80%;
                                    height: 0;
                                    margin-bottom: 10px;
                                    img{
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        object-fit: contain;
                                    }
                                }
                                .titulo{
                                    font-family: 'Archivo', sans-serif;
                                    font-style: normal;
                                    font-weight: 600;
                                    font-size: 20px;
                                    line-height: 120%;
                                    text-transform: capitalize;
                                    color: #106090;
                                    margin: 0;
                                    text-align: left;
                                }
                                .descricao{
                                    font-family: 'Archivo', sans-serif;
                                    font-style: normal;
                                    font-weight: 600;
                                    font-size: 14px;
                                    line-height: 120%;
                                    color: #3B3B3B;
                                    margin-top: 10px;
                                }
                            }

                        }
                    }
                }

                .paginacao{
                    display: flex;
                    flex-wrap: wrap;
                    margin: 45px auto 0 auto;
                    justify-content: center;
                    gap: 15px;
                    width: 100%;
                    .single_pag{
                        &.ver_todos{
                            margin-top: 30px;
                        }
                        width: 34px;
                        height: 34px;
                        border-radius: 50%;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 120%;
                        color: #000000;
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        cursor: pointer;
                        &.seta{
                            background: #106090;
                            color: #FFFFFF;
                        }
                        &.disabled{
                            background: rgb(16 96 144 / 15%);
                            cursor: default;
                        }
                        &.active{
                            background: #858585;
                            font-weight: 700;
                            color: #FFFFFF;
                        }
                    }

                    @media screen and (max-width: 567px) {
                        &{
                            gap: 5px;
                            .single_pag{
                                width: 30px;
                                height: 30px;
                                font-size: 11px;
                            }
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .holder_produtos{
                    .listagem_produtos{
                        .holder_listagem_produtos{
                            .single_produto{
                                padding: 15px;
                                .holder_single_produto{
                                    padding: 22px;
                                    .info_prod{
                                        .titulo{
                                            font-size: 20px;
                                        }
                                    }

                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_produtos{
                    .listagem_produtos{
                        .holder_listagem_produtos{
                            .single_produto{
                                width: 50%;
                                .holder_single_produto{
                                    .info_prod{
                                        .titulo{
                                            font-size: 18px;
                                        }
                                    }

                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_produtos{
                    .listagem_produtos{
                        width: 100%;
                        padding-left: 0;
                        .holder_listagem_produtos{
                            .single_produto{
                                width: 50%;
                                .holder_single_produto{
                                    .info_prod{
                                        .titulo{
                                            font-size: 18px;
                                        }
                                    }

                                }
                            }
                        }
                        .filtros_aplicados{

                            .zona_filtros{
                                width: 100%;
                            }
                            .limpar_todos_filtros{
                                width: 100%;
                                margin-top: 30px;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 460px) {
            &{
                .holder_produtos{
                    .listagem_produtos{
                        .holder_listagem_produtos{
                            .single_produto{
                                width: 100%;
                                padding: 15px 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

/*==================================================================================================*/
/*DETALHES DO PRODUTO*/
/*==================================================================================================*/
#produto{
    .detalhe_produto{
        .holder_detalhe_produto{
            display: flex;
            flex-wrap: wrap;
            .col_imagens{
                width: 50%;
                padding-right: 80px;
                .holder_slider{
                    position: relative;
                    .single_imagem{
                        .imagem{
                            position: relative;
                            padding-bottom: 70%;
                            height: 0;
                            width: 100%;
                            .zoom-box,
                            img{
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }
                    }
                    .owl-dots{
                        display: flex;
                        gap: 10px;
                        justify-content: center;
                        bottom: 40px;
                        position: absolute;
                        left: 0;
                        right: 0;
                        z-index: 2;
                        .owl-dot{
                            width: 20px;
                            height: 5px;
                            background: #8C9C9C;
                            &.active{
                                background: #106090;
                            }
                        }
                    }

                }
                .holder_slider_thumbnail{
                    .single_imagem{
                        cursor: pointer;
                        padding: 10px;
                        .imagem{
                            position: relative;
                            padding-bottom: 90%;
                            height: 0;
                            width: 100%;
                            img{
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }
                    }
                }
                #slider_imagens_produto_thumbnails_not{
                    display: flex;
                    justify-content: center;
                    flex-wrap: wrap;
                    .single_imagem{
                        width: Calc(100% / 4);
                    }

                }
            }
            .detalhes{
                width: 50%;

                .marca{
                    font-family: 'Assistant';
                    font-style: normal;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 120%;
                    letter-spacing: 2.4px;
                    text-transform: uppercase;
                    color: #106090;
                    margin-bottom: 10px;
                }
                h1{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 50px;
                    line-height: 120%;
                    color: #3B3B3B;
                }
                .categoria{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 120%;
                    letter-spacing: -0.24px;
                    color: #3B3B3B;
                }
                .descricao{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 150%;
                    color: #3B3B3B;
                    margin-top: 20px;
                }
                .documento{
                    a{
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 120%;
                        display: inline-flex;
                        align-items: center;
                        text-decoration-line: underline;
                        color: #3B3B3B;
                        gap: 5px;
                        &:hover{
                            color: #106090;
                        }
                    }
                }
                .caracteristicas{
                    margin-top: 60px;
                    table{
                        width: 100% !important;
                        border: none;
                        tr{
                            width: 100% !important;
                            display: flex;
                            flex-wrap: wrap;
                            border: none;
                            td{
                                border: none;
                                display: inline-flex;
                                width: Calc(100% / 3) !important;
                                padding: 10px;
                                font-family: 'Assistant', sans-serif;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 18px;
                                line-height: 120%;
                                color: #3B3B3B;
                                gap: 10px;
                                align-items: center;
                                img{
                                    width: 25px;
                                    height: 25px;
                                    object-fit: contain;
                                }
                            }
                        }
                    }
                }

                .tamanhos {
                    margin-top: 60px;
                    display: flex;
                    gap: 15px;
                    flex-wrap: wrap;
                    align-items: center;
                    label{
                        font-family: 'Assistant';
                        font-style: normal;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 120%;
                        letter-spacing: -0.16px;
                        color: #3B3B3B;
                    }
                    .single_tamanho{
                        padding: 12px 32px;
                        background: #F9FAF9;
                        border: 1px solid rgba(145, 149, 146, 0.15);
                        border-radius: 9999px;
                        font-family: 'Assistant', sans-serif;
                        font-style: normal;
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 120%;
                        color: #3B3B3B;
                    }
                }
                .partilha{
                    margin-top: 50px;
                    label{
                        font-family: 'Assistant';
                        font-style: normal;
                        font-weight: 400;
                        font-size: 24px;
                        line-height: 120%;
                        letter-spacing: -0.16px;
                        color: #3B3B3B;
                        margin-bottom: 10px;
                    }
                    .holder_share{
                        display: flex;
                        flex-wrap: wrap;
                        gap: 15px;
                        &.mobile{
                            display: none;
                        }
                        a, button{
                            text-decoration: none;
                            color: #106090;
                            font-size: 20px;
                            background: transparent;
                            padding: 0;
                            border: none;
                            &:hover{
                                color: #000;
                            }
                        }

                        @media screen and (max-width: 992px) {
                            &.mobile{
                                display: flex;
                            }
                            &.desktop{
                                display: none;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                .holder_detalhe_produto{
                    .detalhes{
                        h1{
                            font-size: 40px;
                        }
                        .categoria{
                            font-size: 22px;
                        }
                        .descricao{
                            font-size: 16px;
                        }
                        .documento{
                            a{
                                font-size: 16px;
                            }
                        }
                        .caracteristicas{
                            table{
                                tr{
                                    td{
                                        font-size: 16px;
                                    }
                                }
                            }
                        }

                        .tamanhos {
                            label{
                                font-size: 14px;
                            }
                            .single_tamanho{
                                font-size: 18px;
                            }
                        }
                        .partilha{
                            label{
                                font-size: 22px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .holder_detalhe_produto{
                    .col_imagens{
                        padding-right: 30px;
                    }
                    .detalhes{
                        h1{
                            font-size: 30px;
                        }
                        .categoria{
                            font-size: 20px;
                        }
                        .tamanhos {
                            .single_tamanho{
                                font-size: 16px;
                            }
                        }
                        .partilha{
                            label{
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .holder_detalhe_produto{
                    flex-wrap: wrap;
                    .col_imagens{
                        padding-right: 0;
                        margin-bottom: 40px;
                        width: 100%;
                        .holder_slider {
                            .owl-dots {
                                bottom: -10px;
                            }
                        }
                        .holder_slider_thumbnail {
                            display: none !important;
                        }
                    }
                    .detalhes{
                        width: 100%;
                        h1{
                            font-size: 25px;
                        }
                        .categoria{
                            font-size: 18px;
                        }
                        .partilha{
                            label{
                                font-size: 18px;
                            }
                        }
                        .tamanhos {
                            label{
                                width: 100%;
                            }
                            .single_tamanho {
                                font-size: 15px;
                                padding: 10px 20px;
                            }
                        }
                    }
                }

            }
        }
        @media screen and (max-width: 767px) {
            &{
                .holder_detalhe_produto{
                    .detalhes{
                        .caracteristicas{
                            table{
                                tr{
                                    td{
                                        width: Calc(100% / 2) !important;
                                    }
                                }
                            }
                        }
                    }
                }

            }
        }
        @media screen and (max-width: 450px) {
            &{
                .holder_detalhe_produto{
                    .detalhes{
                        .caracteristicas{
                            table{
                                tr{
                                    td{
                                        width: 100% !important;
                                        padding: 10px 0;
                                    }
                                }
                            }
                        }
                    }
                }

            }
        }
    }
    .produtos_relacionados{
        background: #ECF1F4;
        .cabecalho{
            .titulo{
                font-family: 'Assistant';
                font-style: normal;
                font-weight: 400;
                font-size: 50px;
                line-height: 120%;
                text-align: center;
                color: #106090;
            }
        }
        #slider_produtos_relacionados_not{
            display: flex;
            justify-content: center;
            margin-top: 40px;
            .single_produto{
                width: 400px;
                max-width: 100%;
            }
        }
        .holder_produtos{
            margin-top: 80px;
            .owl-nav{
                position: absolute;
                top: -40px;
                right: 10px;
                display: flex;
                gap: 10px;
                &.disabled{
                    display: none;
                }
                button{
                    border: 1px solid #106090;
                    border-radius: 9999px;
                    background: transparent;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    width: 30px;
                    height: 40px;
                }
            }
            .single_produto{
                padding: 10px;
                a{
                    text-decoration: none;
                    color: inherit;
                }
                .holder_single_produto{
                    display: flex;
                    flex-wrap: wrap;
                    background: #FFFFFF;
                    border-radius: 12px;
                    padding: 30px 10px 30px 30px;
                    align-items: center;
                    height: 100%;
                    .info_prod{
                        width: 55%;
                        .titulo{
                            font-family: 'Archivo', sans-serif;
                            font-style: normal;
                            font-weight: 600;
                            font-size: 20px;
                            line-height: 120%;
                            text-transform: capitalize;
                            color: #106090;
                        }
                        .descricao{
                            font-family: 'Archivo', sans-serif;
                            font-style: normal;
                            font-weight: 600;
                            font-size: 14px;
                            line-height: 120%;
                            text-transform: capitalize;
                            color: #3B3B3B;
                        }
                        .botao{
                            margin-top: 50px;

                            button{
                                font-size: 14px;
                            }
                        }
                    }
                    .imagem{
                        width: 45%;
                        position: relative;
                        padding-bottom: 50%;
                        height: 0;
                        img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }
                }
            }
        }

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

                .cabecalho{
                    .titulo{
                        font-size: 40px;
                    }
                }
                .holder_produtos{
                    .single_produto{
                        .holder_single_produto{
                            .info_prod{
                                .titulo{
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .cabecalho{
                    .titulo{
                        font-size: 30px;
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .cabecalho{
                    .titulo{
                        font-size: 25px;
                    }
                }
                .holder_produtos {
                    .single_produto {
                        .holder_single_produto {
                            padding: 15px 10px 15px 15px;
                        }
                    }
                }

            }
        }
    }
}


.zoom-box{
    position: relative;
}
.zoom-box img{
    vertical-align: bottom;
}
.zoom-box .zoom-selector{
    position: absolute;
    background-image: url("/site/js/plugins/magnify-image-hover/css/images/selector.png");
    background-repeat: repeat;
    display: none;
    cursor: crosshair;
}
.zoom-box .viewer-box{
    position: absolute;
    border: 1px solid rgb(239,237,240);
    display: none;
    overflow: hidden;
    max-width: 200px;
    max-height: 200px;
    border-radius: 50%;
}
.zoom-box .viewer-box>img{
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0.7);
    -moz-transform: scale(0.7);
    -webkit-transform: scale(0.7);
}

/*==================================================================================================*/
/*PESQUISA*/
/*==================================================================================================*/
#pesquisa{
    font-size: 18px;

    @media screen and (max-width: 1200px) {
        &{
            font-size: 16px;
        }
    }
    .titulo{
        font-family: 'Assistant';
        font-style: normal;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        text-align: center;
        color: #106090;

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

    .form{
        width: 524px;
        max-width: 100%;
        margin: 30px auto 0 auto;
        .single_input{
            position: relative;
            input{
                width: 100%;
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 14px;
                line-height: 16px;
                color: #6A6A6A;
                padding: 18px 18px 18px 26px;
                background: #FFFFFF;
                border: 1px solid rgba(16, 96, 144, 0.3);
                border-radius: 36px;
            }
            button{
                position: absolute;
                background: transparent;
                font-size: 22px;
                color: #106090;
                right: 8px;
                top: 11px;
                border: none;
            }
        }
    }
    .nav-tabs{
        .nav-item{
            .nav-link{
                font-family: 'Assistant', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 20px;
                line-height: 120%;
                color: #106090;
                padding: 10px 20px;
                border: none;
                border-radius: 0;
                &.active{
                    border-bottom: 2px solid #106090;
                    font-weight: 700;
                }
                &:hover{
                    border-bottom: 2px solid #106090;
                }
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .nav-item{
                    .nav-link{
                        font-size: 18px;
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .nav-item{
                    .nav-link{
                        font-size: 16px;
                    }
                }
            }
        }
    }

    .registos_pesquisa{
        display: flex;
        flex-wrap: wrap;
        .registo_pesquisa{
            width: Calc(100% / 3);
            padding: 10px;
            .holder_registo_pesquisa{
                background: #FFFFFF;
                box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
                border-radius: 12px;
                padding: 24px;
                height: 100%;
                display: flex;
                flex-wrap: wrap;
                align-content: space-between;
                align-items: center;
            }
            .img{
                position: relative;
                padding-bottom: 30%;
                height: 0;
                width: 35%;
                img{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
            .content{
                width: 65%;
                padding-left: 40px;
                h3{
                    font-family: 'Assistant', sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 120%;
                    color: #106090;
                    margin: 0;
                }
            }
        }
        @media screen and (max-width: 1400px) {
            &{
                .registo_pesquisa{
                    .content{
                        padding-left: 30px;
                        h3{
                            font-size: 18px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .registo_pesquisa{
                    width: 50%;
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                .registo_pesquisa{
                    .content{
                        width: 65%;
                        padding-left: 40px;
                        h3{
                            font-size: 16px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {
            &{
                .registo_pesquisa{
                    width: 100%;
                }
            }
        }
    }
}
/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/
footer{
    .footer{
        background: #106090;
        h3{
            font-family: 'Archivo', sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 15px;
            line-height: 150%;
            color: #FFFFFF;
            margin-bottom: 20px;
        }
        .coluna{
            width: 30%;
            &:first-child{
                width: 40%;
            }
        }
        .logo{
            width: 100px;
            img{
                max-width: 100%;
            }
        }
        .morada{
            padding-left: 40px;
            max-width: 255px;
        }
        .single_contactos{
            margin-bottom: 20px;
            &,
            h4, a{
                font-family: 'Archivo', sans-serif;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 150%;
                color: rgba(250, 250, 250, 0.980392);
            }
            h4{
                margin-bottom: 0;
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
        .menus{
            a{
                text-decoration: none;
                &:hover{
                    text-decoration: underline;
                }
            }
            ul{
                margin: 0;
                padding: 0;
                list-style: none;
                li{
                    &:first-child{
                        padding-top: 0;
                    }
                    &:last-child{
                        padding-bottom: 0;
                    }
                    padding: 6px 0;
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                .single_contactos{
                    margin-bottom: 20px;
                    &,
                    h4, a{
                        font-size: 15px;
                    }
                }
                .logo{
                    width: 70px;
                }
                .morada{
                    padding-left: 20px;
                    max-width: 240px;
                }
            }
        }

        @media screen and (max-width: 992px){
            &{
                .holder_footer{
                    flex-wrap: wrap;
                }
                .coluna{
                    width: 50%;
                    &:first-child{
                        width: 100%;
                        margin-bottom: 40px;
                        flex-wrap: wrap;
                    }
                }
                .morada{
                    width: 100%;
                    max-width: 100%;
                    padding-left: 0;
                    margin-top: 40px;
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                .holder_footer{
                    flex-wrap: wrap;
                }
                .coluna{
                    width: 100%;
                    margin-bottom: 40px;
                    text-align: center;
                }
                .logo{
                    margin: 0 auto;
                }
            }
        }
    }
    .lower_footer{
        position: relative;
        padding: 30px;
        flex-wrap: wrap;
        &, a{
            font-family: 'Archivo', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 12px;
            line-height: 120%;
            color: #106090;
            text-decoration: none;
        }
        a:hover{
            text-decoration: underline;
        }
        .coluna_esquerda{
            width: 50%;
        }
        .redes_sociais{
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            .single_rede{
                a{
                    font-size: 25px;
                }
            }
        }
        .links{
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            .single_link{
                a{

                }
            }
        }
        .copyright{
            margin-bottom: 15px;
        }
        .apoios{
            gap: 20px;
            flex-wrap: wrap;
            .single_apoio{
                width: 100%;
                img{
                    max-width: 100%;
                }
            }
        }
        img.animais{
            max-width: 50%;
            position: absolute;
            right: 0;
            top: 20%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
        }

        @media screen and (max-width: 992px) {
            &{
                display: flex;
                .coluna_esquerda{
                    width: 100%;
                    text-align: center;
                }
                .custom_container{
                    order: 2;
                }
                img.animais{
                    order: 1;
                    max-width: 100%;
                    display: block;
                    position: relative;
                    right: unset;
                    top: unset;
                    transform: unset;
                    -moz-transform: unset;
                    -webkit-transform: unset;
                    margin: -85px auto 40px auto;
                }
                .redes_sociais, .apoios, .links{
                    justify-content: center;
                }
            }
        }
    }
}


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


.balao_whatsapp{
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    position: fixed;
    bottom: 85px;
    right: 10px;
    z-index: 1000;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 33px;
}

.balao_whatsappa {
    color: #fff;
}

.balao_whatsapp:hover, .balao_whatsapp:hover a{
    color: #fff;
}

/*MOBILE*/
@media screen and (max-width:500px){
    .balao_whatsapp{
        width: 45px;
        height: 45px;
        bottom: 75px;
    }
    .balao_whatsapp svg{
        width: 25px;
        height: 25px;
    }
}