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

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

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

body.open{
    overflow: hidden;
}
a{
    text-decoration: none;
}

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

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

.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;

    &.open{
        display: flex;
    }
    &:after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .holder_popup{
        position: relative;
        background: #fff;
        border-radius: 30px;
        z-index: 2;
        max-width: 90%;
        width: 245px;
        padding: 10px 15px 15px;
        text-align: right;
        .close{
            cursor: pointer;
            position: relative;
            color: #0877F4;
            display: inline-block;
            font-size: 20px;
            margin-bottom: 10px;
            margin-right: 10px;
            margin-top: 10px;
        }
        .single_idioma{
            text-align: left;
            padding: 10px;
            border-radius: 20px;
            &.active,
            &:hover{
                background: #f1f1f1;
            }
            a{
                display: inline-flex;
                align-items: center;
                gap: 10px;
                color: #000;
                font-size: 18px;
            }
            .icon_flag{
                img{
                    width: 20px;
                    height: 20px;
                    object-fit: cover;
                    border-radius: 50%;
                    margin-top: -4px;
                }
            }
        }

    }
}
#popup_holder{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;

    &:after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .close{
        cursor: pointer;
        position: absolute;
        color: #fff;
        top: 10px;
        right: 10px;
        z-index: 3;
    }

    a{
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .img{
        position: relative;
        height: 400px;
        z-index: 2;
        width: 800px;
        display: inline-block;
        max-width: 100%;

        img{
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            position: absolute;
            object-fit: cover;
        }
    }


    &.close{
        display: none !important;
    }
}

.iframe_holder{
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
    iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

}


@media (min-width: 768px){
    .custom_container {
        max-width: 750px;
    }
}

@media (min-width: 992px){
    .custom_container {
        max-width: 970px;
    }
}


@media (min-width: 1200px){
    .custom_container {
        max-width: 1099px;
    }
}


@media (min-width: 1300px){
    .custom_container {
        max-width: 1199px;
    }
}

@media (min-width: 1400px){
    .custom_container {
        max-width: 1299px;
    }
}

@media (min-width: 1500px){
    .custom_container {
        max-width: 1399px;
    }
}

@media (min-width: 1600px){
    .custom_container {
        max-width: 1499px;
    }
}

.custom_container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.btn1{
    background: #0877F4;
    border-radius: 31px;
    font-family: "Figtree", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    padding: 20px 30px;
    border: 1px solid #0877F4;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    &:hover{
        transform: scale(1.03);
        -moz-transform: scale(1.03);
        -webkit-transform: scale(1.03);
    }
    &.v2{
        background: #FFFFFF;
        color: #0877F4;
        border: 1px solid #FFFFFF;
        &:hover{
            background: transparent;
            color: #FFFFFF;
            transform: scale(1.03);
            -moz-transform: scale(1.03);
            -webkit-transform: scale(1.03);
        }
    }
    &.v3{
        background: transparent;
        color: #ffff;
        border: 1px solid #FFFFFF;
        &:hover{
            background: #FFFFFF;
            color: #0877F4;
            transform: scale(1.03);
            -moz-transform: scale(1.03);
            -webkit-transform: scale(1.03);
        }
    }
    &.seta{
        border: 1px solid #FFFFFF;
        background: #FFFFFF;
        align-items: center;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 120%;
        color: #1B2432;
        gap: 90px;
        padding: 8px 8px 8px 25px;
        display: inline-flex;
        &:hover{
            background: #FFFFFF;
            color: #0877F4;
            transform: scale(1.03);
            -moz-transform: scale(1.03);
            -webkit-transform: scale(1.03);
        }
    }
    @media screen and (max-width: 1200px){
        &{
            font-size: 14px;
            &.seta{
                font-size: 16px;
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            font-size: 14px;
            &.seta{
                font-size: 14px;
            }
        }
    }
}

.titulo_small{
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    color: #0877F4;
    margin-bottom: 15px;

    @media screen and (max-width: 1400px) {
        &{
            font-size: 18px;
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            font-size: 16px;
        }
    }
    @media screen and (max-width: 992px) {
        &{
            font-size: 14px;
        }
    }
}
.titulo{
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #1B2432;
    @media screen and (max-width: 1400px) {
        &{
            font-size: 32px;
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            font-size: 30px;
        }
    }
    @media screen and (max-width: 992px) {
        &{
            font-size: 28px;
        }
    }
    @media screen and (max-width: 767px) {
        &{
            font-size: 26px;
        }
    }
}
.c_red{
    color: #EE1F1F;
}
/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.faixa_idiomas{
    position: fixed;
    background: #DCEBFD;
    padding: 12px 0;
    z-index: 7;
    top: 0;
    left: 0;
    width: 100%;
    &.mobile{
        display: none;
    }
    .holder_faixa_idiomas{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 24px;
        .frase{
            font-weight: 400;
            font-size: 12px;
            line-height: 120%;
            color: #000000;
        }
        .language{
            padding: 4px 15px 4px 5px;
            background: #BED3EC;
            border-radius: 31px;
            a{
                display: flex;
                gap: 9px;
                align-items: center;
                text-decoration: none;
                &.dropdown-toggle::after {
                    display: none;
                }
            }
            .dropdown-menu {
                background: #bed3ec;
                border: none;
                border-radius: 20px;
                margin-top: 5px !important;
                padding: 10px;

            }
            .single_idioma{
                margin: 5px 0;
            }
            .icon_flag{
                img{
                    width: 18px;
                    height: 18px;
                    border-radius: 50%;
                    position: relative;
                    overflow: hidden;
                    object-fit: cover;
                }
            }
            .nome{
                font-weight: 500;
                font-size: 12px;
                line-height: 20px;
                align-items: center;
                color: #1B2432;
            }
        }
    }

    @media screen and (max-width: 992px) {
        &{
            position: relative;
            margin-top: 100px;
            background: #DCEBFD;
            border-radius: 30px 30px 0px 0px;

            &.mobile{
                display: block;
            }
        }
    }
}
.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    padding: 140px 0 70px 0;
    width: 100%;
    z-index: 6;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    &.morepadding{
        padding-top: 70px;
    }
    .sombra{
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 100%;
        display: none;
    }
    &.open,
    &.scroll{
        background: #fff;
    }
    &.scroll,
    &.white{
        padding: 20px 0 20px 0;
        &.mpadding{
            padding-top: 70px;
        }
        &.morepadding{
            padding-top: 20px;
        }
        .navbar-header {
            img{
                &.logo_open{
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
        .menu {
            .botoes{
                .btn1{
                    &.v3 {
                        background: transparent;
                        color: #1B2432;
                        border: 1px solid #DCEBFD;
                        &:hover{
                            background: #1B2432;
                            color: #DCEBFD;
                            border: 1px solid #1B2432;
                        }
                    }
                    &.v2 {
                        background: #0877F4;
                        color: #DCEBFD;
                        border: 1px solid #0877F4;
                        &:hover{
                            background: transparent;
                            color: #0877F4;
                            border: 1px solid #0877F4;
                        }
                    }
                }
            }
            .menu-nav {
                .dropdown {
                    a, span {
                        color: #1B2432;
                    }
                    & a:hover, &.active > a, &.active:hover > a, & span:hover, &.active > span, &.active:hover > span {
                        color: #0877F4;
                    }
                }
            }
        }
        .menu-toggler {
            #nav-icon1, & #nav-icon2, & #nav-icon3, & #nav-icon4 {
                span {
                    background: #0877F4;
                }
            }
        }

    }
    .navbar-header {
        float: unset;
        width: 290px;
        display: inline-block;
        position: relative;
        a{
            position: relative;
        }
        img{
            width: 270px;
            max-width: 100%;
            &.logo_open{
                opacity: 0;
                visibility: hidden;
                position: absolute;
                left: 0;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
            }
        }
    }
    .menu-toggler{
        position: absolute;
        background: transparent;
        border: 0;
        width: 34px;
        padding: 0;
        top: 10px;
        cursor: pointer;

        display: none;


        #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
            width: 34px;
            height: 20px;
            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;
            text-align: center;
            span {
                display: block;
                position: absolute;
                height: 3px;
                background: #fff;
                opacity: 1;
                left: 50%;
                border-radius: 20px;
                -webkit-transform: rotate(0deg) translateX(-50%);
                -moz-transform: rotate(0deg) translateX(-50%);
                -o-transform: rotate(0deg) translateX(-50%);
                transform: rotate(0deg) translateX(-50%);
                -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;
                    width: 100%;
                }
                &:nth-child(2) {
                    top: 8px;
                    width: 60%;
                }
                &:nth-child(3) {
                    top: 16px;
                    width: 20%;
                }
            }

            &.open {
                span {
                    background: #1B2432;
                    -webkit-transition: .25s ease-in-out;
                    -moz-transition: .25s ease-in-out;
                    -o-transition: .25s ease-in-out;
                    transition: .25s ease-in-out;
                    &:nth-child(1) {
                        top: 10px;
                        left: 0;
                        -webkit-transform: rotate(140deg);
                        -moz-transform: rotate(140deg);
                        -o-transform: rotate(140deg);
                        transform: rotate(140deg);
                    }
                    &:nth-child(2) {
                        opacity: 0;
                        left: -60px;
                        width: 100%;
                    }
                    &:nth-child(3) {
                        top: 10px;
                        width: 100%;
                        left: 0;
                        -webkit-transform: rotate(-140deg);
                        -moz-transform: rotate(-140deg);
                        -o-transform: rotate(-140deg);
                        transform: rotate(-140deg);
                    }
                }
            }
        }
    }
    .menu{
        display: inline-block;
        margin: 0;
        float: unset;
        color: #fff;
        width: Calc(100% - 295px);
        text-align: right;
        vertical-align: middle;
        position: relative;
        ul{
            padding: 0;
        }
        .botoes{
            display: inline-flex;
            width: 345px;
            gap: 20px;
            justify-content: right;
            align-items: center;

            .btn1{
                font-size: 14px;
                padding: 15px 14px;
                &.v3:hover{
                    transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -webkit-transform: scale(1.1);
                }
            }
        }
        .menu-nav{
            list-style: none;
            margin: 0;
            display: inline-block;
            width: Calc(100% - 350px);
            text-align: center;
            .dropdown{
                display: inline-block;
                margin: 0 30px;
                color: #fff;
                a, span{
                    font-style: normal;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 120%;
                    text-align: center;
                    color: #DCEBFD;
                    display: block;
                    text-decoration: none !important;
                    cursor: pointer;
                }

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

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

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

            }

        }
    }

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

    @media screen and (max-width: 1400px) {
        & {
            .navbar-header {
                width: 245px;
                img{
                    width: 225px;
                }
            }
            .menu {
                width: Calc(100% - 250px);
                .botoes {
                    width: 245px;
                    .btn1 {
                        font-size: 13px;
                        padding: 10px 20px;
                    }
                }
                .menu-nav {
                    width: Calc(100% - 250px);
                    .dropdown {
                        margin: 0 20px;
                        a {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        & {
            .navbar-header {
                width: 205px;
                img{
                    width: 195px;
                }
            }
            .menu {
                width: Calc(100% - 210px);
                .menu-nav {
                    width: Calc(100% - 214px);
                    .dropdown {
                        margin: 0 15px;
                    }
                }
                .botoes {
                    width: 208px;

                    .btn1 {
                        font-size: 13px;
                        padding: 5px 15px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            padding: 16px 0;
            &.morepadding {
                padding-top: 20px;
            }
            .sombra{
                z-index: 0;
            }
            .custom_container{
                z-index: 1;
                position: relative;
            }
            &.open{
                height: 100vh;

                .sombra{
                    display: block;
                }
            }
            .navbar-header {
                float: unset;
                display: inline-block;
                width: Calc(100% - 39px);
                img{
                    width: 210px;
                }
            }
            &.open,
            &.scroll{
                .navbar-header {
                    img{
                        &.logo{
                            opacity: 0;
                        }
                        &.logo_open{
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }
            }

            &.scroll{
                padding: 16px 0;
                &.mpadding{
                    padding-top: 16px;
                }
            }
            .menu-toggler{
                display: inline-block;
                position: relative;
                top: 8px;
            }
            .menu {
                width: 100%;
                padding: 40px 0 0 0;
                text-align: left;
                display: none;
                height: Calc(100vh - 50px);
                overflow-y: auto;
                flex-wrap: wrap;
                align-items: stretch;
                align-content: space-between;
                .botoes {
                    width: 100%;
                    display: block;
                    text-align: center;
                    margin-top: 90px;
                    .btn1{
                        width: 238px;
                        padding: 17px 35px;
                        &.v3 {
                            background: transparent;
                            color: #1B2432;
                            border: 1px solid #DCEBFD;
                        }
                        &.v2 {
                            background: #0877F4;
                            color: #DCEBFD;
                            border: 1px solid #0877F4;
                            margin-top: 5px;
                        }
                    }
                }
                .menu-nav {
                    padding: 0;
                    width: 100%;
                    text-align: left;
                    .dropdown {
                        display: block;
                        width: 100%;
                        margin: 0;
                        padding: 24px 0;
                        border-bottom: 1px solid rgba(0, 0, 0, 0.05);


                        &, span,
                        a{
                            font-style: normal;
                            font-weight: 400;
                            font-size: 20px;
                            line-height: 120%;
                            color: #1B2432;
                        }

                        & a:hover, &.active > a, &.active:hover > a, & span:hover, &.active > span, &.active:hover > span {
                            color: #0877F4;
                            font-weight: 600;
                        }
                    }
                }
            }
        }
    }
}


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


.banner{
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    margin-top: 0;
    .holder_slider{
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        img{
            width: 100%;
        }
        .single_banner{
            background-image: url(/site/imagens/fundo_banners.webp);
            border-radius: 0px 0px 60px 60px;
            &,
            .holder_content,
            .holder_content_img{
                overflow: hidden;
                width: 100%;
                height: 920px;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }
            .holder_content_img {
                .iframe_holder{
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
                }
            }
            .holder_slider {
                video{
                    position: absolute;
                    width: 100%;
                    /* height: 100%; */
                    top: Calc( 50% - 36px );
                    left: 50%;
                    -webkit-transform: translate(-50%,-50%);
                    -ms-transform: translate(-50%,-50%);
                    transform: translate(-50%,-50%);
                    z-index: 1;
                }
            }
        }
    }

    .conteudo{
        position: absolute;
        top: Calc(50% + 50px);
        left: 0;
        right: 0;
        text-align: left;
        margin: auto;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        overflow: hidden;
        padding: 25px 0;
        .holder_conteudo{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            .texto{
                width: 50%;
                padding-right: 80px;
                &.w100{
                    width: 100%;
                }
            }
            .imagem{
                position: relative;
                width: 50%;

                .holder_imagem{
                    position: relative;
                    background: #DCEBFD;
                    border-radius: 10px;
                    padding: 14px;
                    width: 120%;
                }
                img, video{
                    border-radius: 10px;
                    width: 100%;
                }
                .texto {
                    padding: 24px 32px;
                    gap: 10px;
                    position: absolute;
                    width: 236px;
                    background: #E9F3FF;
                    box-shadow: 0px 0px 0px 5px rgba(134, 161, 197, 0.28);
                    border-radius: 20px;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 120%;
                    letter-spacing: -0.5px;
                    color: #0877F4;
                    text-align: center;
                    bottom: -15px;
                    right: Calc(100% - 120px);
                }
            }
        }
        .nome{
            font-family: "Figtree", sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 24px;
            line-height: 120%;
            color: #54E6D4;
        }
        .descricao{
            font-family: "Figtree", sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 28px;
            line-height: 120%;
            color: #FFFFFF;
            margin-top: 10px;
            h2{
                font-family: "Figtree", sans-serif;
                font-style: normal;
                font-weight: 600;
                font-size: 78px;
                line-height: 120%;
                color: #DCEBFD;
                margin-bottom: 25px;
            }
        }
        .mais_texto{
            font-family: "Figtree", sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 120%;
            color: #DCEBFD;
            margin-top: 25px;
        }
        .botao{
            margin-top: 35px;
        }
    }
    @media screen and (max-width: 1600px){
        &{
            .conteudo{
                .nome{
                    font-size: 22px;
                }
                .descricao{
                    font-size: 26px;
                    h2{
                        font-size: 68px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            .conteudo{
                .holder_conteudo{
                    .imagem{
                        .texto {
                            padding: 20px 22px;
                            width: 202px;
                            font-size: 14px;
                        }
                    }
                }
                .nome{
                    font-size: 20px;
                }
                .descricao{
                    font-size: 24px;
                    h2{
                        font-size: 58px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .holder_slider {
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: 820px;
                    }
                }
            }
            .conteudo{
                .nome{
                    font-size: 18px;
                }
                .descricao{
                    font-size: 22px;
                    h2{
                        font-size: 48px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .holder_slider {
                .single_banner {
                    &, .holder_content, .holder_content_img {
                        height: auto;
                        overflow: unset;
                    }
                }
                padding-bottom: 80px;
            }
            .conteudo{
                position: relative;
                transform: none;
                padding-top: 100px;
                overflow: unset;
                .holder_conteudo {
                    .texto {
                        width: 100%;
                        padding-right: 0;
                        text-align: center;
                    }
                    .imagem{
                        width: 100%;
                        margin-bottom: -80px;
                        margin-top: 40px;
                        .texto {
                            padding: 14px 22px;
                            width: auto;
                            min-width: 220px;
                            left: 50%;
                            transform: translateX(-50%);
                            -moz-transform: translateX(-50%);
                            -webkit-transform: translateX(-50%);
                        }
                        .holder_imagem {
                            width: 100%;
                        }
                        img{
                            width: 100%;
                        }
                    }
                }
                .nome{
                    font-size: 18px;
                }
                .descricao{
                    font-size: 22px;
                    h2{
                        font-size: 48px;
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .conteudo{
                .nome{
                    font-size: 16px;
                }
                .descricao{
                    font-size: 20px;
                    h2{
                        font-size: 40px;
                    }
                }
            }
        }
    }
}



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

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

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


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

    .bloco{
        padding: 60px 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*/
/*==================================================================================================*/

.problem{
    .cabecalho{
        position: relative;
        .sombra{
            position: absolute;
            z-index: 1;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 899px;
            width: 100%;
            svg{
                width: 100%;
                height: auto;
            }
        }
        .titulo_small, .titulo{
            position: relative;
            z-index: 2;
        }
    }
    .imagem{
        margin: 60px auto 0 auto;
        max-width: 850px;
        .holder_imagem{
            position: relative;
            background: #FFCDCD;
            border-radius: 10px;
            padding: 14px;
        }
        img, video{
            border-radius: 10px;
            width: 100%;
            position: relative;
        }
        position: relative;
        z-index: 2;
    }
    .holder_cards{
        display: flex;
        flex-wrap: wrap;
        margin-top: 45px;
        .single_card{
            width: Calc(100% / 5);
            padding: 8px;
            .holder_single_card{
                border: 2px solid #FFCDCD;
                border-radius: 30px;
                padding: 30px;
                text-align: center;
                height: 100%;
                .icon{
                    margin-bottom: 23px;
                    img{
                        width: 36px;
                        height: 36px;
                        object-fit: contain;
                    }
                }
                .nome{
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 120%;
                    color: #1B2432;
                }
            }
        }

        @media screen and (max-width: 1500px){
            &{
                .single_card{
                    .holder_single_card{
                        padding: 30px 20px;
                    }
                }
            }
        }

        @media screen and (max-width: 1400px){
            &{
                .single_card{
                    .holder_single_card{
                        padding: 30px 15px;
                        .nome{
                            font-size: 16px;
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 992px){
            &{
                justify-content: center;
                .single_card{
                    width: Calc(100% / 3);
                    .holder_single_card{
                        padding: 15px;
                    }
                }
            }
        }
        @media screen and (max-width: 567px){
            &{
                justify-content: center;
                .single_card{
                    width: Calc(100% / 2);
                    &:last-child{
                        width: 100%;
                    }

                    .holder_single_card{
                        .icon{
                            margin-bottom: 15px;
                        }
                    }
                }
            }
        }
    }

    .frase{
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 120%;
        text-align: center;
        color: #1B2432;
        max-width: 434px;
        margin: 50px auto 0 auto;
        @media screen and (max-width: 1400px) {
            &{
                font-size: 24px;
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                font-size: 22px;
            }
        }
    }
    .vantagens{
        padding: 60px 60px;
        background: rgba(255, 205, 205, 0.22);
        border: 2px solid #FFCDCD;
        border-radius: 51px;
        margin-top: 70px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        .single_card{
            width: Calc(100% / 3);
            padding: 0 40px;
            &.categoria{
                .holder_single_card{

                }
            }
            .holder_single_card{
                &, .nome{
                    font-size: 20px;
                    line-height: 120%;
                    color: #1B2432;
                }
                .icon{
                    img{
                        width: 40px;
                        height: 40px;
                        object-fit: contain;
                    }
                    margin-bottom: 15px;
                }
            }
        }

        @media screen and (max-width: 1400px) {
            &{
                .single_card{
                    .holder_single_card{
                        &, .nome{
                            font-size: 18px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 1300px) {

            &{
                .single_card{
                    padding: 0 30px;
                }
            }
        }
        @media screen and (max-width: 1200px) {
            &{
                .single_card{
                    padding: 0 20px;
                    .holder_single_card{
                        &, .nome{
                            font-size: 16px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 992px) {
            &{
                padding: 50px 60px;
                align-items: start;
                .single_card{
                    width: 50%;
                    &.categoria{
                        width: 100%;
                        margin-bottom: 30px;
                        text-align: center;
                    }
                    .holder_single_card{
                        &, .nome{
                            font-size: 16px;
                        }

                        .icon{
                            margin-bottom: 5px;
                            img{
                                width: 30px;
                                height: 30px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 567px) {
            &{
                padding: 40px 60px;
                .titulo {
                    font-size: 28px;
                }
                .single_card{
                    width: 100%;
                    padding: 30px 0;
                    &.categoria{
                        margin-bottom: 0;
                        padding-bottom: 0;
                    }
                    .holder_single_card{
                        &, .nome{
                            font-size: 20px;
                        }

                        .icon{
                            img{
                                width: 40px;
                                height: 40px;
                            }
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 360px) {
            &{
                padding: 40px;
                .titulo {
                    font-size: 26px;
                }
            }
        }
    }
}

.holder_info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    @media screen and (min-width: 993px){
        &.invert{
            .info{
                order: 2;
                padding-left: 80px;
                padding-right: 0;
                text-align: right;
            }
            .imagem {
                order: 1;
            }
        }
    }
    .info{
        width: 50%;
        padding-right: 80px;
    }
    .imagem{
        width: 50%;
        position: relative;

        .holder_imagem{
            position: relative;
            background: #DCEBFD;
            border-radius: 10px;
            padding: 14px;
        }
        img, video{
            border-radius: 10px;
            width: 100%;
        }
    }
    .frase{
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 120%;
        color: #1B2432;
        margin-top: 40px;
        max-width: 420px;
        margin-left: auto;
    }

    @media screen and (max-width: 992px){
        &{
            .info{
                width: 100%;
                padding-right: 0;
                text-align: center;
            }
            .imagem {
                width: 100%;
                position: relative;
                margin-top: 35px;
            }
        }
    }
}

.reality{
    position: relative;
    &:before{
        content: '';
        height: 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        position: absolute;
        z-index: -1;
        background-image: url(/site/imagens/fundo_realuty.png);
        background-repeat: no-repeat;
        width: 50%;
        background-position: left;
        background-size: 100%;
    }
    .holder_info{
        flex-wrap: wrap;
        margin-top: 30px;
        .single_info{
            width: 100%;
            padding: 20px 0;
            .icon{
                width: 40px;
            }
            .conteudo{
                width: Calc(100% - 40px);
                padding-left: 15px;
                .nome{
                    font-family: 'Figtree', sans-serif;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 120%;
                    color: #1B2432;
                }
                .descricao{
                    font-style: normal;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 120%;
                    color: #1B2432;
                }
            }
        }
    }

    @media screen and (max-width: 1200px){
        &{
            .holder_info{
                .single_info{
                    .conteudo{
                        .nome{
                            font-size: 18px;
                        }
                        .descricao{
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            padding-top: 0;

            &:before {
                content: '';
                height: 400px;
                left: 50%;
                top: -140px;
                transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                position: absolute;
                z-index: -1;
                background-image: url(/site/imagens/fundo_reality_mobile.png);
                background-repeat: no-repeat;
                width: 400px;
                max-width: 90%;
                background-position: center;
                background-size: 100%;
            }
            .holder_info{
                .single_info{
                    flex-wrap: wrap;
                    justify-content: center;
                    .conteudo{
                        width: 100%;
                        margin-top: 10px;
                        .nome{
                            font-size: 16px;
                        }
                        .descricao{
                            font-size: 14px;
                        }
                    }

                }
            }
        }
    }
}
.solution{
    background-image: url(/site/imagens/fundo_solution.webp);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

    .before_after{
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px;
        justify-items: center;
        .linha{
            display: flex;
            flex-wrap: wrap;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.8);
            width: 100%;
            &:last-child{
                border-bottom: none;
            }
            .single_info{
                &:first-child{
                    border-right: 1px dashed rgba(255, 255, 255, 0.8);
                }
            }
        }
        .single_before_after{
            display: inline-flex;
            flex-wrap: wrap;
            width: 50%;
            padding: 30px;
            h3{
                width: 100%;
                margin-bottom: 25px;
            }

            .nome{
                font-family: 'Figtree', sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 24px;
                line-height: 150%;
                color: rgba(255, 255, 255, 0.8);
                text-align: center;
            }
            &.after {
                .nome {
                    color: #54E6D4;
                }
                .linha {
                    .single_info {
                        .icon {
                            svg path {
                                fill: #54E6D4;
                            }
                        }
                    }
                }
            }
            .single_info{
                width: 50%;
            }
        }
        .after{
            .linha{
                border-color: #54E6D4;

                .single_info{
                    &:first-child{
                        border-color: #54E6D4;
                    }
                }
            }
        }

        .linha{
            .single_info{
                justify-content: left;
                padding: 30px;
                .icon{
                    width: 44px;
                }
                .conteudo{
                    width: Calc(100% - 44px);
                    padding-left: 20px;
                    .nome{
                        text-align: left;
                        margin: 0;
                    }
                }
                &:first-child{
                    justify-content: right;
                    .icon{
                        order: 2;
                    }
                    .conteudo{
                        order: 1;
                        text-align: right;
                        padding-left: 0;
                        padding-right: 20px;
                        .nome{
                            text-align: right;
                        }

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

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

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

                    }
                }
            }
        }
    }

    @media screen and (max-width: 1600px){
        &{
            .before_after {
                .linha {
                    .single_info {
                        .conteudo {
                            .nome {
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1500px){
        &{
            .before_after {
                .linha {
                    .single_info {
                        .icon{
                            width: 34px;
                            svg{
                                width: 100%;
                                height: auto;
                            }
                        }
                        .conteudo {
                            width: Calc(100% - 34px);
                            .nome {
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1400px){
        &{
            .frase {
                font-size: 18px;
            }
            .before_after {
                .single_before_after {
                    padding: 10px;
                    .nome {
                        font-size: 22px;
                    }
                }
                .linha {
                    .single_info {
                        padding: 20px;
                        .conteudo {
                            .nome {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }

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

                .single_before_after {
                    .nome {
                        font-size: 20px;
                    }
                }
                .linha {
                    .single_info {
                        padding: 15px;
                        .conteudo {
                            padding-left: 10px;
                            .nome {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 992px){
        &{
            .before_after {
                .single_before_after {
                    padding: 0;
                    width: 100%;
                    .nome {
                        font-size: 18px;
                    }
                    &.after {
                        margin-top: 40px;
                        .nome {
                            color: #54E6D4;
                        }
                    }
                }
                .single_before_after.after{
                    .linha {
                        .single_info {
                            .icon {
                                svg path {
                                    fill: #54E6D4;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 567px){
        &{
            .before_after {
                .linha {
                    .single_info {
                        .icon {
                            width: 20px;
                        }
                        .conteudo {
                            width: Calc(100% - 20px);
                            .nome {
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.feedback{
    .holder_testemunhos{
        margin-top: 70px;
        @media screen and (min-width: 993px) {
            &{
                column-count: 3;
                gap: 15px;
            }
        }
        .coluna{
            width: Calc(100% / 3);
        }
        .single_testemunho{
            padding: 0 5px;

            @media screen and (min-width: 993px) {
                &{
                    break-inside: avoid;
                }
            }
            .holder_single_testemunho{
                background: rgba(220, 235, 253, 0.5);
                border-radius: 16px;
                padding: 30px 20px;
                break-inside: avoid;
                margin-bottom: 24px;

                .conteudo{
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 120%;
                    color: #1B2432;
                }
                .info_testemunho{
                    margin-top: 30px;
                    gap: 15px;
                    .icon{
                        img{
                            width: 50px;
                            height: 50px;
                            object-fit: cover;
                        }
                    }
                    .info{
                        .nome{
                            font-family: 'Figtree', sans-serif;
                            margin: 0;
                            font-style: normal;
                            font-weight: 500;
                            font-size: 20px;
                            line-height: 120%;
                            letter-spacing: -0.025em;
                            color: #1B2432;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px) {
        &{
            .holder_testemunhos{

                .single_testemunho{
                    .holder_single_testemunho{
                        .info_testemunho{
                            .info{
                                .nome{
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .holder_testemunhos{
                .single_testemunho{
                    .holder_single_testemunho{
                        .info_testemunho{
                            .info{
                                .nome{
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .zona_testemunhos.container{
                max-width: 100% !important;
                width: 100% !important;
                padding: 0;
            }
            .holder_testemunhos{
                .single_testemunho{
                    padding: 10px;
                    .holder_single_testemunho{
                        .info_testemunho{
                            .info{
                                .nome{
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        &{
            .holder_testemunhos{
                flex-wrap: wrap;
                margin-top: 40px;
                .coluna{
                    width: 50%;
                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        &{
            .holder_testemunhos{
                flex-wrap: wrap;
                .coluna{
                    width: 100%;
                }
                .single_testemunho {
                    padding: 10px;
                }
            }
        }
    }
}

.feedback{

    .owl-carousel .owl-stage-outer{
        overflow: unset;
    }

    .zona_clientes{
        margin-top: 50px;

        .holder_clientes{
            .single_cliente{
                padding: 0 30px;

                .holder_single_cliente{
                    background-color: #F6F9FF;
                    border-radius: 6px;
                    padding: 30px 40px;

                    .icon img{
                        width: 100%;
                        height: 60px;
                        object-fit: contain;
                    }
                }
            }
        }
    }
}

.calendario{
    position: relative;
    &:before{
        content: '';
        position: absolute;
        bottom: -100px;
        right: 0;
        width: 87%;
        height: 100%;
        background-image: url(/site/imagens/fundo_leads.webp);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: bottom right;
        z-index: -1;
    }
    .descricao{
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 120%;
        color: #1B2432;
        margin-top: 30px;
    }
    .botao{
        margin-top: 40px;
        .btn1{
            padding: 20px 15px;
        }
    }

    @media screen and (max-width: 1400px) {
        &{
            .descricao{
                font-size: 22px;
            }
        }
    }
    @media screen and (max-width: 1200px) {
        &{
            .descricao{
                font-size: 20px;
            }
        }
    }
    @media screen and (max-width: 992px) {
        &{
            .descricao{
                font-size: 20px;
                margin-top: 20px;
            }
        }
    }
}

.pricing {
    background-image: url(/site/imagens/fundo_pricing.webp);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    .categorias{
        text-align: center;
        margin-top: 30px;
        .holder_categorias{
            background: #DCEBFD;
            color: #0877F4;
            display: inline-flex;
            border-radius: 31px;

            .single_categoria{
                padding: 13px 20px;
                border-radius: 31px;
                font-weight: 500;
                font-size: 16px;
                line-height: 120%;
                cursor: pointer;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;

                &.active{
                    color: #fff;
                    background: #0877F4;
                }
                &:not(.active):hover{
                    background: rgb(11 119 244 / 10%);
                }
            }
        }
        @media screen and (max-width: 992px){
            &{
                .holder_categorias{
                    .single_categoria{
                        padding: 13px 15px;
                        font-size: 14px;
                    }
                }
            }
        }

    }
    .precos{
        display: flex;
        flex-wrap: wrap;
        margin-top: 60px;
        .single_coluna{
            width: Calc(100% / 4);
            padding: 5px;
            &:nth-child(2){
                .holder_single_coluna{
                    background: #F6F9FF;
                    svg path{
                        fill: #3891F6;
                    }
                    table{
                        th{
                            color: #3891F6;
                        }
                    }
                    .botao{
                        .btn1{
                            background: #3891F6;
                            border-color: #3891F6;
                        }
                    }
                }
            }
            &:nth-child(3){
                .holder_single_coluna{
                    background: #EEFEFC;
                    svg path{
                        fill: #00D1B7;
                    }
                    table{
                        th{
                            color: #00D1B7;
                        }
                    }
                    .botao{
                        .btn1{
                            background: #00D1B7;
                            border-color: #00D1B7;
                        }
                    }
                }
            }
            &:nth-child(4){
                .holder_single_coluna{
                    background: #F8EEF9;
                    svg path{
                        fill: #7B5BA7;
                    }
                    table{
                        th{
                            color: #7B5BA7;
                        }
                    }
                    .botao{
                        .btn1{
                            background: #7B5BA7;
                            border-color: #7B5BA7;
                        }
                    }
                }
            }
            .holder_single_coluna {
                padding: 50px;
                border-radius: 30px;
                table {
                    width: 100% !important;
                    text-align: center;
                    border: none;
                    th{
                        font-weight: 700;
                        font-size: 24px;
                        line-height: 120%;
                        padding-bottom: 40px;
                    }
                    td{
                        padding: 10px 0;
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 120%;
                        letter-spacing: 0.025em;
                        color: #1B2432;
                    }
                }

                .botao{
                    margin-top: 50px;
                    .btn1{
                        width: 100%;
                        padding-left: 10px;
                        padding-right: 10px;
                    }
                }
            }

            &:nth-child(1){
                table {
                    text-align: left;

                    th {
                        font-weight: 400;
                    }
                }
            }
            @media screen and (min-width: 993px){
                &{
                    &:nth-child(2),
                    &:nth-child(3),
                    &:nth-child(4){

                        .holder_single_coluna{
                            table{
                                tr{
                                    td:first-child{
                                        display: none;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 992px){
                &{
                    &:nth-child(1){
                        display: none;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1500px){
        &{
            .precos{
                .single_coluna{
                    .holder_single_coluna {
                        table {
                            th{
                                font-size: 22px;
                            }
                            td{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1400px){
        &{
            .precos{
                .single_coluna{
                    .holder_single_coluna {
                        padding: 40px 30px;
                        table {
                            th{
                                font-size: 20px;
                            }
                            td{
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 1200px){
        &{
            .precos{
                .single_coluna{
                    .holder_single_coluna {
                        padding: 30px 20px;
                        table {
                            th{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px){
        &{
            .holder_precos{
                width: 100%;
                overflow-x: auto;
            }
            .precos{
                width: 1275px;
                .single_coluna{
                    width: Calc(100% / 3);
                    .holder_single_coluna {
                        padding: 30px 20px;
                        table {
                            text-align: left;
                            th{
                                font-size: 16px;
                            }
                            td:last-child{
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 567px){
        &{
            .precos{
                width: 1050px;
            }
        }
    }
}

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


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


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




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

}

.pagina_noticias .listagem_noticias .paginacao{

}

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

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

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

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

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

.faqs{

}

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

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

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


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

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


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

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

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

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

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

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

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

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

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

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

footer{
    background: #0A61C3;
    border-radius: 50px 50px 0 0;
    .footer{
        background: #0877F4;
        border-radius: 50px;
        padding: 70px 0 30px;
        &,
        p,
        label,
        a{
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            line-height: 120%;
            color: #DCEBFD;
            margin: 0;
        }
        .logo{
            width: 100%;
            margin-top: 30px;
            img{
                width: 100%;
            }
        }
        .holder_footer{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
            align-items: center;

            .menus{
                display: flex;
                flex-wrap: wrap;
                gap: 25px;
                align-items: center;

                .single_menu{

                    .dp_goto{
                        cursor: pointer;
                    }

                    .idioma_footer{
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        cursor: pointer;
                        justify-content: center;
                        .icon_flag{
                            img{
                                width: 15px;
                                height: 15px;
                                object-fit: cover;
                                border-radius: 50%;
                                margin-top: -4px;
                            }
                        }
                    }
                }
            }
            .contactos{
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                align-items: center;
                .redes_sociais{
                    display: flex;
                    flex-wrap: wrap;
                    gap: 5px;
                    align-items: center;
                    .single_rede{
                        width: 48px;
                        height: 48px;
                        border: 2px solid rgb(220 235 253 / 15%);
                        border-radius: 19.5px;
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        &, a{
                            color: #DCEBFD;
                        }
                        i{
                            font-size: 20px;
                        }
                        &:hover{
                            background: #DCEBFD;
                            &, a{
                                color: #0877F4;
                            }
                        }
                    }
                }
            }

        }

        @media screen and (max-width: 992px){
            .holder_footer{
                .menus{
                    width: 100%;
                    gap: 0;
                    .single_menu{
                        width: 50%;
                        padding: 15px;
                        text-align: center;
                    }
                }
                .contactos{
                    width: 100%;
                    justify-content: center;
                    .single_contacto{
                        text-align: center;
                    }
                    .redes_sociais{
                        display: flex;
                        flex-wrap: wrap;
                        gap: 5px;
                        align-items: center;
                        width: 100%;
                        justify-content: center;
                    }
                }

            }
        }
    }


    .lower_footer {
        padding: 15px 0;
        text-align: center;
        position: relative;

        &,
        p,
        a{
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            line-height: 120%;
            color: #DCEBFD;
            margin: 0;
        }
        .holder_lower_footer{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
            .conteudo{
                display: flex;
                flex-wrap: wrap;
                gap: 25px;
                width: Calc(100% - 190px);
            }
            .logo{
                width: 160px;
                img{
                    width: 100%;
                }
            }
        }
    }

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


        .lower_footer {
            padding: 60px 0 40px;
            .holder_lower_footer{
                .logo{
                    order: 1;
                    width: 100%;

                    img{
                        width: 230px;
                    }
                }
                .conteudo{
                    order: 2;
                    width: 100%;
                    justify-content: center;
                    .single_menu:nth-child(1){
                        width: 100%;
                    }
                }
            }
        }
    }

}


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

}