:root {
    --primary-color: #E83025;
    --secondary-color: #2C1114;
    --white-color: #FFFFFF;
    --text-color: #000000;
    --bordeaux-gradiant: linear-gradient(203.16deg, #2C1114 36.19%, #592C31 72.37%);
    --font-family: "Zalando Sans SemiExpanded", sans-serif;
}
html, body{
    width: 100%;
    height: 100%;
    position: relative;
}

body{
    background-color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    font-family: var(--font-family);
    color: var(--text-color);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--font-family);
}
body.open{
    overflow: hidden;
}


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

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

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

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

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

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

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

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


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

.iframe_holder{
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
}

.iframe_holder iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


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

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


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


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

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

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

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

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

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

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    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;

    .faixa_topo{
        padding: 10px 0;
        background: var(--secondary-color);
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        font-weight: 600;
        font-size: 14px;
        line-height: 17px;
        color: var(--white-color);
        text-align: center;
        a{
            color: inherit;
            text-decoration: none;
            &:hover{
                text-decoration: underline;
            }
        }
    }
    .holder_menu{
        background: transparent;
        padding: 45px 0;
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }
    &.scroll{

        .holder_menu{
            background: #E83025;
            padding: 20px 0;
        }
        .faixa_topo{
            display: none;
        }
    }
    .navbar-header {
        float: unset;
        display: inline-block;
        img{
            width: 150px;
            max-width: 100%;
        }

    }
    .menu-toggler{
        position: absolute;
        background: transparent;
        border: 0;
        width: 35px;
        top: 10px;
        right: 2%;
        cursor: pointer;

        display: none;

        #nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
            width: 38px;
            height: 45px;
            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: 5px;
                width: 100%;
                background: #fff;
                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: 10px;
                }
                &:nth-child(3) {
                    top: 20px;
                }
            }
            &.open {
                span {
                    background: #fff;
                    -webkit-transition: .25s ease-in-out;
                    -moz-transition: .25s ease-in-out;
                    -o-transition: .25s ease-in-out;
                    transition: .25s ease-in-out;
                    &:nth-child(1) {
                        top: 18px;
                        -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: 18px;
                        -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% - 156px);
        text-align: right;
        vertical-align: middle;

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

        }
        .menu-nav{
            list-style: none;
            margin: 0;
            padding: 0;
            .dropdown{
                display: inline-block;
                margin: 0 15px;
                cursor: pointer;
                color: #fff;
                a{
                    color: #FFFFFF;
                    text-decoration: none !important;
                    display: inline-flex;
                    gap: 5px;
                    align-items: center;
                    i{
                        font-size: 16px;
                    }
                }
                .dropdown-toggle::after {
                    display: none;
                }
                a:hover,
                &.active > a,
                &.active:hover > a {
                    color: var(--primary-color);
                    text-decoration: none !important;
                }
                .dropdown-menu {
                    background-color: #fff;
                    cursor: default;
                    text-align: left;
                    color: #000;
                    margin-top: 20px;
                    top: 5px;
                    padding: 0;
                    min-width: 243px;
                    a {
                        color: #000;
                    }

                    a:hover,
                    li.active > a,
                    li.active:hover > a {
                        color: var(--primary-color);
                        text-decoration: none !important;
                        background-color: transparent;
                    }
                    li{
                        padding: 10px 20px;
                    }

                }
            }

        }

    }
    &.scroll{
        .menu{

            .menu-nav{
                .dropdown{

                    a:hover,
                    &.active > a,
                    &.active:hover > a {
                        color: var(--secondary-color);
                    }
                }
            }
        }
    }
    @media screen and (max-width: 992px) {

        &{
            .navbar-header {
                top: -15px;
                float: unset;
                display: inline-block;
                width: Calc(100% - 39px);
                img{
                    width: 70px;
                }
            }
            .menu-toggler{
                display: inline-block;
                position: relative;
                top: 26px;
            }
            .menu {
                width: 100%;
                padding: 40px 0 30px 0;

                display: none;
                text-align: left;
                padding-bottom: 100px;
                .menu-nav {
                    padding: 0;
                }
                .dropdown {
                    display: block;
                    width: 100%;
                    margin: 15px 0;
                    a{
                        font-size: 17px;
                        font-weight: 400;
                    }

                }

            }
        }
    }

}



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

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

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


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

    .bloco{
        padding: 40px 0;
    }
}



/*==================================================================================================*/
/*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{
    position: relative;
    width: 100%;
    background: #3D3D3D;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.footer h2{
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer h3{
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer p,
.footer label,
.footer a{
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.lower_footer {
    padding: 0 0 30px 0;
    background: #3D3D3D;
    text-align: center;
    position: relative;
}

.lower_footer hr {
    margin-top: 0;
    margin-bottom: 30px;
    border: 0;
    border-top: 1px solid #979797;
}

.lower_footer p,
.lower_footer a{
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 300;
}

#newsletter_response{
    font-size: 13px;
}

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

}


.politica_privacidade table{
    max-width: 100% !important;
    border: none !important;
}

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