﻿textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
}

::selection {
    background: var(--laranja-escuro);
    color: #fff;
}

:root {
    --laranja-escuro: #f05a23;
    --laranja-padrao: #f7921e;
    --laranja-claro: #ffc260;
    --verde: #5ce600;
    --verde-escuro: #5ac000;
}

* {
    background-position: 0 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    font-family: "Titillium Web", sans-serif;
}

::placeholder {
    color: #ccc;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #ccc;
}

::-ms-input-placeholder {
    color: #ccc;
}

html {
    font-size: 62.5%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    html::-webkit-scrollbar {
        width: 8px;
        height: 10px;
    }

    html::-webkit-scrollbar-track {
        background-color: var(--laranja-escuro);
    }

    html::-webkit-scrollbar-thumb {
        background-color: var(--laranja-claro);
    }

body {
    overflow: hidden;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
a {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    line-height: 100%;
}

a,
button {
    display: block;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

svg {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.textPadrao {
    font-size: 16px;
    color: #666;
    line-height: 150%;
}

.centro1250 {
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}

.centro960 {
    width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

.centro700 {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

h1 {
    font: Helvetica, sans-serif;
    width: 100%;
}

h2 {
    font-size: 35px;
    color: #999;
    font-weight: 300;
    letter-spacing: -0.5px;
}

    h2 b {
        font-weight: 300;
        color: var(--laranja-escuro);
    }

.left {
    float: left;
}

.right {
    float: right;
}

.overflow {
    overflow: hidden;
}

.espPadrao {
    padding-left: 7vw;
    padding-right: 7vw;
    width: 100%;
}

.espPadraoMaior {
    padding-left: 11vw;
    padding-right: 11vw;
    width: 100%;
}

.link {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--laranja-padrao);
}

    .link svg {
        fill: #fff;
        width: 16px;
        display: block;
        margin-right: 10px;
    }

.btPadrao {
    border-radius: 90px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    padding: 0 30px;
    height: 40px;
    text-transform: uppercase;
    display: flex;
    cursor: pointer;
    justify-content: center;
    border: 0;
    transition: 0.3s;
    align-items: center;
    background: linear-gradient(81deg,#ff500f,#ff8700);
}

    .btPadrao:hover {
        background: linear-gradient(90deg, rgba(255,80,15,1) 0%, rgba(255,135,0,1) 60%);
    }

.btBranco {
    background: #fff;
    color: var(--laranja-escuro);
}

    .btBranco:hover {
        background: var(--laranja-padrao);
        color: #fff;
    }

.btVerde {
    background: var(--verde-escuro);
    color: #fff;
}

    .btVerde:hover {
        background: var(--verde);
    }

.btOutlineLaranja {
    background: #fff;
    border: 1px solid var(--laranja-escuro);
    color: var(--laranja-escuro);
}

    .btOutlineLaranja:hover {
        border-color: var(--laranja-padrao);
        color: #fff;
    }

.btOutlineVerde {
    background: #fff;
    border: 1px solid var(--verde-escuro);
    color: var(--verde-escuro);
}

    .btOutlineVerde:hover {
        border-color: var(--verde-escuro);
        color: #fff;
        background-color: var(--verde-escuro);
    }

header {
    width: 100%;
    position: absolute;
    transition: 0.3s;
    z-index: 50;
    top: 0;
}

    header .headerTop {
        width: 100%;
        height: 110px;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        header .headerTop .logoRedes {
            display: flex;
            align-items: center;
        }

            header .headerTop .logoRedes .logoPrincipal {
                width: 195px;
                transition: 0.3s;
                height: 48px;
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center top;
                /*background-color: #fff;*/
                background-image: url(../images/logoErpSuiteHorizontal.svg);
            }

            header .headerTop .logoRedes .bgRedes {
                display: flex;
                align-items: center;
                margin-left: 3vw;
                margin-top: 20px;
            }

                header .headerTop .logoRedes .bgRedes a {
                    width: 17px;
                    height: 17px;
                    margin-right: 25px;
                }

                    header .headerTop .logoRedes .bgRedes a svg {
                        fill: var(--laranja-claro);
                        display: block;
                        width: 100%;
                        height: 100%;
                    }

                    header .headerTop .logoRedes .bgRedes a:hover svg {
                        fill: var(--laranja-escuro);
                    }

        header .headerTop .linksRight {
            transition: 0.3s;
            display: flex;
            align-items: center;
        }

            header .headerTop .linksRight .linkWhats {
                font-size: 13px;
                color: var(--verde-escuro);
                font-weight: 700;
                display: flex;
                text-transform: uppercase;
                margin-right: 20px;
                align-items: center;
            }

                header .headerTop .linksRight .linkWhats svg {
                    width: 20px;
                    height: 20px;
                    fill: var(--verde-escuro);
                    margin-right: 10px;
                }

            header .headerTop .linksRight .btPadrao {
                margin-right: 10px;
            }

            header .headerTop .linksRight .link {
                margin-left: 20px;
            }

    header .headerBottom {
        width: 100%;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        header .headerBottom .bgMenuPrincipal {
            display: flex;
            align-items: center;
        }

            header .headerBottom .bgMenuPrincipal .linkMenuPrincipal {
                font-size: 15px;
                color: #333;
                font-weight: 700;
                margin-right: 10px;
                padding: 9px 20px;
                border-radius: 90px;
            }

                header .headerBottom .bgMenuPrincipal .linkMenuPrincipal:hover {
                    background: var(--laranja-escuro);
                    color: #fff;
                }

        header .headerBottom .bgMenuSecundario {
            display: flex;
            align-items: center;
        }

            header .headerBottom .bgMenuSecundario .linkMenuSecundario {
                font-size: 15px;
                color: #666;
                font-weight: 400;
                padding: 5px;
                margin-left: 15px;
            }

                header .headerBottom .bgMenuSecundario .linkMenuSecundario:hover {
                    color: var(--laranja-padrao);
                }

            header .headerBottom .bgMenuSecundario .linkSecundarioMobile {
                display: none;
            }

    header .bgSubmenu {
        background: #e5e5e5;
        position: absolute;
        overflow: hidden;
        height: 0;
        top: 180px;
        left: 5vw;
        right: 5vw;
        z-index: 50;
        display: flex;
        border-radius: 0 0 10px 10px;
        box-shadow: 0px 17px 20px 0px rgba(147, 39, 0, 0.2);
    }

        header .bgSubmenu .headerSubmenu {
            display: none;
        }

        header .bgSubmenu .bgLinksSubmenu {
            display: flex;
            flex-wrap: wrap;
            width: calc(100% - 370px);
            transition: 0.3s;
        }

            header .bgSubmenu .bgLinksSubmenu a {
                max-width: 25%;
                min-width: 20%;
                padding: 0 40px;
                background: #fff;
                border-right: 1px solid #e5e5e5;
                border-bottom: 1px solid #e5e5e5;
            }

    header .bgSubmenu3 .bgLinksSubmenu a {
        max-width: 33.33%;
        width: 33.33%;
    }

    header .bgSubmenu .bgLinksSubmenu a:hover {
        background: #fdeee9;
    }

    header .bgSubmenu .bgLinksSubmenu a b {
        font-size: 15px;
        font-weight: 700;
        color: var(--laranja-escuro);
        height: 45px;
        line-height: 120%;
        display: block;
    }

    header .bgSubmenu .bgLinksSubmenu a p {
        font-size: 14px;
        color: #666;
        font-weight: 300;
        line-height: 130%;
    }

    header .bgSubmenu .linkPromo {
        width: 370px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 0;
        transition: 0.3s;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: left;
        padding: 30px;
    }

        header .bgSubmenu .linkPromo .mask {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background: var(--laranja-escuro);
            opacity: 0.3;
            transition: 0.3s;
        }

        header .bgSubmenu .linkPromo .shadow {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 300px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.9) 100%);
        }

        header .bgSubmenu .linkPromo .conteudo {
            width: 100%;
            position: relative;
        }

            header .bgSubmenu .linkPromo .conteudo h2 {
                color: var(--laranja-claro);
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 10px;
            }

            header .bgSubmenu .linkPromo .conteudo .textPadrao {
                color: #fff;
                line-height: 110%;
            }

            header .bgSubmenu .linkPromo .conteudo .btFake {
                background: var(--laranja-escuro);
                color: #fff;
                font-size: 14px;
                font-weight: 700;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 25px;
                height: 40px;
                margin-top: 10px;
                border-radius: 90px;
                width: max-content;
                transition: 0.3s;
            }

        header .bgSubmenu .linkPromo:hover .mask {
            opacity: 0;
        }

        header .bgSubmenu .linkPromo:hover .conteudo .btFake {
            background: #fff;
            color: var(--laranja-escuro);
        }

    header .bgSubmenuAberto {
        height: auto !important;
    }

        header .bgSubmenuAberto .bgLinksSubmenu a {
            padding: 40px;
        }

        header .bgSubmenuAberto .linkPromo {
            min-height: 350px;
        }

.sticky {
    position: fixed;
    top: 0;
    z-index: 200;
    padding: 0 !important;
}

    .sticky .headerBottom {
        display: none;
    }

    .sticky .headerTop {
        border-bottom: 0;
        height: 80px;
    }

        .sticky .headerTop .logoRedes {
            height: 100%;
        }

            .sticky .headerTop .logoRedes .logoPrincipal {
                width: 140px;
                background-color: #333;
                background-image: url(../images/marcaErpSuite.svg);
                background-position: 3vw center;
                background-repeat: no-repeat;
                background-size: 36%;
                height: 100%;
                padding-left: 3vw;
                border-radius: 0 0 10px 0;
                box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.11);
            }

            .sticky .headerTop .logoRedes .bgRedes {
                display: none;
            }

        .sticky .headerTop .linksRight {
            background: #fff;
            border-radius: 0 0 0 10px;
            box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.11);
            height: 100%;
            padding-right: 3vw;
            padding-left: 2vw;
        }

.bannerPrincipal {
    margin: 0 3vw;
    margin-top: 180px;
}

    .bannerPrincipal .banner {
        height: calc(100vh - 360px);
        width: 100%;
        border-radius: 10px;
        padding-left: 11vw;
        min-height: 490px;
        background: linear-gradient(90deg, var(--laranja-padrao) 0%, var(--laranja-claro) 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

        .bannerPrincipal .banner .content {
            width: 35%;
            position: relative;
        }

            .bannerPrincipal .banner .content .breadcrumb {
                display: flex;
                align-items: center;
                margin-bottom: 10px;
            }

                .bannerPrincipal .banner .content .breadcrumb h3 {
                    font-size: 16px;
                    color: #fff;
                    font-weight: 700;
                    margin-right: 15px;
                }

                .bannerPrincipal .banner .content .breadcrumb .iconSeta {
                    width: 13px;
                    height: 10px;
                    background: url(../images/setaBrancaRight.svg) center no-repeat;
                    background-size: contain;
                    margin-right: 15px;
                }

            .bannerPrincipal .banner .content h2 {
                font-size: 40px;
                font-weight: 200;
                color: #fff;
                margin-bottom: 20px;
            }

                .bannerPrincipal .banner .content h2 b {
                    font-weight: 700;
                }

                .bannerPrincipal .banner .content h2 span {
                    color: var(--laranja-escuro);
                }

            .bannerPrincipal .banner .content .textPadrao {
                color: #fff;
                line-height: 120%;
                margin-bottom: 20px;
                font-size: 16px;
            }

            .bannerPrincipal .banner .content .bgInputTesteGratis {
                width: 100%;
                padding: 7px;
                border-radius: 90px;
                background: #fff;
                display: flex;
                padding-left: 30px;
            }

                .bannerPrincipal .banner .content .bgInputTesteGratis .textBox {
                    border: 0;
                    height: 40px;
                    width: 100%;
                    font-size: 18px;
                    font-weight: 700;
                    color: var(--laranja-padrao);
                }

                    .bannerPrincipal .banner .content .bgInputTesteGratis .textBox::placeholder {
                        font-weight: 400;
                        color: #999;
                    }

            .bannerPrincipal .banner .content .linkEspe {
                font-size: 16px;
                color: #fff;
                display: flex;
                align-items: center;
                margin-top: 25px;
            }

                .bannerPrincipal .banner .content .linkEspe svg {
                    fill: #fff;
                    width: 16px;
                    margin-right: 10px;
                }

        .bannerPrincipal .banner .img {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 40%;
            top: 0;
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }

    .bannerPrincipal .slick-dots {
        top: calc(50% - 200px);
        left: 5vw;
        width: unset;
        display: flex;
        height: 400px;
        flex-direction: column;
        justify-content: center;
    }

        .bannerPrincipal .slick-dots li {
            display: block;
            margin: 10px 0;
        }

            .bannerPrincipal .slick-dots li button {
                width: 25px;
                height: 25px;
                border-radius: 90px;
                border-width: 2px;
                border-style: solid;
                border-color: rgba(255, 255, 255, 0.4);
                position: relative;
            }

                .bannerPrincipal .slick-dots li button:before {
                    font-size: 0;
                    width: 11px;
                    height: 11px;
                    border-radius: 90px;
                    content: "";
                    background: #fff;
                    top: 5px;
                    left: 5px;
                    position: absolute;
                    opacity: 0;
                }

            .bannerPrincipal .slick-dots li.slick-active button {
                border-color: white;
            }

                .bannerPrincipal .slick-dots li.slick-active button:before {
                    opacity: 1;
                }

.newFunc {
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    position: absolute;
    padding: 5px 10px;
    right: -60px;
    top: 0;
    border-radius: 90px;
    background: var(--laranja-escuro);
}

.sectionInicial {
    padding-left: 14vw;
    overflow: hidden;
    position: relative;
    margin-top: 55px;
    display: flex;
    min-height: 650px;
    flex-direction: column;
}

    .sectionInicial h2 {
        color: var(--laranja-claro);
        width: 35%;
    }

    .sectionInicial .bgContentInicial {
        width: 100%;
        display: flex;
        margin-top: 50px;
    }

        .sectionInicial .bgContentInicial .coluna1 {
            width: 320px;
        }

            .sectionInicial .bgContentInicial .coluna1 .linkFunc {
                font-size: 18px;
                color: #999;
                font-weight: 700;
                width: 100%;
                height: 50px;
                border-bottom: 1px solid #fff;
            }

                .sectionInicial .bgContentInicial .coluna1 .linkFunc .newFunc {
                    top: 15px;
                }

                .sectionInicial .bgContentInicial .coluna1 .linkFunc span {
                    display: flex;
                    align-items: center;
                    height: 100%;
                    position: relative;
                    width: max-content;
                }

                    .sectionInicial .bgContentInicial .coluna1 .linkFunc span:before {
                        content: "";
                        bottom: -1px;
                        width: 0;
                        transition: 0.3s;
                        height: 2px;
                        background: var(--laranja-padrao);
                        position: absolute;
                    }

                .sectionInicial .bgContentInicial .coluna1 .linkFunc:hover {
                    border-bottom-color: #e5e5e5;
                    color: var(--laranja-padrao);
                }

                    .sectionInicial .bgContentInicial .coluna1 .linkFunc:hover span:before {
                        width: 100%;
                    }

            .sectionInicial .bgContentInicial .coluna1 .sel {
                color: var(--laranja-padrao);
                border-bottom-color: #e5e5e5;
            }

                .sectionInicial .bgContentInicial .coluna1 .sel span:before {
                    width: 100%;
                    background: var(--laranja-padrao);
                }

        .sectionInicial .bgContentInicial .coluna2 {
            width: 33vw;
            padding-left: 40px;
            padding-right: 40px;
        }

            .sectionInicial .bgContentInicial .coluna2 h3 {
                font-size: 25px;
                color: var(--laranja-padrao);
                font-weight: 300;
                margin-bottom: 30px;
            }

            .sectionInicial .bgContentInicial .coluna2 .listItens {
                margin: 30px 0;
            }

                .sectionInicial .bgContentInicial .coluna2 .listItens li {
                    display: flex;
                    align-items: center;
                    font-size: 16px;
                    color: #666;
                    margin-bottom: 7px;
                }

                    .sectionInicial .bgContentInicial .coluna2 .listItens li span {
                        width: 12px;
                        height: 12px;
                        border: 3px solid var(--laranja-escuro);
                        border-radius: 90px;
                        display: block;
                        margin-right: 10px;
                    }

            .sectionInicial .bgContentInicial .coluna2 .btPadrao {
                width: max-content;
            }

        .sectionInicial .bgContentInicial .bgImagem {
            width: 706px;
            height: 442px;
            border-radius: 10px;
            position: absolute;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url(../images/dashboard.png);
            margin-left: calc(33vw + 330px);
            box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.41);
        }

.bgLogosRev {
    width: 100%;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

    .bgLogosRev .espPadraoMaior {
        display: flex;
        align-items: center;
        height: 155px;
        justify-content: space-between;
    }

        .bgLogosRev .espPadraoMaior .textPadrao {
            width: 200px;
        }

        .bgLogosRev .espPadraoMaior .logosMencionado {
            display: flex;
            width: calc(100% - 200px);
            justify-content: space-between;
        }

            .bgLogosRev .espPadraoMaior .logosMencionado a {
                width: max-content;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                height: 50px;
            }

                .bgLogosRev .espPadraoMaior .logosMencionado a img {
                    object-fit: contain;
                    width: 100%;
                    height: 100%;
                    transition: 0.3s;
                    filter: grayscale(100%);
                    opacity: 0.5;
                }

                .bgLogosRev .espPadraoMaior .logosMencionado a:hover img {
                    filter: grayscale(0%);
                    opacity: 1;
                }

.sectionVideoInsti {
    width: 100%;
    height: 520px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff3df 0%, rgba(255, 243, 223, 0) 100%);
}

    .sectionVideoInsti .espPadraoMaior {
        display: flex;
        align-items: center;
        height: 100%;
    }

        .sectionVideoInsti .espPadraoMaior .bgVideo {
            width: 50%;
            height: 390px;
            border-radius: 10px;
            position: relative;
            transition: 0.3s;
            background: black;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

            .sectionVideoInsti .espPadraoMaior .bgVideo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.6;
                position: absolute;
            }

            .sectionVideoInsti .espPadraoMaior .bgVideo svg {
                width: 60px;
                height: 60px;
                fill: #fff;
                position: relative;
            }

            .sectionVideoInsti .espPadraoMaior .bgVideo:hover {
                background: var(--laranja-escuro);
            }

        .sectionVideoInsti .espPadraoMaior .bgText {
            width: 40%;
            padding-left: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .sectionVideoInsti .espPadraoMaior .bgText .title {
                color: var(--laranja-padrao);
                font-size: 25px;
                font-weight: 300;
                margin-bottom: 20px;
            }

.bgDiferenciais {
    position: relative;
    width: 100%;
}

    .bgDiferenciais .bgLaranjaLateral {
        width: 66vw;
        margin-left: 3vw;
        border-radius: 10px;
        background: linear-gradient(120deg, var(--laranja-padrao) 0%, var(--laranja-claro) 100%);
        padding: 5vw 9vw 200px 11vw;
    }

        .bgDiferenciais .bgLaranjaLateral .title {
            font-weight: 400;
            color: #fff;
            font-size: 35px;
            margin-bottom: 60px;
        }

        .bgDiferenciais .bgLaranjaLateral .bgDepoimentos {
            width: calc(86vw + 32px);
            padding-left: 0;
        }

            .bgDiferenciais .bgLaranjaLateral .bgDepoimentos .bgTitleTop h3 {
                color: #fff;
            }

        .bgDiferenciais .bgLaranjaLateral .listDiferenciais {
            display: flex;
            flex-wrap: wrap;
        }

            .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif {
                width: 45%;
                margin-right: 5%;
                margin-bottom: 50px;
                display: flex;
                justify-content: space-between;
            }

                .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif .img {
                    width: 90px;
                    height: 90px;
                    border-radius: 100px;
                    background-color: #fff;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-size: 59%;
                }

                .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif .text {
                    display: flex;
                    width: calc(100% - 115px);
                    flex-direction: column;
                    justify-content: center;
                }

                    .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif .text h2 {
                        font-size: 18px;
                        font-weight: 700;
                        color: #fff;
                        margin-bottom: 10px;
                    }

                    .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif .text .textPadrao {
                        color: #fff;
                        line-height: 120%;
                    }

        .bgDiferenciais .bgLaranjaLateral .testeGratis {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 40px 0 100px 0;
        }

            .bgDiferenciais .bgLaranjaLateral .testeGratis h3 {
                font-size: 30px;
                color: #fff;
                width: calc(100% - 290px);
                font-weight: 300;
            }

            .bgDiferenciais .bgLaranjaLateral .testeGratis .btPadrao {
                white-space: nowrap;
                font-size: 18px;
                padding: 0 40px;
                height: 60px;
                background: linear-gradient(81deg,#ff500f,#ff8700);
            }

                .bgDiferenciais .bgLaranjaLateral .testeGratis .btPadrao:hover {
                    background: linear-gradient(90deg, rgba(255,80,15,1) 0%, rgba(255,135,0,1) 70%);
                }

    .bgDiferenciais .imgRightFloat {
        position: absolute;
        right: 0;
        top: 0px;
        width: 36vw;
        height: 600px;
        overflow: hidden;
        border-radius: 10px 0 0 10px;
    }

        .bgDiferenciais .imgRightFloat img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.bgDepoimentos {
    width: calc(100% + 20px);
    padding-left: 11vw;
}

    .bgDepoimentos .bgTitleTop {
        display: flex;
        padding-right: 14vw;
        align-items: center;
        justify-content: space-between;
    }

        .bgDepoimentos .bgTitleTop h3 {
            font-size: 35px;
            color: var(--laranja-padrao);
            font-weight: 300;
            margin-bottom: 20px;
        }

    .bgDepoimentos .listDepoimentos {
        width: 100%;
        margin-left: -20px;
    }

        .bgDepoimentos .listDepoimentos .dep {
            width: 38vw;
            height: 340px;
            margin-right: -10px;
            position: relative;
            padding: 20px 20px 40px 25px;
        }

            .bgDepoimentos .listDepoimentos .dep .cont {
                width: 100%;
                border-radius: 10px;
                height: 100%;
                background: #fff;
                padding: 50px 60px;
                box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
                display: flex;
                align-items: center;
                flex-direction: column;
                align-items: flex-start;
            }

                .bgDepoimentos .listDepoimentos .dep .cont .icon {
                    width: 41px;
                    height: 30px;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-image: url(../images/iconeAspas.png);
                    margin-bottom: 10px;
                }

                .bgDepoimentos .listDepoimentos .dep .cont .textPadrao {
                    margin-bottom: 20px;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 4;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                }

                .bgDepoimentos .listDepoimentos .dep .cont .name {
                    font-size: 16px;
                    font-weight: 700;
                    color: #d88e39;
                    font-style: italic;
                }

        .bgDepoimentos .listDepoimentos .slick-dots {
            text-align: right;
            right: calc(14vw + 130px);
            bottom: unset;
            top: -40px;
        }

            .bgDepoimentos .listDepoimentos .slick-dots li {
                margin: 0;
            }

                .bgDepoimentos .listDepoimentos .slick-dots li button:before {
                    font-size: 8px;
                    color: var(--laranja-padrao);
                }

.btsSlider {
    height: 60px;
    display: flex;
    width: 130px;
    justify-content: space-between;
}

    .btsSlider a {
        width: 60px;
        height: 60px;
        border-radius: 90px;
        border: 2px solid #e5e5e5;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .btsSlider a svg {
            width: 40%;
            fill: #e5e5e5;
        }

        .btsSlider a:first-child svg {
            transform: rotate(180deg);
        }

        .btsSlider a:hover {
            background: var(--laranja-padrao);
            border-color: var(--laranja-padrao);
        }

            .btsSlider a:hover svg {
                fill: #fff;
            }

.sessaoContatoPadrao {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 23px 54px 0px rgba(240, 90, 35, 0.53);
    height: 210px;
    background: linear-gradient(90deg, var(--laranja-escuro) 0%, var(--laranja-padrao) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-bottom: 100px;
}

    .sessaoContatoPadrao .imgFrase {
        display: flex;
        align-items: center;
        flex-basis: calc(100% - 460px);
    }

        .sessaoContatoPadrao .imgFrase img {
            width: 400px;
            height: 220px;
            object-fit: contain;
            left: 3.5vw;
            top: -39px;
        }

        .sessaoContatoPadrao .imgFrase h2 {
            font-size: 28px;
            flex-basis: calc(100% - 400px);
            color: #fff;
            font-weight: 300;
        }

            .sessaoContatoPadrao .imgFrase h2 b {
                font-weight: 700;
                color: #fff;
            }

    .sessaoContatoPadrao .bgBts {
        flex-basis: 433px;
        flex-shrink: 0;
    }

        .sessaoContatoPadrao .bgBts .bts {
            display: flex;
        }

            .sessaoContatoPadrao .bgBts .bts .btPadrao {
                padding: 0 23px;
            }

                .sessaoContatoPadrao .bgBts .bts .btPadrao:last-child {
                    margin-left: 10px;
                }

        .sessaoContatoPadrao .bgBts .link {
            color: #fff;
            margin-top: 25px;
        }

.sessaoContatoHome {
    margin-top: -100px;
}

.newsBlog h3 {
    font-size: 35px;
    font-weight: 300;
    color: var(--laranja-padrao);
    margin-bottom: 30px;
}

.newsBlog .bgNews {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .newsBlog .bgNews .new {
        width: 30%;
    }

        .newsBlog .bgNews .new .img {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            margin-bottom: 30px;
            border: 2px solid #fff;
            transition: 0.3s;
        }

        .newsBlog .bgNews .new span {
            font-size: 14px;
            color: #999;
            margin-bottom: 20px;
            display: block;
        }

        .newsBlog .bgNews .new .title {
            font-size: 18px;
            color: var(--laranja-padrao);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .newsBlog .bgNews .new .textPadrao {
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            overflow: hidden;
            -webkit-box-orient: vertical;
        }

        .newsBlog .bgNews .new .btPadrao {
            width: max-content;
            margin-top: 20px;
            background: #fff;
            border: 1px solid var(--laranja-escuro);
            color: var(--laranja-escuro);
        }

        .newsBlog .bgNews .new:hover .img {
            border: 2px solid var(--laranja-padrao);
        }

        .newsBlog .bgNews .new:hover .btPadrao {
            background: var(--laranja-escuro);
            color: #fff;
        }

footer {
    width: 100%;
    margin-top: 150px;
    position: relative;
}

    footer .espPadrao {
        position: relative;
    }

    footer .logoErpSuite {
        width: 227px;
        height: 51px;
        background: url(../images/logoErpSuiteHorizontal.svg) center no-repeat;
        background-size: contain;
        margin-bottom: 50px;
    }

    footer .bgSimbolo {
        width: 68vw;
        height: 44vw;
        background: url(../images/simboloRodape.jpg) center no-repeat;
        background-size: contain;
        position: absolute;
        right: -9vw;
        z-index: -1;
        top: -250px;
    }

.bgOne {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

    .bgOne .coluna {
        width: 20vw;
    }

        .bgOne .coluna h2 {
            font-size: 25px;
            color: var(--laranja-claro);
            margin-bottom: 20px;
        }

            .bgOne .coluna h2 b {
                color: var(--laranja-escuro);
            }

        .bgOne .coluna .seloApp {
            width: 141px;
            height: 42px;
            margin-bottom: 40px;
        }

            .bgOne .coluna .seloApp img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .bgOne .coluna .link {
            font-weight: 300;
            font-size: 20px;
            margin-bottom: 10px;
        }

            .bgOne .coluna .link:hover {
                color: var(--laranja-claro);
            }

        .bgOne .coluna .tel {
            font-size: 20px;
            color: #333;
        }

        .bgOne .coluna .menuInstRodape {
            margin-bottom: 55px;
        }

            .bgOne .coluna .menuInstRodape a {
                font-size: 16px;
                color: var(--laranja-escuro);
                margin-bottom: 10px;
            }

                .bgOne .coluna .menuInstRodape a:hover {
                    color: var(--laranja-claro);
                }

.bgTwo {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

    .bgTwo .espPadrao {
        display: flex;
        padding-bottom: 50px;
    }

        .bgTwo .espPadrao .coluna {
            width: 20vw;
            margin-right: 2.8vw;
        }

            .bgTwo .espPadrao .coluna b {
                margin-top: 60px;
                display: block;
                font-size: 14px;
                color: #333;
                margin-bottom: 15px;
            }

            .bgTwo .espPadrao .coluna a {
                font-size: 14px;
                color: #333;
                margin-bottom: 15px;
            }

                .bgTwo .espPadrao .coluna a:hover {
                    color: var(--laranja-escuro);
                }

.bgTree {
    padding: 50px 0;
}

    .bgTree b {
        font-size: 14px;
        color: #333;
        display: block;
        margin-bottom: 15px;
    }

    .bgTree .listLinks {
        display: flex;
        flex-wrap: wrap;
    }

        .bgTree .listLinks a {
            width: 16%;
            margin-right: 4%;
            font-size: 14px;
            color: #333;
            margin-bottom: 15px;
        }

            .bgTree .listLinks a:hover {
                color: var(--laranja-escuro);
            }

.bgFour {
    width: 100%;
    background: #333;
    padding-top: 45px;
}

    .bgFour .espPadrao .listLinks {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 45px;
    }

        .bgFour .espPadrao .listLinks a {
            font-size: 14px;
            color: #fff;
            margin-bottom: 15px;
            width: 16%;
            margin-right: 4%;
        }

            .bgFour .espPadrao .listLinks a:hover {
                color: var(--laranja-escuro);
            }

    .bgFour .copyright {
        border-top: 1px solid #484848;
        padding: 45px 0;
    }

        .bgFour .copyright .espPadrao {
            display: flex;
            justify-content: space-between;
        }

            .bgFour .copyright .espPadrao p {
                font-size: 14px;
                color: #fff;
            }

                .bgFour .copyright .espPadrao p a {
                    display: inline-block;
                    color: var(--laranja-escuro);
                }

                    .bgFour .copyright .espPadrao p a:hover {
                        color: var(--laranja-claro);
                    }

            .bgFour .copyright .espPadrao .redes {
                display: flex;
            }

                .bgFour .copyright .espPadrao .redes a {
                    width: 17px;
                    height: 17px;
                    margin-right: 25px;
                }

                    .bgFour .copyright .espPadrao .redes a svg {
                        fill: var(--laranja-claro);
                        display: block;
                        width: 100%;
                        height: 100%;
                    }

                    .bgFour .copyright .espPadrao .redes a:hover svg {
                        fill: var(--laranja-escuro);
                    }

.exemploAnimation {
    animation-name: setaDescer;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.btMobile {
    width: 60px;
    height: 60px;
    border-radius: 90px;
    z-index: 200;
    background-image: linear-gradient(to right, var(--laranja-escuro), var(--laranja-claro));
    position: fixed;
    right: 5vw;
    top: -100px;
    display: none;
    animation-name: showBtMenuMobile;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    animation-delay: 0;
}

@keyframes showBtMenuMobile {
    0% {
        top: -100px;
    }

    100% {
        top: 5vw;
    }
}

.btMobile span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 90px;
    transform-origin: center;
    transition: 0.3s;
    position: absolute;
    top: calc(50% - 3px);
    right: calc(50% - 15px);
}

    .btMobile span:last-child {
        width: 20px;
        transform-origin: center;
        top: calc(50% + 3px);
    }

.btOpenMenuMobileAtivo {
    background-color: #fff;
}

    .btOpenMenuMobileAtivo span {
        transform: rotate(45deg);
        top: calc(50% - 1px);
    }

        .btOpenMenuMobileAtivo span:last-child {
            transform: rotate(-45deg);
            width: 30px;
            top: calc(50% - 1px);
        }

@keyframes setaDescer {
    0% {
        margin-top: -10px;
    }

    50% {
        margin-top: 10px;
    }

    100% {
        margin-top: -10px;
    }
}

.escondeScrolly {
    overflow-y: hidden !important;
}

.btFecharSubmenuMobile {
    width: 50px;
    height: 50px;
    border: 1px solid var(--laranja-escuro);
    border-radius: 90px;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: fixed;
    display: none;
    left: 20px;
    top: 29px;
    z-index: 60;
}

    .btFecharSubmenuMobile svg {
        display: block;
        transform: rotate(180deg);
        width: 14px;
        fill: var(--laranja-escuro);
    }

.bgBannerInterno {
    margin: 180px 3vw 0px 3vw;
    border-radius: 10px;
    height: 420px;
}

    .bgBannerInterno .banner {
        height: 420px;
        min-height: unset;
        padding-left: 8vw;
    }

        .bgBannerInterno .banner .img {
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            left: 35%;
            background-blend-mode: multiply;
            background-color: var(--laranja-claro);
            opacity: 0.7;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
            mask-image: linear-gradient(to right, transparent 0%, black 40%);
        }

.bgBannerInternoPequeno {
    margin: 180px 3vw 0px 3vw;
    border-radius: 10px;
    height: 180px;
}

    .bgBannerInternoPequeno .banner {
        min-height: unset;
        height: 180px;
        padding-left: 8vw;
        overflow: unset;
        background: linear-gradient(90deg, var(--laranja-escuro) 0%, var(--laranja-claro) 100%);
    }

        .bgBannerInternoPequeno .banner .content {
            width: 100%;
        }

            .bgBannerInternoPequeno .banner .content .textPadrao {
                margin-bottom: 0;
            }

.listTextImgReverse {
    width: 100%;
    margin-top: 70px;
}

    .listTextImgReverse .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 70px;
    }

        .listTextImgReverse .content img {
            width: 35%;
            object-fit: contain;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.13);
        }

        .listTextImgReverse .content .text {
            width: 60%;
        }

            .listTextImgReverse .content .text h2 {
                color: var(--laranja-padrao);
                font-size: 18px;
                font-weight: 700;
            }

            .listTextImgReverse .content .text .textPadrao {
                margin: 20px 0 30px 0;
            }

            .listTextImgReverse .content .text .btPadrao {
                width: max-content;
            }

        .listTextImgReverse .content:nth-child(even) {
            flex-direction: row-reverse;
        }

.bannerCenter .banner {
    padding: 0 !important;
}

    .bannerCenter .banner .content {
        width: 100% !important;
        margin-top: -20px;
    }

        .bannerCenter .banner .content h2 {
            margin-bottom: 10px;
        }

        .bannerCenter .banner .content * {
            text-align: center;
        }

@media only screen and (max-width: 1680px) {
    .espPadraoMaior {
        padding-left: 11vw;
        padding-right: 11vw;
    }
}

@media only screen and (max-width: 1600px) {
    .espPadraoMaior {
        padding-left: 11vw;
        padding-right: 11vw;
    }
}

@media only screen and (max-width: 1440px) {
    .bannerPrincipal .banner .content {
        width: 42%;
    }

    .sectionInicial {
        padding-left: 10vw;
    }

    .espPadrao {
        padding-left: 4vw;
        padding-left: 4vw;
    }

    .espPadraoMaior {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .bgDepoimentos {
        padding-left: 10vw;
    }

    .sessaoContatoPadrao {
        padding-left: 2vw;
    }

    .sectionVideoInsti {
        height: 430px;
    }

        .sectionVideoInsti .espPadraoMaior .bgVideo {
            height: 320px;
        }

    .bgDiferenciais .bgLaranjaLateral {
        padding-left: 7vw;
    }

        .bgDiferenciais .bgLaranjaLateral .bgDepoimentos {
            width: calc(89vw + 32px);
        }

    header .bgSubmenu {
        left: 3vw;
        right: 3vw;
    }
}

@media only screen and (max-width: 1366px) {
    .espPadraoMaior {
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .bgDepoimentos {
        padding-left: 7vw;
    }

    .sessaoContatoPadrao .imgFrase img {
        width: 300px;
    }

    .sessaoContatoPadrao .imgFrase h2 {
        flex-basis: calc(100% - 300px);
    }
}

@media only screen and (max-width: 1280px) {
    .centro1250 {
        width: 960px;
    }
}

@media only screen and (max-width: 1023px) {
    h2 {
        font-size: 28px;
    }

    .btMobile {
        display: block;
    }

    .centro960,
    .centro1250 {
        width: 100%;
    }

    .espPadrao {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .espPadraoMaior {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    header {
        position: relative;
        background: #fff;
        padding-top: 25px !important;
        overflow-y: hidden;
        height: 80px;
        transition: 0.4s;
    }

        header .headerTop {
            flex-direction: column;
            height: unset;
            align-items: flex-start;
        }

            header .headerTop .logoRedes {
                flex-direction: column;
                width: 100%;
                align-items: flex-start;
            }

                header .headerTop .logoRedes .logoPrincipal {
                    width: 155px;
                }

                header .headerTop .logoRedes .bgRedes {
                    margin-left: unset;
                    justify-content: center;
                    width: 100%;
                    margin-bottom: 10px;
                }

                    header .headerTop .logoRedes .bgRedes a {
                        margin: 0 20px;
                        width: 22px;
                        height: 22px;
                    }

            header .headerTop .linksRight {
                flex-direction: column;
                width: 100%;
            }

                header .headerTop .linksRight .linkWhats {
                    margin-right: 0;
                    padding-top: 15px;
                    padding-bottom: 15px;
                }

                header .headerTop .linksRight .btPadrao {
                    margin-right: 0;
                    width: 100%;
                    justify-content: center;
                    margin-bottom: 5px;
                }

                header .headerTop .linksRight .link {
                    margin-left: 0;
                    padding-top: 15px;
                    padding-bottom: 15px;
                }

        header .headerBottom {
            height: unset;
            flex-direction: column;
        }

            header .headerBottom .bgMenuPrincipal {
                flex-direction: column;
                width: 100%;
            }

                header .headerBottom .bgMenuPrincipal .linkMenuPrincipal {
                    margin-right: unset;
                    font-size: 16px;
                    text-align: center;
                    padding: 16px 0;
                    width: 100%;
                    border: 0;
                    border-bottom: 1px solid #e5e5e5;
                    border-radius: 0;
                }

            header .headerBottom .bgMenuSecundario {
                flex-direction: column;
                width: 100%;
            }

                header .headerBottom .bgMenuSecundario .linkMenuSecundario {
                    font-size: 16px;
                    margin-left: unset;
                    padding: 16px 0;
                    text-align: center;
                    width: 100%;
                    border-bottom: 1px solid #e5e5e5;
                    border-radius: 0;
                }

                header .headerBottom .bgMenuSecundario .linkSecundarioMobile {
                    display: block;
                }

        header .bgSubmenu {
            top: 0;
            left: 0;
            right: 0;
            flex-direction: column;
            flex-wrap: nowrap;
            border-radius: 0;
            position: fixed;
            box-shadow: unset;
        }

            header .bgSubmenu .headerSubmenu {
                padding: 29px 40px 20px 40px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-shrink: 0;
            }

                header .bgSubmenu .headerSubmenu h2 {
                    padding: 0 8vw 0 45px;
                    line-height: 50px;
                    font-size: 27px;
                    color: var(--laranja-padrao);
                }

            header .bgSubmenu .bgLinksSubmenu {
                width: 100%;
                display: block;
            }

                header .bgSubmenu .bgLinksSubmenu a {
                    width: 100%;
                    max-width: 100%;
                    border-right: 0;
                }

                    header .bgSubmenu .bgLinksSubmenu a b {
                        height: unset;
                    }

            header .bgSubmenu .linkPromo {
                width: 100%;
                position: relative;
            }

        header .bgSubmenuAberto {
            background: #fff;
            overflow-y: auto;
            height: 100vh !important;
            height: calc(var(--vh, 1vh) * 100) !important;
        }

        header .btFecharSubmenuMobileAtivo {
            display: flex !important;
        }

    .menuAberto {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        overflow-y: auto;
        position: fixed;
        top: 0;
        padding-bottom: 50px;
    }

    .bannerPrincipal {
        margin-top: 16px;
    }

        .bannerPrincipal .banner {
            padding-left: 8vw;
            padding-right: 8vw;
        }

            .bannerPrincipal .banner .img {
                display: none;
            }

            .bannerPrincipal .banner .content {
                width: 100%;
            }

                .bannerPrincipal .banner .content h2 {
                    font-size: 26px;
                }

                .bannerPrincipal .banner .content .bgInputTesteGratis {
                    flex-direction: column;
                    border-radius: 10px;
                    padding: 4px;
                }

                    .bannerPrincipal .banner .content .bgInputTesteGratis .textBox {
                        text-align: center;
                    }

                    .bannerPrincipal .banner .content .bgInputTesteGratis .btPadrao {
                        justify-content: center;
                        border-radius: 6px;
                    }

        .bannerPrincipal .slick-dots {
            display: flex;
            top: unset;
            left: unset;
            flex-direction: row;
            bottom: 5vw;
            height: unset;
            width: 100%;
        }

            .bannerPrincipal .slick-dots li {
                margin: 0 5px;
            }

    .sectionInicial {
        padding-left: 8vw;
    }

        .sectionInicial h2 {
            width: 100%;
        }

        .sectionInicial .bgContentInicial {
            flex-direction: column;
        }

            .sectionInicial .bgContentInicial .coluna1 {
                width: 100%;
                border-bottom: 1px solid #e5e5e5;
                display: flex;
                overflow-x: auto;
                padding-right: 100px;
                margin-bottom: 30px;
            }

                .sectionInicial .bgContentInicial .coluna1 .linkFunc {
                    margin-right: 30px;
                }

            .sectionInicial .bgContentInicial .coluna2 {
                width: 100%;
                padding: 0;
                padding-right: 8vw;
            }

    .bgLogosRev .espPadraoMaior {
        flex-wrap: wrap;
        height: auto;
        justify-content: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .bgLogosRev .espPadraoMaior .textPadrao {
            text-align: center;
            width: 100%;
        }

        .bgLogosRev .espPadraoMaior .logosMencionado {
            width: 100%;
            margin-top: 15px;
        }

            .bgLogosRev .espPadraoMaior .logosMencionado a {
                width: 50%;
            }

            .bgLogosRev .espPadraoMaior .logosMencionado .slick-dots li button:before {
                font-size: 10px;
                color: #666;
            }

            .bgLogosRev .espPadraoMaior .logosMencionado .slick-dots li.slick-active button:before {
                opacity: 1;
            }

    .sectionVideoInsti {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

        .sectionVideoInsti .espPadraoMaior {
            flex-direction: column-reverse;
        }

            .sectionVideoInsti .espPadraoMaior .bgText {
                padding-left: 0;
                width: 100%;
            }

            .sectionVideoInsti .espPadraoMaior .bgVideo {
                width: 100%;
                height: 180px;
                margin-top: 20px;
            }

    .bgDiferenciais .imgRightFloat {
        display: none;
    }

    .bgDiferenciais .bgLaranjaLateral {
        margin-left: 4vw;
        width: unset;
        margin-left: 4vw;
        margin-right: 4vw;
        padding: 8vw 8vw 150px 8vw;
    }

        .bgDiferenciais .bgLaranjaLateral .title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 40px;
        }

        .bgDiferenciais .bgLaranjaLateral .listDiferenciais {
            display: block;
            width: 100%;
            margin-bottom: 80px;
        }

            .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif {
                flex-direction: column;
                align-items: center;
                margin: 0;
            }

                .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif .text {
                    width: 100%;
                    margin-top: 15px;
                }

                    .bgDiferenciais .bgLaranjaLateral .listDiferenciais .dif .text * {
                        text-align: center;
                    }

            .bgDiferenciais .bgLaranjaLateral .listDiferenciais .slick-dots li button:before {
                font-size: 12px;
                color: #fff;
            }

            .bgDiferenciais .bgLaranjaLateral .listDiferenciais .slick-dots li.slick-active button:before {
                opacity: 1;
            }

        .bgDiferenciais .bgLaranjaLateral .testeGratis {
            flex-direction: column;
        }

            .bgDiferenciais .bgLaranjaLateral .testeGratis h3 {
                width: 100%;
                font-size: 26px;
                text-align: center;
            }

            .bgDiferenciais .bgLaranjaLateral .testeGratis .btPadrao {
                width: 100%;
                justify-content: center;
                margin-top: 20px;
            }

        .bgDiferenciais .bgLaranjaLateral .bgDepoimentos {
            margin-left: -12vw;
        }

            .bgDiferenciais .bgLaranjaLateral .bgDepoimentos .listDepoimentos .dep {
                margin-right: -10px;
                border: 0;
            }

            .bgDiferenciais .bgLaranjaLateral .bgDepoimentos .listDepoimentos .slick-dots li button:before {
                color: #fff;
            }

    .bgDepoimentos {
        width: 100vw;
        padding-left: unset;
    }

        .bgDepoimentos .bgTitleTop {
            width: 100%;
            padding-right: 8vw;
            padding-left: 8vw;
        }

            .bgDepoimentos .bgTitleTop h3 {
                width: 100%;
                text-align: center;
                font-size: 28px;
                padding: 0 8vw;
            }

            .bgDepoimentos .bgTitleTop .btsSlider {
                display: none;
            }

        .bgDepoimentos .listDepoimentos {
            margin-left: unset;
        }

            .bgDepoimentos .listDepoimentos .dep {
                padding: 0;
                height: unset;
                margin-right: 0;
                border-top: 1px solid #e5e5e5;
                border-bottom: 1px solid #e5e5e5;
            }

                .bgDepoimentos .listDepoimentos .dep .cont {
                    border-radius: 0;
                    align-items: center;
                    padding: 50px 10vw;
                    box-shadow: unset;
                }

                    .bgDepoimentos .listDepoimentos .dep .cont .textPadrao {
                        text-align: center;
                    }

            .bgDepoimentos .listDepoimentos .slick-dots {
                text-align: center;
                right: unset;
                bottom: -35px;
                top: unset;
            }

                .bgDepoimentos .listDepoimentos .slick-dots li button:before {
                    font-size: 12px;
                    color: var(--laranja-escuro);
                }

                .bgDepoimentos .listDepoimentos .slick-dots li.slick-active button:before {
                    opacity: 1;
                }

    .sessaoContatoPadrao {
        padding: 10vw 6vw;
        flex-direction: column;
        height: auto;
    }

        .sessaoContatoPadrao .imgFrase {
            align-items: center;
            margin-bottom: 30px;
            flex-direction: column;
        }

            .sessaoContatoPadrao .imgFrase img {
                height: 164px;
                left: 0;
                top: 0;
            }

            .sessaoContatoPadrao .imgFrase h2 {
                flex-basis: unset;
                width: 100%;
                text-align: center;
                font-size: 22px;
            }

        .sessaoContatoPadrao .bgBts {
            flex-basis: unset;
            width: 100%;
        }

            .sessaoContatoPadrao .bgBts .bts {
                flex-direction: column;
                align-items: center;
            }

                .sessaoContatoPadrao .bgBts .bts .btPadrao {
                    width: 100%;
                }

                    .sessaoContatoPadrao .bgBts .bts .btPadrao:last-child {
                        margin-left: unset;
                        margin-top: 10px;
                    }

            .sessaoContatoPadrao .bgBts .link {
                width: max-content;
                margin: 20px auto 0 auto;
            }

    .bgNews .slick-dots {
        text-align: center;
        bottom: -45px;
    }

        .bgNews .slick-dots li button:before {
            font-size: 12px;
            color: var(--laranja-escuro);
        }

        .bgNews .slick-dots li.slick-active button:before {
            opacity: 1;
        }

    .newsBlog h3 {
        font-size: 28px;
    }

    footer {
        margin-top: 110px;
    }

        footer .logoErpSuite {
            width: 177px;
            height: 41px;
        }

        footer .bgSimbolo {
            display: none;
        }

        footer .espPadrao .bgOne {
            width: 100%;
            margin-bottom: 20px;
            flex-direction: column;
        }

            footer .espPadrao .bgOne .coluna {
                width: 100%;
                margin-bottom: 15px;
            }

                footer .espPadrao .bgOne .coluna .menuInstRodape {
                    display: none;
                }

                footer .espPadrao .bgOne .coluna .link {
                    font-size: 24px;
                }

                footer .espPadrao .bgOne .coluna .tel {
                    font-size: 24px;
                }

        footer .bgTwo {
            display: none;
        }

        footer .bgTree {
            padding: 20px 0 0 0;
            border-top: 1px solid #e5e5e5;
        }

            footer .bgTree .espPadrao b {
                font-size: 18px;
                color: var(--laranja-escuro);
                height: 30px;
                display: flex;
                align-items: center;
                margin: 0;
                width: 100%;
                position: relative;
                margin-bottom: 20px;
            }

                footer .bgTree .espPadrao b:after {
                    content: "";
                    width: 30px;
                    height: 30px;
                    background: url(../images/setaLaranja.svg) center no-repeat;
                    background-size: 60%;
                    right: 0;
                    position: absolute;
                    top: 0;
                }

            footer .bgTree .espPadrao .listLinks {
                flex-direction: column;
                overflow: hidden;
                transition: 0.3s;
                height: 0;
            }

                footer .bgTree .espPadrao .listLinks a {
                    font-size: 16px;
                    width: 100%;
                    margin-bottom: 0;
                    padding: 0;
                }

            footer .bgTree .espPadrao .listLinksAberto {
                height: auto !important;
                margin-bottom: 30px;
            }

                footer .bgTree .espPadrao .listLinksAberto a {
                    padding: 10px 0;
                }

        footer .bgFour .espPadrao .listLinks {
            flex-direction: column;
        }

            footer .bgFour .espPadrao .listLinks a {
                font-size: 16px;
                width: 100%;
            }

        footer .bgFour .copyright .espPadrao {
            flex-direction: column;
        }

            footer .bgFour .copyright .espPadrao p {
                font-size: 16px;
                text-align: center;
                line-height: 40px;
            }

                footer .bgFour .copyright .espPadrao p a {
                    display: inline-block;
                }

            footer .bgFour .copyright .espPadrao .redes {
                justify-content: center;
                margin-top: 30px;
            }

    .listTextImgReverse .content {
        flex-direction: column;
        margin-bottom: 100px;
    }

        .listTextImgReverse .content img {
            width: 100%;
            margin-bottom: 40px;
        }

        .listTextImgReverse .content .text {
            width: 100%;
        }

        .listTextImgReverse .content:nth-child(even) {
            flex-direction: column;
        }

    .bannerCenter .banner {
        padding: 0 8vw !important;
    }
}

@media only screen and (max-width: 320px) {
    .sectionInicial h2 {
        width: 90%;
    }

    .bgDiferenciais .bgLaranjaLateral {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

        .bgDiferenciais .bgLaranjaLateral .bgDepoimentos {
            margin-left: -8vw;
        }

    .noPaddingMobile {
        padding: 0;
    }
}

/*# sourceMappingURL=styles.css.map */
