﻿.inicioInterno {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.bannerCenter .banner .content h2 {
    margin-bottom: 10px;
}

.bgBannerInternoPequeno .banner {
    min-height: unset;
    height: 100px;
    padding-left: 8vw;
    overflow: unset;
    background-color: #fff;
}

    .bgBannerInternoPequeno .banner .content .textPadrao {
        color: #606060;
    }


.bgBannerInternoPequeno.bannerTeste {
    height: 160px;
    margin-top: 140px;
}

.listFuncionalidadesInterno {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

    .listFuncionalidadesInterno .funcInterno {
        width: calc(33.333% - 30px);
        margin-right: 30px;
        margin-bottom: 30px;
        padding: 40px;
        border-radius: 10px;
        border: 1px solid #e5e5e5;
    }
.bannerPrincipal .banner .content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #fff; /* cor branca h1 interno do site */
    line-height: 1.2;
    margin-bottom: 20px;
}

        .listFuncionalidadesInterno .funcInterno .title {
            max-width: 100%;
            width: max-content;
        }

            .listFuncionalidadesInterno .funcInterno .title h2 {
                font-size: 18px;
                color: var(--laranja-escuro);
                position: relative;
                font-weight: 700;
                height: 50px;
            }

        .listFuncionalidadesInterno .funcInterno:hover {
            background: var(--laranja-padrao);
            border-color: var(--laranja-padrao);
            box-shadow: 0px 15px 30px 0px rgba(240, 90, 35, 0.3);
        }

            .listFuncionalidadesInterno .funcInterno:hover * {
                color: #fff !important;
            }

.colunaLateralFuncionalidade {
    width: 80vw;
}



    .colunaLateralFuncionalidade .inicio {
        margin-bottom: 40px;
    }

    .colunaLateralFuncionalidade h2 {
        margin-bottom: 30px;
    }

    .colunaLateralFuncionalidade .bgFuncao {
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
    }

        .colunaLateralFuncionalidade .bgFuncao .icone {
            width: 300px;
            height: 300px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url('file:///D:\ERP\ProjectVendas\ERP_Suite\ERP_Suite\wwwroot\images\homem_imprimindo_notas_azul.svg');
        }

        .colunaLateralFuncionalidade .bgFuncao .cont {
            width: calc(100% - 550px);
        }

            .colunaLateralFuncionalidade .bgFuncao .cont h2 {
                font-size: 28px;
                font-weight: 700;
                color: #999;
                margin-bottom: 20px;
            }

            .colunaLateralFuncionalidade .bgFuncao .cont .textPadrao {
                margin-bottom: 20px;
            }

            .colunaLateralFuncionalidade .bgFuncao .cont .btPadrao {
                width: max-content;
            }

.contatoLateral {
    position: absolute;
    right: 5vw;
    top: 670px;
    width: 25vw;
    min-width: 375px;
}

    .contatoLateral .sessaoContatoPadrao {
        padding: unset;
        flex-direction: column;
        height: unset;
        margin-bottom: unset;
    }

        .contatoLateral .sessaoContatoPadrao .imgFrase {
            flex-direction: column;
            align-items: center;
            flex-basis: unset;
        }

            .contatoLateral .sessaoContatoPadrao .imgFrase img {
                width: 77%;
                height: 190px;
                margin-top: 10px;
            }

            .contatoLateral .sessaoContatoPadrao .imgFrase h2 {
                flex-basis: unset;
                width: 100%;
                text-align: center;
                padding-left: 40px;
                padding-right: 40px;
                font-size: 22px;
            }

        .contatoLateral .sessaoContatoPadrao .bgBts {
            flex-direction: column;
            flex-basis: unset;
            margin-top: 20px;
            margin-bottom: 40px;
            width: 100%;
            padding-left: 40px;
            padding-right: 40px;
        }

            .contatoLateral .sessaoContatoPadrao .bgBts .bts {
                flex-direction: column;
            }

                .contatoLateral .sessaoContatoPadrao .bgBts .bts .btPadrao:last-child {
                    margin-left: unset;
                    margin-top: 7px;
                }

            .contatoLateral .sessaoContatoPadrao .bgBts .link {
                width: max-content;
                margin: 20px auto 0 auto;
            }

.contatoLateralFixo {
    position: fixed;
    top: 100px !important;
}

.listAreas {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .listAreas .area {
        display: flex;
        width: calc(50% - 35px);
        margin-bottom: 50px;
        position: relative;
        padding-left: 65px;
    }

        .listAreas .area .icon {
            position: absolute;
            left: 0;
            top: calc(50% - 65px);
            width: 130px;
            height: 130px;
            border-radius: 10px;
            background: #fff;
            transition: 0.6s;
            box-shadow: 0px 7px 30px 0px rgba(87, 36, 17, 0.17);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .listAreas .area .icon svg {
                width: 45%;
                display: block;
                fill: var(--laranja-claro);
            }

        .listAreas .area .content {
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            padding: 35px 40px 35px 100px;
            transition: 0.6s;
        }

            .listAreas .area .content h2 {
                font-size: 18px;
                color: var(--laranja-padrao);
                font-weight: 700;
                margin-bottom: 10px;
            }

        .listAreas .area:hover .icon {
            background: var(--laranja-escuro);
        }

        .listAreas .area:hover .content {
            border-color: var(--laranja-padrao);
        }

.funcsFinaisRodape {
    padding-top: 0;
}

    .funcsFinaisRodape h3 {
        font-size: 30px;
        color: var(--laranja-padrao);
        font-weight: 200;
        margin-bottom: 30px;
    }

.funcsFinaisRodape {
    padding-top: 0;
}

    /* Título */
    .funcsFinaisRodape h3 {
        font-size: 30px;
        color: var(--laranja-padrao);
        font-weight: 300;
        margin-bottom: 40px;
        text-align: center;
    }

    /* GRID PRINCIPAL */
    .funcsFinaisRodape .list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

        /* CARD */
        .funcsFinaisRodape .list a {
            background: #fff;
            padding: 24px;
            border-radius: 14px;
            border: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            text-decoration: none;
            transition: all 0.25s ease;
        }

            /* HOVER */
            .funcsFinaisRodape .list a:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 30px rgba(0,0,0,0.08);
                border-color: var(--laranja-padrao);
            }

            /* ÍCONE */
            .funcsFinaisRodape .list a .icon {
                width: 55px;
                height: 55px;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                flex-shrink: 0;
            }

            /* TEXTO */
            .funcsFinaisRodape .list a .text {
                flex: 1;
            }

                /* TÍTULO */
                .funcsFinaisRodape .list a .text h2 {
                    font-size: 18px;
                    margin-bottom: 8px;
                    font-weight: 700;
                    color: var(--laranja-padrao);
                }

                /* DESCRIÇÃO */
                .funcsFinaisRodape .list a .text .textPadrao {
                    font-size: 14px;
                    line-height: 1.6;
                    color: #555;
                }

/* TABLET */
@media (max-width: 1023px) {
    .funcsFinaisRodape .list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .funcsFinaisRodape .list {
        grid-template-columns: 1fr;
    }
}


.numbersSobre {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

    .numbersSobre div {
        width: 28%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .numbersSobre div * {
            text-align: center;
        }

        .numbersSobre div b {
            color: var(--laranja-claro);
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 20px;
        }

.diferenciaisSobre h2 {
    text-align: center;
    color: var(--laranja-escuro);
}

.diferenciaisSobre .list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
}

    .diferenciaisSobre .list .item {
        width: calc(50% - 20px);
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        padding: 30px 40px;
        margin-bottom: 30px;
        justify-content: space-between;
        display: flex;
    }

        .diferenciaisSobre .list .item .icon {
            width: 70px;
            height: 70px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .diferenciaisSobre .list .item .text {
            width: calc(100% - 100px);
        }

            .diferenciaisSobre .list .item .text h2 {
                font-size: 18px;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .diferenciaisSobre .list .item .text * {
                text-align: left;
            }

.sectionInicialInterno {
    padding-left: 11vw;
    position: relative;
    margin-top: 80px;
    margin-bottom: 120px;
}

    .sectionInicialInterno h2 {
        color: var(--laranja-claro);
        width: 50%;
        margin-bottom: 30px;
        color: #999;
        font-weight: 200;
    }

        .sectionInicialInterno h2 b {
            color: var(--laranja-claro);
        }

    .sectionInicialInterno .textPadrao {
        width: 50%;
    }

    .sectionInicialInterno .bgImagem {
        width: 40%;
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
        border-radius: 10px 0 0 10px;
        background-image: url(../images/imgContentInicial.jpg);
        background-position: left center;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.31);
    }

.formContato {
    overflow: unset;
    position: relative;
    margin-top: -30px;
}

    .formContato form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .formContato form .item {
            width: calc(50% - 15px);
            background: #fff;
            height: 60px;
            border-radius: 90px;
            box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.13);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
        }

            .formContato form .item p {
                font-size: 16px;
                font-weight: 700;
                color: var(--laranja-escuro);
            }

            .formContato form .item .textBox {
                width: calc(100% - 100px);
                border: 0;
                font-size: 16px;
                color: var(--laranja-padrao);
                font-weight: 700;
                height: 50px;
            }

        .formContato form .textArea {
            width: 100%;
            padding: 30px 40px;
            border-radius: 10px;
            box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.13);
            background: #fff;
            border: 0;
            font-size: 16px;
            font-weight: 700;
            resize: none;
            height: 150px;
            color: var(--laranja-padrao);
            margin-bottom: 20px;
        }

            .formContato form .textArea::placeholder {
                color: var(--laranja-escuro);
            }

.formTeste {
    position: relative;
    margin-top: -50px;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

    .formTeste .itemForm {
        border: solid 1px #ddd;
        background: #fff;
        display: flex;
        align-items: center;
        padding: 0 30px;
        margin-bottom: 20px;
        height: 60px;
        justify-content: space-between;
        box-shadow: none;
    }

        .formTeste .itemForm p {
            font-size: 16px;
            width: 170px;
            color: #606060;
            font-weight: 500;
        }

        .formTeste .itemForm .textBox {
            border: 0;
            height: 60px;
            width: calc(100% - 180px);
            font-size: 16px;
            font-weight: 700;
            background: transparent;
            color: var(--laranja-escuro);
        }

    .formTeste .textPadrao {
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .formTeste .bts {
        display: flex;
    }

        .formTeste .bts .btPadrao {
            margin-right: 30px;
        }

.imgTestar {
    object-fit: contain;
    object-position: top;
    width: 45%;
    position: absolute;
    height: 670px;
    left: calc(15vw + 500px);
    top: 210px;
}

.bgPlanos {
    /*margin-top: 60px;*/
}

    .bgPlanos .sliderPlanos {
        width: 100%;
        max-width: 1300px;
        display: flex;
        justify-content: space-around;
        padding-top: 50px;
        margin: 0 auto;
        margin-bottom: 100px !important;
    }

        .bgPlanos .sliderPlanos .plano {
            width: 45%;
            border-radius: 10px;
            border: 1px solid #e5e5e5;
            padding: 2vw 3vw;
            position: relative;
            background: #fff;
        }

            .bgPlanos .sliderPlanos .plano .recomendado {
                position: absolute;
                left: -2px;
                right: -2px;
                top: -50px;
                height: 50px;
                border-radius: 10px 10px 0 0;
                background: #ff6431;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                font-weight: 700;
                color: #fff;
            }

                .bgPlanos .sliderPlanos .plano .recomendado svg {
                    width: 25px;
                    fill: #fff;
                    margin-right: 10px;
                }

            .bgPlanos .sliderPlanos .plano h4 {
                text-align: center;
                color: #ff961f;
                font-size: 25px;
                font-weight: 700;
            }

            .bgPlanos .sliderPlanos .plano .icon {
                width: 110px;
                height: 110px;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                margin: 10px auto 10px auto;
            }

            .bgPlanos .sliderPlanos .plano .iconControle {
                background-image: url(../images/iconeControle.html);
            }

            .bgPlanos .sliderPlanos .plano .iconProfissional {
                background-image: url(../images/iconeProfissional.png);
            }

            .bgPlanos .sliderPlanos .plano .iconAvancado {
                background-image: url(../images/iconeAvancado.png);
            }

            .bgPlanos .sliderPlanos .plano .dePreco {
                text-align: center;
                text-decoration: line-through;
                font-size: 15px;
                font-weight: 300;
                color: var(--laranja-escuro);
            }

        .bgPlanos .sliderPlanos .planoPrincipal {
            border-radius: 0 0 10px 10px;
            border: 2px solid var(--laranja-escuro);
            box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.13);
        }

        .bgPlanos .sliderPlanos .price {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

            .bgPlanos .sliderPlanos .price .por {
                font-size: 20px;
                color: #999;
            }

            .bgPlanos .sliderPlanos .price .valor {
                font-size: 60px;
                font-weight: 700;
                color: #ff961f;
                position: relative;
                letter-spacing: -2px;
                margin: 0 15px;
            }

                .bgPlanos .sliderPlanos .price .valor span {
                    font-weight: 600;
                    position: absolute;
                    letter-spacing: normal;
                    font-size: 20px;
                    top: -12px;
                    right: -15px;
                }

            .bgPlanos .sliderPlanos .price .mes {
                font-size: 20px;
                font-weight: 300;
                margin-top: 33px;
                color: var(--verde);
                margin-left: -5px;
            }

        .bgPlanos .sliderPlanos .tipoPagamento {
            text-align: center;
            font-size: 20px;
            color: #888;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .bgPlanos .sliderPlanos .tipoPagamento p {
                color: #888;
            }

        .bgPlanos .sliderPlanos .textFinal {
            line-height: 200%;
            margin-top: 30px;
        }

            .bgPlanos .sliderPlanos .textFinal span {
                line-height: 100%;
                font-size: 14px;
            }

.bgTiposPlanos {
    width: 300px;
    height: 65px;
    background: #fff;
    box-shadow: 0px 11px 38px 0px rgba(87, 36, 17, 0.13);
    border-radius: 90px;
    bottom: -30px;
    position: absolute;
    left: calc(50% - 150px);
    padding: 4px;
    display: flex;
}

    .bgTiposPlanos .bg {
        width: calc(50% - 4px);
        border-radius: 90px;
        background: var(--laranja-escuro);
        position: absolute;
        left: 4px;
        top: 4px;
        bottom: 4px;
        transition: 0.3s;
    }

    .bgTiposPlanos .bgAnual {
        left: 50%;
    }

    .bgTiposPlanos a {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        border-radius: 90px;
        font-weight: 700;
        color: var(--laranja-escuro);
        position: relative;
    }

    .bgTiposPlanos .sel {
        color: #fff;
    }

.handMobile {
    width: 50px;
    height: 70px;
    margin-left: calc(50% + 50px);
    background: url(../images/hand.svg) center no-repeat;
    background-size: contain;
    opacity: 1;
    display: none;
    margin-bottom: 20px;
    animation-name: handMobile;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

@keyframes handMobile {
    0% {
        margin-left: calc(50% + 30px);
        opacity: 1;
    }

    70% {
        margin-left: calc(50% - 70px);
        opacity: 1;
    }

    100% {
        margin-left: calc(50% - 70px);
        opacity: 0;
    }
}

.bannerCheckOut .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 8vw;
    padding-right: 8vw;
}

    .bannerCheckOut .banner .content {
        width: calc(100% - 500px) !important;
    }

    .bannerCheckOut .banner .bgAjudaCheckOut {
        width: 460px;
        border-radius: 10px;
        background: #fff;
        padding: 30px;
        display: flex;
        justify-content: space-between;
    }

        .bannerCheckOut .banner .bgAjudaCheckOut .icon {
            width: 50px;
            height: 50px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url(../images/call.svg);
        }

        .bannerCheckOut .banner .bgAjudaCheckOut .text {
            width: calc(100% - 70px);
        }

            .bannerCheckOut .banner .bgAjudaCheckOut .text .title {
                font-size: 20px;
                color: var(--laranja-padrao);
            }

            .bannerCheckOut .banner .bgAjudaCheckOut .text .textPadrao a {
                display: inline-block;
            }

.bgPlanoEscolhido {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--laranja-escuro);
    background: #fff;
    box-shadow: 0px 7px 30px 0px rgba(87, 36, 17, 0.14);
    padding: 50px 50px 50px 0;
    display: flex;
}

    .bgPlanoEscolhido .coluna1 {
        width: 300px;
        margin-right: 35px;
        border-right: 1px solid #e5e5e5;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .bgPlanoEscolhido .coluna1 .title {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--laranja-claro);
        }

        .bgPlanoEscolhido .coluna1 .icone {
            width: 100px;
            height: 100px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

    .bgPlanoEscolhido .coluna2 {
        width: calc(100% - 600px);
    }

        .bgPlanoEscolhido .coluna2 li {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }

            .bgPlanoEscolhido .coluna2 li span {
                width: 14px;
                height: 12px;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                background-image: url(../images/checked.svg);
                display: block;
            }

            .bgPlanoEscolhido .coluna2 li p {
                width: calc(100% - 24px);
            }

            .bgPlanoEscolhido .coluna2 li:last-child {
                margin-top: 30px;
            }

    .bgPlanoEscolhido .coluna3 {
        width: 300px;
    }

        .bgPlanoEscolhido .coluna3 .dePreco {
            text-align: center;
            text-decoration: line-through;
            font-size: 15px;
            font-weight: 300;
            color: var(--laranja-escuro);
        }

        .bgPlanoEscolhido .coluna3 .price {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

            .bgPlanoEscolhido .coluna3 .price .por {
                font-size: 20px;
                color: #999;
            }

            .bgPlanoEscolhido .coluna3 .price .valor {
                font-size: 60px;
                font-weight: 700;
                color: var(--verde);
                position: relative;
                letter-spacing: -2px;
                margin: 0 15px;
            }

                .bgPlanoEscolhido .coluna3 .price .valor span {
                    font-weight: 600;
                    position: absolute;
                    letter-spacing: normal;
                    font-size: 20px;
                    top: -12px;
                    right: -15px;
                }

            .bgPlanoEscolhido .coluna3 .price .mes {
                font-size: 20px;
                font-weight: 300;
                margin-top: 33px;
                color: var(--verde);
                margin-left: -5px;
            }

        .bgPlanoEscolhido .coluna3 .tipoPagamento {
            text-align: center;
            font-size: 20px;
            color: #888;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .bgPlanoEscolhido .coluna3 .tipoPagamento p {
                color: #888;
            }

.selecionarPagamento {
    width: 100%;
    display: flex;
    margin: 80px 0;
    justify-content: center;
}

    .selecionarPagamento .pagamento {
        width: 380px;
        border-radius: 10px;
        border: 2px solid #e5e5e5;
        padding: 25px;
        margin: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: 0.4s;
        box-shadow: 0px 7px 30px 0px rgba(87, 36, 17, 0.14);
    }

        .selecionarPagamento .pagamento .title {
            font-size: 18px;
            font-weight: 700;
            color: #666;
            margin-bottom: 25px;
        }

        .selecionarPagamento .pagamento .price {
            font-weight: 200;
            color: #546c44;
            font-size: 22px;
            margin-bottom: 10px;
        }

            .selecionarPagamento .pagamento .price b {
                font-weight: 700;
                font-size: 48px;
            }

        .selecionarPagamento .pagamento .desconto {
            color: var(--laranja-padrao);
            font-size: 18px;
            font-weight: 700;
            margin-top: 25px;
        }

    .selecionarPagamento .sel {
        border-color: var(--verde);
        border-width: 4px;
    }

        .selecionarPagamento .sel .title {
            color: var(--laranja-escuro);
        }

        .selecionarPagamento .sel .price {
            color: var(--verde);
        }

.bgInformacoesPagamento {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 7px 30px 0px rgba(87, 36, 17, 0.14);
    margin-bottom: 50px;
}

    .bgInformacoesPagamento .infosPagamento {
        width: 100%;
        display: flex;
    }

        .bgInformacoesPagamento .infosPagamento .dadosCartaoBoleto {
            width: 50%;
            padding: 45px;
            border-right: 1px solid #e5e5e5;
        }

        .bgInformacoesPagamento .infosPagamento .dadosFaturamento {
            padding: 45px;
            width: 50%;
        }

            .bgInformacoesPagamento .infosPagamento .dadosFaturamento .titleFaturamento {
                color: var(--laranja-escuro);
                font-weight: 300;
                font-size: 24px;
                margin-bottom: 20px;
            }

        .bgInformacoesPagamento .infosPagamento .line {
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            position: relative;
            align-items: center;
        }

            .bgInformacoesPagamento .infosPagamento .line .textBox {
                border: 2px solid #e5e5e5;
                width: 100%;
                height: 50px;
                padding: 0 20px;
                color: #666;
                font-size: 16px;
                background: #fff;
                font-weight: 700;
                transition: 0.3s;
                border-radius: 7px;
            }

                .bgInformacoesPagamento .infosPagamento .line .textBox:focus {
                    border-color: var(--laranja-claro);
                }

            .bgInformacoesPagamento .infosPagamento .line .input {
                width: 100%;
                position: relative;
            }

            .bgInformacoesPagamento .infosPagamento .line .input20 {
                width: calc(20% - 12px);
                position: relative;
            }

            .bgInformacoesPagamento .infosPagamento .line .input30 {
                width: calc(33.333% - 12px);
                position: relative;
            }

            .bgInformacoesPagamento .infosPagamento .line .input40 {
                width: calc(40% - 12px);
                position: relative;
            }

            .bgInformacoesPagamento .infosPagamento .line .input50 {
                width: calc(50% - 12px);
                position: relative;
            }

            .bgInformacoesPagamento .infosPagamento .line .input70 {
                width: calc(70% - 25px);
                position: relative;
            }

            .bgInformacoesPagamento .infosPagamento .line .question {
                width: 17px;
                height: 17px;
                border-radius: 50px;
                background: #ffc107;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                font-weight: 700;
                color: #fff;
                position: absolute;
                right: 0;
                top: 5px;
            }

            .bgInformacoesPagamento .infosPagamento .line .selosCartoes {
                position: absolute;
                right: 0;
                top: -16px;
            }

.btTitleCheckout {
    width: 100%;
    padding: 30px 45px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .btTitleCheckout .title {
        font-size: 18px;
        font-weight: 700;
        color: var(--laranja-escuro);
    }

    .btTitleCheckout .seguranca {
        display: flex;
        align-items: center;
        color: var(--verde-escuro);
        font-size: 18px;
    }

        .btTitleCheckout .seguranca svg {
            width: 20px;
            height: 20px;
            display: block;
            fill: var(--verde);
            margin-right: 7px;
        }

.bgResumo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 7px 30px 0px rgba(87, 36, 17, 0.14);
}

    .bgResumo .bgLinhaResumo {
        padding: 0 45px;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

        .bgResumo .bgLinhaResumo .label {
            color: #666;
            font-size: 18px;
        }

        .bgResumo .bgLinhaResumo .price {
            color: #666;
            font-size: 23px;
        }

    .bgResumo .bgFinal {
        width: 100%;
        display: flex;
        padding: 45px;
        flex-direction: column;
        align-items: flex-end;
    }

        .bgResumo .bgFinal .valorBtConfirma {
            display: flex;
            align-items: center;
        }

            .bgResumo .bgFinal .valorBtConfirma .textPadrao {
                margin-right: 50px;
                font-size: 18px;
            }

            .bgResumo .bgFinal .valorBtConfirma .btPadrao {
                height: 50px;
            }

        .bgResumo .bgFinal .textTermos {
            color: #999;
            margin-top: 30px;
            font-size: 16px;
        }

            .bgResumo .bgFinal .textTermos a {
                display: inline-block;
            }

.rodapeCheckout {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
}

    .rodapeCheckout .logo {
        width: 150px;
        height: 35px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(../images/logoErpSuiteHorizontal.svg);
        margin-right: 30px;
        filter: grayscale(100%);
        opacity: 0.5;
    }

    .rodapeCheckout .textPadrao {
        margin-top: 15px;
    }

@media only screen and (max-width: 1440px) {
    .bgBannerInternoPequeno .banner {
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .imgTestar {
        left: calc(13vw + 500px);
    }
}

@media only screen and (max-width: 1366px) {
    .bgBannerInternoPequeno .banner {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .imgTestar {
        left: calc(12vw + 500px);
    }
}

@media only screen and (max-width: 1280px) {
    .imgTestar {
        left: calc(10vw + 500px);
    }
}

@media only screen and (max-width: 1023px) {
    .listFuncionalidadesInterno {
        flex-direction: column;
        flex-wrap: unset;
    }

        .listFuncionalidadesInterno .funcInterno {
            width: 100%;
            margin-left: unset;
        }

    .inicioInterno {
        padding-bottom: 0;
    }

    .colunaLateralFuncionalidade {
        width: 100%;
    }

        .colunaLateralFuncionalidade .bgFuncao {
            flex-direction: column;
        }

            .colunaLateralFuncionalidade .bgFuncao .icone {
                margin-bottom: 20px;
            }

            .colunaLateralFuncionalidade .bgFuncao .cont {
                width: 100%;
            }

    .contatoLateral {
        position: relative;
        width: 100%;
        right: unset;
        top: unset;
        margin-bottom: 100px;
    }

        .contatoLateral .sessaoContatoPadrao .bgBts {
            margin-top: unset;
        }

    .listAreas {
        flex-direction: column;
        flex-wrap: nowrap;
    }

        .listAreas .area {
            width: 100%;
            padding-left: 0;
            margin-bottom: 120px;
        }

            .listAreas .area:last-child {
                margin-bottom: 0;
            }

            .listAreas .area .icon {
                width: 90px;
                height: 90px;
                top: -45px;
                left: calc(50% - 45px);
            }

            .listAreas .area .content {
                padding: 80px 30px 30px 30px;
            }

                .listAreas .area .content * {
                    text-align: center;
                }

    .funcsFinaisRodape h3 {
        font-size: 25px;
    }

    .funcsFinaisRodape .list {
        flex-direction: column;
    }

        .funcsFinaisRodape .list a {
            width: 100%;
        }

    .bannerPequenoMobile {
        height: 200px;
    }

        .bannerPequenoMobile .banner {
            height: 200px;
        }

    .numbersSobre {
        margin-bottom: 50px;
        flex-direction: column;
    }

        .numbersSobre div {
            width: 100%;
            margin-bottom: 50px;
        }

    .diferenciaisSobre .list .item {
        width: 100%;
        flex-direction: column;
    }

        .diferenciaisSobre .list .item .icon {
            margin-bottom: 20px;
        }

        .diferenciaisSobre .list .item .text {
            width: 100%;
        }

    .sectionInicialInterno {
        padding-left: 8vw;
        padding-right: 8vw;
        margin-bottom: 70px;
    }

        .sectionInicialInterno h2 {
            width: 100%;
        }

        .sectionInicialInterno .textPadrao {
            width: 100%;
        }

        .sectionInicialInterno .bgImagem {
            top: unset;
            right: unset;
            bottom: unset;
            position: relative;
            width: 100%;
            height: 250px;
            margin-top: 30px;
        }

    .formContato {
        margin-top: 20px;
    }

        .formContato form {
            padding: 0 5vw;
        }

            .formContato form .item {
                width: 100%;
                margin-bottom: 15px;
            }

                .formContato form .item .textBox {
                    width: calc(100% - 80px);
                }

            .formContato form .textArea {
                padding: 20px 30px;
            }

            .formContato form .btPadrao {
                width: 100%;
                height: 50px;
            }

    .bgBannerInternoPequeno .banner {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .formTeste {
        margin-top: 20px;
        width: 100%;
    }

        .formTeste .itemForm {
            flex-direction: column;
            align-items: baseline;
            height: unset;
            padding-top: 10px;
            border-radius: 10px;
            padding-left: 20px;
            padding-right: 20px;
        }

            .formTeste .itemForm .textBox {
                width: 100%;
                background: transparent;
            }

        .formTeste .textPadrao {
            text-align: center;
        }

        .formTeste .bts {
            flex-direction: column;
            align-items: center;
        }

            .formTeste .bts .btPadrao {
                width: 100%;
                margin: 0;
                margin-bottom: 30px;
                height: 50px;
            }

    .imgTestar {
        display: none;
    }

    .handMobile {
        display: block;
    }

    .bannerCheckOut {
        height: auto;
    }

        .bannerCheckOut .banner {
            height: auto;
            padding-top: 8vw;
            padding-bottom: 8vw;
            flex-direction: column;
        }

            .bannerCheckOut .banner .content {
                width: 100% !important;
            }

            .bannerCheckOut .banner .bgAjudaCheckOut {
                width: 100%;
                padding: 20px;
                margin-top: 20px;
            }

                .bannerCheckOut .banner .bgAjudaCheckOut .icon {
                    width: 30px;
                    height: 30px;
                }

                .bannerCheckOut .banner .bgAjudaCheckOut .text {
                    width: calc(100% - 50px);
                }

    .bgPlanoEscolhido {
        flex-direction: column;
        padding: 8vw;
    }

        .bgPlanoEscolhido .coluna1 {
            border-right: 0;
            margin-bottom: 20px;
            width: 100%;
        }

        .bgPlanoEscolhido .coluna2 {
            width: 100%;
            margin-bottom: 40px;
        }

        .bgPlanoEscolhido .coluna3 {
            width: 100%;
        }

    .selecionarPagamento {
        flex-direction: column;
    }

        .selecionarPagamento .pagamento {
            width: 100%;
            margin: 0;
            margin-bottom: 20px;
        }

    .btTitleCheckout {
        flex-direction: column;
    }

        .btTitleCheckout .seguranca {
            margin-top: 15px;
        }

    .bgInformacoesPagamento .infosPagamento {
        flex-direction: column;
    }

        .bgInformacoesPagamento .infosPagamento .dadosCartaoBoleto {
            width: 100%;
            padding: 8vw;
            border-right: 0;
            border-bottom: 1px solid #e5e5e5;
        }

        .bgInformacoesPagamento .infosPagamento .dadosFaturamento {
            width: 100%;
            padding: 8vw;
        }

        .bgInformacoesPagamento .infosPagamento .line {
            flex-wrap: wrap;
            margin-bottom: 0;
        }

            .bgInformacoesPagamento .infosPagamento .line .input {
                width: 100%;
                position: relative;
                margin-bottom: 20px;
            }

            .bgInformacoesPagamento .infosPagamento .line .input20 {
                width: 100%;
                position: relative;
                margin-bottom: 20px;
            }

            .bgInformacoesPagamento .infosPagamento .line .input30 {
                width: calc(50% - 12px);
                position: relative;
                margin-bottom: 20px;
            }

            .bgInformacoesPagamento .infosPagamento .line .input40 {
                width: 100%;
                position: relative;
                margin-bottom: 20px;
            }

            .bgInformacoesPagamento .infosPagamento .line .input50 {
                width: 100%;
                position: relative;
                margin-bottom: 20px;
            }

            .bgInformacoesPagamento .infosPagamento .line .input70 {
                width: 100%;
                position: relative;
                margin-bottom: 20px;
            }

            .bgInformacoesPagamento .infosPagamento .line .selosCartoes {
                width: 123px;
                top: -7px;
            }

            .bgInformacoesPagamento .infosPagamento .line:last-child .input30:last-child {
                width: 100%;
            }

    .bgResumo .bgLinhaResumo {
        padding: 0 8vw;
    }

        .bgResumo .bgLinhaResumo .label {
            font-size: 15px;
            width: 40%;
        }

        .bgResumo .bgLinhaResumo .price {
            font-size: 16px;
        }

    .bgResumo .bgFinal {
        padding: 8vw;
    }

        .bgResumo .bgFinal .valorBtConfirma {
            flex-direction: column;
        }

            .bgResumo .bgFinal .valorBtConfirma .textPadrao {
                margin-right: 0;
                text-align: center;
                margin-bottom: 20px;
            }

            .bgResumo .bgFinal .valorBtConfirma .btPadrao {
                width: 100%;
            }

    .rodapeCheckout {
        flex-direction: column;
    }

        .rodapeCheckout .logo {
            margin-right: 0;
            margin-bottom: 40px;
        }
}

.tituloPlanos {
    color: #f68b1f; /* laranja do site */
    font-weight: 700;
}

/* ===== ATIVAÇÃO ===== */

.ativacao-wrapper {
    background: #f4f7fb;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.ativacao-card {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* FORM */
.ativacao-form {
    flex: 1;
    padding: 60px;
}

.ativacao-form h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ativacao-form .subtitulo {
    color: #666;
    margin-bottom: 32px;
}

.itemForm {
    margin-bottom: 20px;
}

.itemForm label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.textBox {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 14px;
    font-size: 15px;
}

/* BOTÃO */
.bts {
    margin-top: 30px;
    text-align: center;
}

.btPadrao {
    width: 100%;
/*    max-width: 320px;
*/    height: 52px;
    background: #ff6a00;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
}

.btPadrao:hover {
    background: #e85d00;
}

/* BENEFÍCIOS */
.ativacao-beneficios {
    width: 40%;
    background: #1f6ed4;
    color: #fff;
    padding: 60px 50px;
}

.ativacao-beneficios h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.ativacao-beneficios ul {
    list-style: none;
    padding: 0;
}

.ativacao-beneficios li {
    margin-bottom: 16px;
    padding-left: 18px;
    position: relative;
}

.ativacao-beneficios li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffb703;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .ativacao-card {
        flex-direction: column;
    }

    .ativacao-beneficios {
        width: 100%;
    }
}

/* NOVO GRID PLANOS*/


.bgPlanos {
    padding: 60px 20px;
    background: #f9fafc; /* opcional, deixa mais leve como FAQ */
}

    .bgPlanos .tituloPlanos {
        text-align: center;
        font-size: 32px;
        margin-bottom: 50px;
        margin-top: 80px;
        color: #ff961f; /* laranja do site */
    }

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

    .plano-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

    /* Badge de recomendado (opcional) */
    .plano-card .recomendado {
        position: absolute;
        left: -2px;
        right: -2px;
        top: -30px;
        height: 40px;
        border-radius: 10px 10px 0 0;
        background: #ff6431;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
    }

    /* Ícone do plano */
    .plano-card .icon {
        width: 0px;
        height: 0px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        margin: 10px auto 20px auto;
    }

    /* Título do plano */
    .plano-card h4 {
        font-size: 40px;
        color: #ff961f;
        text-align: center;
        margin-bottom: 8px;
        font-weight: 700;
    }

    /* Descrição logo abaixo do título */
    .plano-card .descricao {
        font-size: 16px;
        color: #666;
        text-align: center;
        margin-bottom: 24px;
        line-height: 1.4;
        padding: 0 10px;
    }

    /* Preço antigo e atual */
    .plano-card .dePreco {
        text-align: center;
        text-decoration: line-through;
        font-size: 15px;
        color: #ff961f;
        margin-bottom: 8px;
    }

    .plano-card .price {
        display: flex;
        justify-content: center;
        align-items: baseline;
        margin-bottom: 20px;
    }

        .plano-card .price .por {
            font-size: 18px;
            color: #999;
            margin-right: 8px;
        }

        .plano-card .price .valor {
            font-size: 48px;
            font-weight: 700;
            color: #ff961f;
            position: relative;
            letter-spacing: -1px;
        }

            .plano-card .price .valor span {
                font-size: 20px;
                font-weight: 600;
                position: absolute;
                top: -12px;
                right: -15px;
            }

    /* Recursos do plano - checklist */
    .plano-card .recursos {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 24px;
        text-align: left;
        list-style: none;
        padding-left: 20px;
    }

        .plano-card .recursos li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
        }

            /* Ícone de checklist laranja */
            .plano-card .recursos li::before {
                content: "✔"; /* checkmark */
                position: absolute;
                left: 0;
                top: 0;
                color: #ff961f;
                font-weight: bold;
                font-size: 16px;
                line-height: 1;
            }

    /* Botões */
    .plano-card .btPadrao {
        text-align: center;
        padding: 12px 0;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease;
        cursor: pointer;
        display: block;
        width: 100%;
    }

.btOutlineVerde {
    border: 2px solid #4CAF50;
    color: #4CAF50;
    background: transparent;
}

    .btOutlineVerde:hover {
        background: #4CAF50;
        color: #fff;
    }

.btVerde {
    border: none;
    background: #4CAF50;
    color: #fff;
}

    .btVerde:hover {
        background: #43A047;
    }

/* Botão laranja para Experimentar Grátis */
.btLaranja {
    border: none;
    background: #ff961f; /* laranja do site */
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
    display: block;
    width: 100%;
}

    .btLaranja:hover {
        background: #e07f14; /* laranja escuro para hover */
    }

/* Responsividade extra */
@media (max-width: 768px) {
    .plano-card .price {
        flex-direction: column;
    }

        .plano-card .price .valor {
            font-size: 36px;
        }

            .plano-card .price .valor span {
                top: -10px;
                right: -10px;
            }
}

/* ===== FUNCIONALIDADES HOME (ISOLADO) ===== */

.funcsFinaisRodape {
    margin: 12vh 8vw 0 8vw;
}

    .funcsFinaisRodape > .list {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 24px !important;
    }

        .funcsFinaisRodape > .list > a {
            display: flex !important;
            background: #fff !important;
            border-radius: 14px !important;
            padding: 20px 16px !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
            text-decoration: none !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
            align-items: flex-start !important;
        }

            .funcsFinaisRodape > .list > a:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 40px rgba(0,0,0,0.08);
            }

            .funcsFinaisRodape > .list > a > .icon {
                width: 60px !important;
                height: 60px !important;
                background-position: center !important;
                background-repeat: no-repeat !important;
                background-size: contain !important;
                flex-shrink: 0 !important;
                margin-right: 16px !important;
            }

            .funcsFinaisRodape > .list > a > .text h2 {
                font-size: 20px !important;
                color: #ff961f !important;
                margin: 0 0 8px 0 !important;
            }

            .funcsFinaisRodape > .list > a > .text p {
                font-size: 14px !important;
                line-height: 1.6 !important;
                color: #555 !important;
                margin: 0 !important;
            }



/* ===============================
   Texto centralizado na página (descrição e SEO)
   =============================== */
.texto-centralizado {
    font-size: 18px; /* tamanho confortável */
    line-height: 1.6; /* espaçamento entre linhas */
    color: #333333; /* cor de texto suave */
    margin: 30px auto 40px auto; /* margem superior e inferior, centralizado */
    max-width: 800px; /* largura máxima para não esticar demais */
    text-align: center; /* centraliza o texto */
}

    /* Títulos dentro do texto centralizado */
    .texto-centralizado h2 {
        font-size: 28px;
        color: var(--laranja-padrao); /* cor laranja do site */
        font-weight: 600;
        margin-bottom: 20px;
    }

    /* Parágrafos dentro do texto centralizado */
    .texto-centralizado p {
        font-size: 16px;
        line-height: 1.7;
        color: #444444;
        margin-bottom: 15px;
    }

/* ================= EMISSOR PASSOS ================= */

.secEmissorPassos {
    background: linear-gradient(135deg, #0d3c78, #0a2f5a);
    padding: 100px 0;
    color: #fff;
}

.emissorHeader {
    text-align: center;
    margin-bottom: 60px;
}

    .emissorHeader h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .emissorHeader p {
        opacity: .9;
        max-width: 700px;
        margin: auto;
    }

.emissorGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* TIMELINE */

.emissorTimeline {
    position: relative;
    padding-left: 40px;
}

.linhaVertical {
    position: absolute;
    left: 14px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,.3);
}

.passoItem {
    position: relative;
    margin-bottom: 50px;
}

    .passoItem h3 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .passoItem p {
        opacity: .85;
    }

.dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #ff7a00;
    border-radius: 50%;
}

/* CARD */

.emissorCard {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.cardIcon {
    width: 60px;
    height: 60px;
    background: #0d3c78;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.emissorCard h3 {
    margin-bottom: 15px;
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

    .badges span {
        background: #f2f2f2;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
    }

/* RESPONSIVO */

@media (max-width: 900px) {
    .emissorGrid {
        grid-template-columns: 1fr;
    }

    .secEmissorPassos {
        padding: 70px 0;
    }
}
/* ================= EMISSOR NOVO (VERSÃO LAPIDADA) ================= */

.emissorSectionNova {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f4f8 100%);
}

.emissorWrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TÍTULO ===== */

.emissorTituloNova {
    text-align: center;
    margin-bottom: 80px;
}

    .emissorTituloNova h2 {
        font-size: 42px;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 18px;
        color: #ff6a00; /* laranja do site */
    }

    .emissorTituloNova p {
        font-size: 18px;
        color: #6b7280;
        max-width: 720px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* ===== GRID ===== */

.emissorGridNova {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* ===== TIMELINE ===== */

.timelineNova {
    flex: 1;
    position: relative;
    padding-left: 50px;
}

    .timelineNova::before {
        content: "";
        position: absolute;
        left: 16px;
        top: 10px;
        width: 2px;
        height: calc(100% - 20px);
        background: linear-gradient(to bottom, #ff7a00, rgba(255,122,0,0.2));
    }

.itemNova {
    position: relative;
    margin-bottom: 60px;
}

.dotNova {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #ff7a00;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255,122,0,0.15);
}

.itemNova h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.itemNova p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== CARDS ===== */

.cardsNova {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cardNova {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all .3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

    .cardNova:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    }

    .cardNova h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #111827; /* preto elegante igual cronograma */
    }

    .cardNova p {
        font-size: 15px;
        color: #6b7280;
        line-height: 1.6;
    }

/* ===== CTA ===== */

.ctaNova {
    text-align: center;
    margin-top: 90px;
}

    .ctaNova .btPadrao {
        padding: 16px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(255,122,0,0.3);
    }

/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {

    .emissorGridNova {
        flex-direction: column;
        gap: 50px;
    }

    .emissorTituloNova h2 {
        font-size: 30px;
    }

    .emissorSectionNova {
        padding: 80px 20px;
    }
}

/*CTA HORIZONTAL*/

.cta-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient( 90deg, transparent, #ff6a00, transparent );
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-content {
    max-width: 650px;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,106,0,0.1);
    color: #ff6a00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 12px 30px;
    color: #475569;
    font-size: 15px;
}

.cta-action {
    text-align: center;
}

.btn-premium {
    background: linear-gradient(135deg, #ff6a00, #ff8c32);
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,106,0,0.3);
    display: inline-block;
}

    .btn-premium:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255,106,0,0.5);
    }

.cta-sub {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

/*FUNCIONALIDADES NOVA*/

.funcionalidadesNova {
    padding: 120px 20px;
    background: #ffffff;
}

.funcHeader {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

    .funcHeader h2 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #0f172a;
    }

    .funcHeader p {
        font-size: 18px;
        color: #64748b;
    }

.funcGrid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.funcCard {
    background: #f8fafc;
    padding: 40px;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .funcCard:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.06);
        border-color: #ff6a00;
    }

    .funcCard h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .funcCard p {
        font-size: 16px;
        color: #475569;
        line-height: 1.6;
    }

.funcCTA {
    text-align: center;
    margin-top: 70px;
}


/*---------------------------nova--------------------*/

/* ===================== POR QUE USAR ERP ===================== */

/* ===================== SEÇÃO BASE ===================== */

.alertaSectionNova {
    padding: 80px 0;
    background: #f5f7fa;
}

.alertaWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alertaGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* ===================== BADGE ===================== */

.alertaBadge {
    display: inline-block;
    background: #e8edff;
    color: #1f3cff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* ===================== TÍTULO ===================== */

.alertaContent h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

/* ===================== DESCRIÇÃO ===================== */

.alertaDescricao {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

/* ===================== LISTA ===================== */

.alertaLista {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.alertaItem {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

    .alertaItem:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    /* ===================== TEXTO DOS CARDS DA ESQUERDA ===================== */
    .alertaItem span {
        font-size: 16px;
        color: #111827;
        font-weight: 500;
    }


.alertaIcon {
    font-size: 28px;
    width: 36px;
    height: 36px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* ===================== CARD LATERAL ===================== */

.alertaCard {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px; /* aumentado */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===================== MONITOR ANIMADO ===================== */

.monitorSemControleAnimado {
    position: relative;
    width: 100%;
    max-width: 740px; /* aumentado */
    margin: 0 auto;
}


/* Moldura */
.monitorFrame {
    background: #1e1e1e;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}


/* Cabeçalho do monitor */
.monitorHeader {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: #2c2c2c;
}

    .monitorHeader .circle {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
    }

    .monitorHeader .red {
        background: #ff5f56;
    }

    .monitorHeader .yellow {
        background: #ffbd2e;
    }

    .monitorHeader .green {
        background: #27c93f;
    }

/* Tela interna */
.monitorScreen {
    background: #fef2f2;
    padding: 64px; /* mais espaço interno */
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 260px; /* aumentado */
}


/* ===================== ALERTAS ===================== */

.alertaLinha {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateX(-20px);
}

    /* Tipos */
    .alertaLinha.erro {
        background: #ffebee;
        color: #d32f2f;
        animation: entrada 0.6s ease-out forwards 0.2s, piscarErro 2s ease-in-out infinite 1s;
    }

    .alertaLinha.aviso {
        background: #fff4e5;
        color: #f57c00;
        animation: entrada 0.6s ease-out forwards 0.4s, piscarAviso 2.5s ease-in-out infinite 1.5s;
    }

    .alertaLinha.info {
        background: #e8f4fd;
        color: #1976d2;
        animation: entrada 0.6s ease-out forwards 0.6s, piscarInfo 3s ease-in-out infinite 2s;
    }

/* Entrada */
@keyframes entrada {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Piscadas */
@keyframes piscarErro {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.6;
    }
}

@keyframes piscarAviso {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.5;
    }
}

@keyframes piscarInfo {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.7;
    }
}

/* ===================== SELO ===================== */

.alertaSelo {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #1f3cff;
    color: #fff;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 10px;
    transform: rotate(-10deg);
    box-shadow: 0 8px 20px rgba(31, 60, 255, 0.3);
    font-size: 14px;
}

/* ===================== RODAPÉ CARD ===================== */

.alertaRodape {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1f3cff;
    background: #eef2ff;
    padding: 12px;
    border-radius: 10px;
}

/* ===================== RESPONSIVO ===================== */

@media (max-width: 992px) {

    .alertaGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .alertaContent h2 {
        font-size: 26px;
    }

    .monitorSemControleAnimado {
        max-width: 100%;
    }

    .monitorScreen {
        padding: 16px;
    }
}







        /*# sourceMappingURL=internos.css.map */
