@font-face {
    font-family: 'Open Sans', sans-serif;
    src: url('../webfonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

@font-face {
    font-family: 'Open Sans', sans-serif;
    src: url('../webfonts/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}

/* variables for color */
:root {
    --azul-claro: #18547c;
    --azul-claro2: #5393dcff;
    --azul-escuro: #142935;
    --preto: #252525ff;
    --azul-claro-in: #18547c !important;
    --azul-claro2-in: #5393dcff !important;
    --azul-escuro-in: #142935 !important;
    --preto-in: #252525ff !important;
}

.text-azul-claro {
    color: var(--azul-claro) !important;
}

.text-azul-claro2 {
    color: var(--azul-claro2) !important;
}

.text-azul-escuro {
    color: var(--azul-escuro) !important;
}

.text-preto {
    color: var(--preto) !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, var(--azul-claro) 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, var(--azul-claro));
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    z-index: 9999;
}

.net {
    width: 1200px;
    height: 400px;
    border-radius: 50%;
    z-index: 0;
    position: absolute;
    opacity: 0.045;
    left: 50px;
    top: 100px
}

.net-2 {
    width: 60%;
    height: 55%;
    border-radius: 50%;
    z-index: 0;
    position: absolute;
    opacity: 0.060;
}

.net-3 {
    width: 1500px;
    height: 3400px;
    left: 100px;
    z-index: 0;
    position: absolute;
    opacity: 0.2;
}

.net-solucoes {
    width: 70%;
    height: 55%;
    border-radius: 50%;
    z-index: 0;
    position: absolute;
    opacity: 0.2;
    left: 40%
}

#header_menu {
    background: linear-gradient(to right, transparent 15%, var(--azul-escuro), var(--azul-claro2) 55%, transparent);
    background-size: 100%;
    height: 100%;
    padding: 8px;
    box-shadow: inset 0px -8px 0px 0px #18547c;
    opacity: 0.9;

    & h1 {
        opacity: 1 !important;
    }

}

#menu {
    & nav {
        background: linear-gradient(0deg, #fff 60%, #DCDCDC);
        box-shadow: inset 0px -8px 0px 0px #18547c;
        transition: all 0.1s ease-in-out;
    }

    & .container {
        position: relative !important;
        right: 265px !important;
    }

    & .fa-xs {
        margin-bottom: 2px;
    }

    & .nav-link {
        color: var(--azul-claro);
        text-transform: uppercase;
        font-size: 14px !important;
        border-radius: 15px;
        box-shadow: inset 0 0 0 0 #eeeeee;
        -webkit-transition: all ease 0.5s;
        -moz-transition: all ease 0.5s;
        transition: all ease 0.5s;
        font-weight: 700;

        &:hover {
            color: var(--azul-escuro);
            box-shadow: inset 300px 0 0 0 #eeeeee;
        }

        &:hover .fa-stack-1x {
            /*color: #fff!important;*/
        }

    }

    & .menu-tel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        & a {
            color: var(--azul-claro);
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;

            &:hover {
                color: var(--azul-escuro);
            }

        }
    }

    & .menu-icons span:last-child {
        font-size: 14px;
    }

    & .dropdown-menu {
        background: linear-gradient(#f1f1f1);

        & li {
            & a {
                color: var(--azul-claro);
                font-weight: bold;

                &:hover {
                    background-color: var(--azul-claro);
                }

            }
        }

        & li:hover {
            & a {
                color: #fff;
                font-weight: bold;

                &:hover {
                    background-color: var(--azul-claro);
                }

            }
        }
    }
}

#menu-before {
    position: relative;
    width: 705px;
    height: 80px;
    background: linear-gradient(45deg, #18547c 85%, transparent 45%);
}

.logo-garbit {
    position: relative !important;
    right: 255px !important;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-escuro);
    text-decoration: none;
    color: #fff !important;
    font-size: 15px;
    line-height: 16px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 30px;
    width: max-content;
    min-width: 130px;

    & i {
        font-size: 20px;
        line-height: 20px;
        margin-right: 4px;
    }

    &:hover {
        background-color: var(--azul-escuro);
        transition: 0.5s;
    }

}

.social-icons {
    & .fas.fa-circle {
        color: var(--azul-claro);
        border: 2px solid white;
        border-radius: 50%;
        font-size: 22px;
        width: 26px;
        transition: all 0.2s ease-in-out;
    }

    & .fab.fa-stack-1x {
        color: #fff;
        font-size: 12px;
        line-height: 26px;
        width: 26px;
    }

    & span:hover .fas.fa-circle {
        color: var(--azul-escuro);
    }

    .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background-color: var(--azul-claro);
        color: #fff;
        font-size: 14px;
        line-height: 26px;
        transition: all 0.2s ease-in-out;
    }

}

.banner-principal {
    background: radial-gradient(90deg, #ccc 20%, #f1f1f1, #fff);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    & .swiper {
        & .swiper-slide {
            & h1 {
                font-weight: 800;
                color: var(--azul-claro);
                font-size: 45px;
                margin-bottom: 20px;
            }

            & p {
                font-weight: 600;
                color: var(--azul-escuro);
                font-size: 20px;
                line-height: 24px;
                margin-bottom: 30px;
            }

        }
    }

    & .thumb-slider {
        & a {
            text-decoration: none;
        }

        & .col-3 {
            cursor: pointer;

            & a>div {
                flex-shrink: 0;
                height: 100%;
                position: relative;
                transition-property: transform;
                display: block;
                border-radius: 20px;
                min-height: 130px;
                padding: 20px 0;
                background-color: rgba(255, 255, 255, 0.10);
                border: 2px solid var(--azul-escuro);

                &:hover {
                    background-color: #fff;
                    border: 2px solid var(--azul-claro2);

                    & p {
                        color: var(--azul-claro2);
                        transition: all 0.3s ease-in-out;
                    }

                    & svg path {
                        fill: var(--azul-claro2) !important;
                        transition: all 0.3s ease-in-out;
                    }

                }
            }

            & svg {
                width: 50px;
                height: 50px;
            }

            & p {
                font-weight: 700;
                color: #35557aff;
                font-size: 10px;
                line-height: 12px;
                margin: 0;
            }

        }
    }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-claro2);
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    width: max-content;

    & i {
        font-size: 26px;
        line-height: 26px;
        margin-right: 8px;
    }

    &:hover {
        background-color: var(--azul-escuro);
        color: #fff !important;
        transition: 0.5s;
    }

}

#sobre {
    background: linear-gradient(transparent, #fff, #ccc, var(--azul-escuro-in));
    background-position: top right;
    background-repeat: no-repeat;

    & h1 {
        color: var(--azul-claro);
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & p {
        color: var(--azul-escuro);
        font-weight: 400;
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    & img {
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    }

}

#processos {
    /* background: var(--azul-escuro-in); */
    /* background-image: url('../images/bg-processos.png'); */
    background: linear-gradient(var(--azul-escuro-in), var(--azul-claro), var(--azul-escuro));
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;

    & h1 {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
        line-height: 40px;
    }

    & p {
        color: #fff;
        font-weight: normal;
        font-size: 16px;
        margin-top: 10px;
        text-align: start;
    }

}

#cards-processos {
    margin: auto;
    padding: 110px;
    max-width: 1450px;
    height: auto;
    position: relative;
    background-position: center 100%;
    background-size: auto;
    background-repeat: no-repeat;
    overflow: hidden;
    gap: 30px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    overflow: none;
}

.carousel {
    display: flex;
    scroll-behavior: smooth;
    gap: 155px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.prevBtn,
.nextBtn {
    cursor: pointer;
    top: 460px;
}

.prevBtn {
    z-index: 1000;
    position: relative;
    left: 120px;
    width: 100px;
    height: 100px;
    float: left;
    background: url(../img/prev.png) left 50% no-repeat;
    opacity: 0.05;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.prevBtn:hover {
    opacity: 0.5;
}

.nextBtn {
    z-index: 1000;
    position: relative;
    right: 120px;
    width: 100px;
    height: 100px;
    float: right;
    background: url(../img/next.png) right 50% no-repeat;
    align-items: center;
    opacity: 0.05;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.nextBtn:hover {
    opacity: 0.5;
}

.card-processo {
    position: relative;
    width: 1450px;
    height: 815px;
    margin: 0 auto;
    border-radius: 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
}

.card-processo:hover {
    transform: scale(1.0050);
    filter: brightness(1.1);
    transition: transform 0.3s ease, filter 0.5s ease;
}

.card-processo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background-position: center 100%;
}

.processo_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s, filter 0.3s;
}

.processo_1 h1 {
    position: relative;
    left: 93px;
    bottom: 60px;
    font-size: 52px !important;
}

.processo_1 p {
    position: relative;
    max-width: 535px;
    left: 93px;
    bottom: 60px;
    font-size: 19px !important;
}

.processo_1-list {
    position: relative;
    left: 48px;
    top: 66px;
}

.processo_1-list p {
    font-size: 17px !important;
    margin: 31px 0px 31px 0px !important;
}

.processo_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s, filter 0.3s;
}

.processo_2 h1 {
    position: relative;
    left: 35px;
    top: 67px;
    font-size: 52px !important;
}

.processo_2 p {
    position: relative;
    max-width: 520px;
    left: 35px;
    top: 67px;
    font-size: 19px !important;
}

.processo_2-list-1 {
    position: relative;
    left: 51px !important;
    top: 64px !important;
}

.processo_2-list-1 p {
    font-size: 17px !important;
    margin: 16px 0px 16px 0px !important;
}

.processo_2-list-2 {
    position: relative;
    left: 433px !important;
    bottom: 245px !important;
}

.processo_2-list-2 p {
    font-size: 17px !important;
    margin: 16px 0px 16px 0px !important;
}

.processo_3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s, filter 0.3s;
}

.processo_3 h1 {
    position: relative;
    left: 58px;
    bottom: 115px;
    font-size: 52px !important;
}

.processo_3 p {
    position: relative;
    max-width: 535px;
    left: 58px;
    bottom: 115px;
    font-size: 19px !important;
}

.processo_3-list {
    position: relative;
    left: 35px;
    top: 69px;
}

.processo_3-list p {
    font-size: 17px !important;
    margin: 35px 0px 35px 0px !important;
}

.processo_4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s, filter 0.3s;
}

.processo_4 h1 {
    position: relative;
    max-width: 600px;
    left: 60px;
    top: 30px;
    font-size: 52px !important;
    line-height: 55px !important;
}

.processo_4 p {
    position: relative;
    max-width: 520px;
    left: 60px;
    top: 30px;
    font-size: 19px !important;
}

.processo_4-list-1 {
    position: relative;
    left: 26px !important;
    top: 25px !important;
}

.processo_4-list-1 p {
    font-size: 17px !important;
    margin: 16px 0px 16px 0px !important;
}

.processo_4-list-2 {
    position: relative;
    left: 405px !important;
    bottom: 242px !important;
}

.processo_4-list-2 p {
    font-size: 17px !important;
    margin: 16px 0px 16px 0px !important;
}

.container-card-decisao {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card-decisao {
    background: linear-gradient(#fff, #ccc 75%);
    max-width: 335px;
    min-height: 245px;
    padding: 30px;
    border-radius: 20px;
    margin: 25px;
    transform: scale(1);
    filter: brightness(1);
    transition: transform 0.3s ease, filter 0.3s ease;

    & p {
        margin-top: 25px !important;
        font-size: 16px !important;
        color: var(--azul-escuro) !important;
    }

}

.card-decisao:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.result_tab {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    padding: 2px 16px;
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    cursor: default;
    font-weight: 700;
}

.result_tab i {
    font-size: 1.5em;
    float: right;
    background: transparent;
}

.OK {
    background-color: #16B38E;
    border: 2px solid #fff;
    color: #fff;
}

.OK i {
    background: #16B38E;
}

.NOK {
    background-color: #f05655;
    border: 2px solid #fff;
    color: #fff;
}

.NOK i {
    background: #f05655;
}

.ALERT {
    background-color: #ffbb00;
    border: 2px solid #fff;
    color: #fff;
}

.ALERT i {
    background: #ffbb00;
}

#analise {
    background: linear-gradient(#ccc, #DCDCDC, #fff);
    background-position: center 80%;
    background-size: auto;
    background-repeat: no-repeat;

    & h1 {
        color: var(--azul-escuro);
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & p {
        color: var(--azul-escuro);
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 30px;
    }

}

#antecipacao {
    background: linear-gradient(#fff, #DCDCDC, #ccc);
}

#vantagens {
    /* background-image: url("../images/g10908.png"); */
    background: linear-gradient(#ccc, #DCDCDC, #fff);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    & .swiper {
        & .swiper-slide {
            background-color: rgba(255, 255, 255, 0.84);
            max-width: 348px;
            padding: 30px;
            border-radius: 20px;
            height: auto;

            & h6 {
                font-weight: 700;
                font-size: 18px;
                margin-bottom: 20px;
            }

            & p {
                font-size: 16px;
                line-height: 18px;
                margin: 0;
            }

        }
    }

    & .swiper-pagination {
        & span {
            color: #fff;
            opacity: 1;
            width: 10px;
            height: 10px;
            background-color: var(--azul-claro2);

            &.swiper-pagination-bullet-active {
                width: 30px;
                border-radius: 15px;
                transition: width .2s ease-in;
            }

            &:hover {
                background-color: #fff;
            }

        }
    }
}

#faq {
    background: linear-gradient(var(--azul-claro), var(--azul-escuro) 75%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    & h1 {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & .accordion-item {
        background-color: rgba(255, 255, 255, 0.80);
        padding: 8px;
        border-radius: 20px;
        margin-bottom: 10px;
        height: auto;
        transition: background-color 0.2s ease-in-out;

        & button {
            color: var(--azul-claro2);
            border-radius: 20px;
            font-weight: 700;
            font-size: 18px;
            background-color: unset;

            &::after {
                font-family: 'Font Awesome 5 Free';
                content: '\f103';
                background-image: none;
            }

        }

        & p {
            font-size: 16px;
            line-height: 18px;
            margin: 0;
        }

        /*    busque o .accordion-item que tenha uma div com a classe .show dentro e mude a cor de fundo para rgba(255, 255, 255, 0.90) */
        &:has(.show) {
            background-color: #fff;
        }

    }
}

#chartdiv {
    position: relative;
    right: 105px;
    width: 600px;
    height: 400px;
}

footer {
    & .menu {
        background-color: var(--azul-escuro);

        & ul {
            & li {
                margin: 0 0 10px;

                & a {
                    color: #fff;
                    font-weight: 600;
                    font-size: 17px;
                    line-height: 18px;
                    text-decoration: none;
                    transition: color 0.2s ease-in-out;

                    & span:last-child {
                        font-size: 14px;
                        line-height: 16px;
                    }

                    &:hover {
                        color: var(--azul-claro2);
                    }

                }
            }
        }

        & .endereco p {
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            line-height: 18px;
            margin-bottom: 4px;
        }

    }

    & .copyright {
        background-color: var(--azul-claro);
        font-weight: 700;

        & p {
            color: #fff;
        }

        & a {
            text-decoration: none;
            color: #fff;
            transition: all 0.2s ease-in-out;

            &:hover {
                color: var(--azul-claro2);
            }

        }
    }
}

#logo-footer {
    padding-left: 40px;
}

.banner {
    background-image: url("../img/servicos/servico-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 30px 0;

    & h1 {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

}

#servicos {
    & .content {
        /*background-image: url('../images/light2.png');*/
        background-repeat: no-repeat;
        background-position: top left;
        background-size: contain;

        & h1 {
            /*color: var(--azul-escuro);*/
            font-weight: 700;
            font-size: 40px;
            line-height: 44px;
            margin-bottom: 20px;
        }

        & p {
            /*color: var(--azul-escuro);*/
            font-weight: 600;
            font-size: 18px;
            line-height: 20px;
            margin-bottom: 30px;
        }

        & .lista {
            & h3 {
                /*color: var(--azul-escuro);*/
                font-weight: 400;
                font-size: 28px;
                line-height: 30px;
                margin-bottom: 10px;
            }

            & p {
                /*color: var(--azul-escuro);*/
                font-weight: 300;
                font-size: 16px;
                line-height: 18px;
                margin-bottom: 20px;
            }

        }

        & .midbanner {
            background-image: url("../img/g10830.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            background-attachment: fixed;
            padding: 150px 0;

            & p {
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                line-height: 18px;
                margin-bottom: 10px;
            }

        }

        & .how-it-works {
            & h2 {
                /*color: var(--azul-escuro);*/
                font-weight: 700;
                font-size: 40px;
                line-height: 44px;
                text-align: center;
                margin: 40px 0;
            }

            & h3 {
                color: var(--azul-claro2);
                font-weight: 400;
                font-size: 20px;
                line-height: 22px;
                margin-bottom: 10px;
            }

            & p {
                color: var(--azul-escuro);
                font-weight: 300;
                font-size: 16px;
                line-height: 18px;
                margin-bottom: 20px;
            }

            & .steps {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                margin-top: 40px;
            }

            & .step {
                flex: 1;
                min-width: 250px;
                background: white;
                padding: 30px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }

        }


        & h2 {
            color: var(--azul-escuro);
            font-weight: 700;
            font-size: 40px;
            line-height: 44px;
            width: 100%;
            margin: 40px 0;
            text-align: center;
        }

        & .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;

            & .benefit {
                padding: 20px;
                border-left: 4px solid var(--azul-claro2);
                background-color: white;
                border-radius: 0 8px 8px 0;

                & h3 {
                    color: var(--azul-escuro);
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 20px;
                    margin-bottom: 10px;
                }

                & p {
                    color: var(--azul-escuro);
                    font-weight: 500;
                    font-size: 12px;
                    line-height: 14px;
                    margin-bottom: 0;
                }

            }

            & .benefit-icon {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

        }

        & .partner-section {
            background-color: var(--azul-claro);
            color: white;
            text-align: center;

            & h2 {
                font-weight: 700;
                font-size: 40px;
                line-height: 44px;
                margin-bottom: 20px;
                color: #fff;
            }

            & p {
                font-weight: 600;
                font-size: 18px;
                line-height: 20px;
                margin-bottom: 30px;
                color: #fff;
            }

        }
    }
}

#dados-e-analytics {
    & .bg-primary-custom {
        background-color: var(--azul-claro);
        background: linear-gradient(0deg, var(--azul-escuro), var(--azul-claro) 60%);
    }

    & .bg-dark-custom {
        background-color: var(--azul-escuro);
    }

    & .text-primary-custom {
        color: var(--azul-claro);
    }

    & .btn-primary-custom {
        background-color: var(--azul-claro);
        border-color: var(--azul-claro);
        color: white;
    }

    & .btn-primary-custom:hover {
        background-color: var(--azul-claro2);
        border-color: var(--azul-claro2);
    }

    & .btn-outline-custom {
        border-color: var(--azul-claro);
        color: var(--azul-claro);
    }

    & .btn-outline-custom:hover {
        background-color: var(--azul-claro);
        color: white;
    }

    & .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    & .stat-card {
        border-left: 4px solid var(--azul-claro);
        transition: transform 0.3s ease;
    }

    & .stat-card:hover {
        transform: translateY(-5px);
    }

    & .nav-pills .nav-link.active {
        background-color: var(--azul-claro);
    }

    & .nav-pills .nav-link {
        color: var(--azul-escuro);
    }

    .chart-section {
        background: radial-gradient(transparent, #fff, #eee, #ddd, #ccc);

        & h1 {
            color: var(--azul-claro);
            font-weight: 700;
            font-size: 40px;
            line-height: 44px;
            margin-bottom: 30px;
        }

        & h2 {
            color: var(--azul-escuro);
            font-weight: 700;
            font-size: 40px;
            line-height: 44px;
            margin-bottom: 20px;
        }

        & p {
            color: var(--azul-escuro);
            font-weight: 400;
            font-size: 18px;
            line-height: 20px;
            margin-bottom: 30px;
        }

        & ul li {
            transition: transform 0.3s ease, filter 0.3s ease;
            transform: scale(1);
            filter: brightness(1);
            color: var(--azul-escuro);
            font-weight: 900;
            font-size: 16px;
            line-height: 18px;
            margin-bottom: 10px;
            position: relative;
            padding-left: 35px;

            & p {
                color: var(--azul-escuro);
                font-weight: 400;
                font-size: 14px;
                line-height: 16px;
            }

            & span {
                background-color: var(--azul-claro2);
                height: 30px;
                width: 30px;
                border-radius: 50%;
                position: absolute;
                top: -4px;
                left: 0;

                &.um {
                    background-color: var(--azul-claro);
                }

                &.dois {
                    background-color: var(--azul-claro2);
                }

                &.tres {
                    background-color: var(--azul-escuro);
                }

                &.quatro {
                    background-color: darkred;
                }

            }
        }
    }
}

#solucoes-ia {
    .bg-primary-custom {
        background-color: var(--azul-claro);
        background: linear-gradient(to right, var(--azul-escuro), var(--azul-claro));
    }

    .bg-light {
        background: linear-gradient(#ccc, #fff, transparent);
    }

    .bg-dark-custom {
        background-color: var(--azul-escuro);
    }

    .text-primary-custom {
        color: var(--azul-claro);
    }

    .btn-primary-custom {
        background-color: var(--azul-claro);
        border-color: var(--azul-claro);
        color: white;
    }

    .btn-primary-custom:hover {
        background-color: var(--azul-claro2);
        border-color: var(--azul-claro2);
    }

    .btn-outline-custom {
        border-color: var(--azul-claro);
        color: var(--azul-claro);
    }

    .btn-outline-custom:hover {
        background-color: var(--azul-claro);
        color: white;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1rem;
    }

    .benefit-item::before {
        content: '\f058';
        font-family: 'Font Awesome 5 Free';
        position: absolute;
        left: 0;
        color: var(--azul-claro);
        font-weight: bold;
    }

    .card-hover {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-pills .nav-link.active {
        background-color: var(--azul-claro);
    }

    .nav-pills .nav-link {
        color: var(--azul-escuro);
    }

    .timeline {
        position: relative;
        padding-left: 3rem;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--azul-claro2);
    }

    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -3rem;
        top: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: white;
        border: 5px solid var(--azul-claro2);
    }

}

.lgpd-bloco {
    background-color: #020204;
    background-repeat: no-repeat;
    background-position: center right;
    padding: 30px 0;

    & h2 {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & p {
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 30px;
    }

}

.zebrado {
    & .row {
        margin: 0;
    }

    & .row:nth-child(2n+1) {
        background: #f1f1f1;
    }

}

#politicas {
    & h1 {
        color: var(--azul-claro);
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & p {
        color: var(--azul-escuro);
        font-weight: 600;
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 30px;
    }

    & ul {
        list-style-type: disc;
        padding-left: 20px;

        & li {
            color: var(--azul-escuro);
            font-weight: 500;
            font-size: 16px;
            line-height: 18px;
            margin-bottom: 10px;
        }

    }
}

#motor {
    .hero-section {
        position: relative;
        background-color: var(--azul-escuro);
        color: white;
        padding: 0;
        overflow: hidden;
    }

    .hero-section img {
        width: 100%;
        height: auto;
        opacity: 0.4;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 80%;
    }

    .hero-text h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 2rem;
    }

    .btn-custom {
        background-color: var(--azul-claro);
        color: white;
        padding: 0.75rem 2.5rem;
        border-radius: 0.25rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-custom:hover {
        background-color: var(--azul-claro2);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .sorter-text-clearer {
        color: var(--azul-claro);
    }

    .feature-icon {
        font-size: 2rem;
        color: var(--azul-claro);
        margin-bottom: 1rem;
    }

    .data-item {
        margin-bottom: 1.5rem;
    }

    .data-item i {
        font-size: 1.5rem;
        color: var(--azul-claro);
        margin-right: 0.5rem;
    }

    .fundo-pq-usar {
        background-color: var(--azul-escuro);
        position: relative;
        z-index: 0;
        padding: 4rem 0 0;

        & p {
            color: white;
            font-weight: 600;
            font-size: 18px;
            line-height: 20px;
            margin-bottom: 1.5rem;
        }

        & li {
            color: white;
            font-weight: 500;
            font-size: 16px;
            line-height: 18px;
            margin-bottom: 0.5rem;
        }

        &::before {
            content: '';
            position: absolute;
            right: 10%;
            top: 0;
            z-index: -1;
            width: 300px;
            height: 100%;
            background: url("../img/icon-sorter-branco.png");
            background-size: auto;
            background-size: 100px;
            opacity: 0.1;
        }

    }

    .fundo-cinza {
        background-color: #f1f3f5;
        padding: 4rem 0;
    }

    .card-etapa {
        background-color: white;
        border-radius: 0.5rem;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 2rem;
    }

    .numero-etapa {
        background-color: var(--azul-claro);
        color: white;
        padding: 1rem;
        border-radius: 0.5rem;
        display: inline-block;
        margin-bottom: 1.5rem;
        text-align: center;
        min-width: 100px;
    }

    .numero-etapa h3 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .numero-etapa h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        font-weight: bold;
    }

    .fa-li {
        left: -2em;
        width: 2em;
        top: 0;
    }

    .fa-check-circle {
        color: var(--azul-claro2);
    }

    .badge-verde {
        background-color: #18B28F;
        color: white;
    }

    .badge-amarelo {
        background-color: #FFCC3F;
        color: var(--preto);
    }

    .badge-vermelho {
        background-color: #F05656;
        color: white;
    }

    .result_tab {
        max-width: 390px;
    }

}

#contato {
    background: radial-gradient(transparent, #fff, #DCDCDC, #ccc);

    & img {
        mix-blend-mode: multiply;
    }

    & h1 {
        color: var(--azul-claro);
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & p {
        color: var(--azul-claro2);
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 0;
    }

    & .statusMessage,
    .successmessage,
    .errormessage {
        display: none;
        width: 100%;
        height: auto;
        left: 0px;
        right: 0px;
        top: 0px;
        border: 1px solid #e1e1e1;
        margin: 20px auto 25px auto;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        color: #000;
    }

}

#contato-footer {
    background: radial-gradient(transparent, #fff, #DCDCDC, #ccc);

    & img {
        mix-blend-mode: multiply;
    }

    & h1 {
        margin-left: 10%;
        color: var(--azul-claro);
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & p {
        padding-left: 15px;
        max-width: 90%;
        color: var(--azul-claro2);
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 0;
    }

    & .statusMessage,
    .successmessage,
    .errormessage {
        display: none;
        width: 100%;
        height: auto;
        left: 0px;
        right: 0px;
        top: 0px;
        border: 1px solid #e1e1e1;
        margin: 20px auto 25px auto;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        color: #000;
    }

    & .loader-wrapper-formulario {
        bottom: 5%;
        left: 45%;
        background: transparent;
        position: relative !important;
        display: none;
        justify-content: center !important;
        align-items: center !important;
    }

    & .loader {
        width: 35px;
        height: 35px;
    }

}

.txt_box_default {
    width: 100%;
    padding: 10px 25px;
    border: 1px solid #707070;
    border-radius: 15px;
    background: #ffffff;
    font-weight: 600;
    color: var(--azul-escuro);
    transition: 0.5s ease-in;
}

.txt_box_default:focus {
    border: 1px solid var(--azul-escuro);
    outline: #707070;
    box-shadow: inset 0px 0px 0px 2px var(--azul-escuro);
}

.txt_box_default::placeholder {
    font-weight: 300;
    color: #707070;
}

.btn_form_default {
    width: 100%;
    height: 50px;
    padding: 4px 16px;
    margin: 24px 0;
    border: 1px solid #707070;
    border-radius: 30px;
    background: var(--azul-claro2);
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0px 3px 3px #707070;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn_form_default:hover,
.btn_form_default:active {
    background: #707070;
    box-shadow: 0px 0px 0px var(--azul-escuro);
}

.duvidas-frequentes {
    max-width: 490px;
    opacity: 0.5;
}

.container-formulario-erro {
    left: 65px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
}

.formulario-erro {
    display: flex;
    color: #f05655 !important;
    font-weight: 400;
    font-style: italic;
    gap: 5px;

    & a {
        min-width: 160px !important;
    }

}

.formulario-alerta {
    display: flex;
    color: #ffbb00 !important;
    font-weight: 400;
    font-style: italic;
    gap: 5px;

    & a {
        min-width: 160px !important;
    }

}

#lgpd-section {
    background: linear-gradient(#1a385a, var(--azul-escuro));

    & h2 {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    & h4 {
        color: #fff;
        font-weight: 600;
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    & p {
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 20px;
    }

    .main-timeline {
        padding: 20px 0;
        position: relative;
    }

    .main-timeline::before,
    .main-timeline::after {
        content: "";
        height: 40px;
        width: 40px;
        background-color: #e7e7e7;
        border-radius: 50%;
        border: 10px solid #303334;
        transform: translatex(-50%);
        position: absolute;
        left: 50%;
        top: -15px;
        z-index: 2;
    }

    .main-timeline::after {
        top: auto;
        bottom: 15px;
    }

    .main-timeline .timeline {
        padding: 35px 0;
        margin-top: -30px;
        position: relative;
        z-index: 1;
    }

    .main-timeline .timeline::before,
    .main-timeline .timeline::after {
        content: "";
        height: 100%;
        width: 50%;
        border-radius: 110px 0 0 110px;
        border: 15px solid var(--azul-claro2);
        border-right: none;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .main-timeline .timeline::after {
        height: calc(100% - 30px);
        width: calc(50% - 12px);
        border-color: var(--azul-claro);
        left: 12px;
        top: 15px;
    }

    .main-timeline .timeline-content {
        display: inline-block;

        && .content {
            transition: transform 0.3s ease, filter 0.3s ease;
            transform: scale(1);
            filter: brightness(1);
        }

    }

    .main-timeline .timeline-content content:hover {
        text-decoration: none;
    }

    .main-timeline .timeline-year {
        transition: transform 0.3s ease, filter 0.3s ease;
        color: var(--azul-claro2);
        font-size: 50px;
        font-weight: 600;
        display: inline-block;
        transform: translatey(-50%);
        position: absolute;
        top: 30%;
        left: 10%;
        transform: scale(1);
        filter: brightness(1);
    }

    .timeline-year:hover {
        transform: scale(1.08);
        filter: brightness(1.3);
    }

    .main-timeline .timeline-icon {
        transition: transform 0.3s ease, filter 0.3s ease;
        color: var(--azul-claro);
        font-size: 70px;
        display: inline-block;
        transform: translateY(-50%);
        position: absolute;
        left: 34%;
        top: 25%;
        transform: scale(1);
        filter: brightness(1);
    }

    .timeline-icon:hover {
        transform: scale(1.08);
        filter: brightness(1.3);
    }

    .main-timeline .content {
        color: #909090;
        width: 50%;
        padding: 20px;
        display: inline-block;
        float: right;
    }

    .main-timeline .title {
        color: var(--azul-claro2);
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 5px 0;
    }

    .main-timeline .description {
        font-size: 16px;
        margin: 0;
    }

    .main-timeline .timeline:nth-child(even)::before {
        left: auto;
        right: 0;
        border-radius: 0 110px 110px 0;
        border: 15px solid var(--azul-claro);
        border-left: none;
    }

    .main-timeline .timeline:nth-child(even)::after {
        left: auto;
        right: 12px;
        border-radius: 0 100px 100px 0;
        border: 15px solid var(--azul-claro);
        border-left: none;
    }

    .main-timeline .timeline:nth-child(even) .content {
        float: left;
    }

    .main-timeline .timeline:nth-child(even) .timeline-year {
        left: auto;
        right: 10%;
    }

    .main-timeline .timeline:nth-child(even) .timeline-icon {
        left: auto;
        right: 32%;
    }

    .main-timeline .timeline:nth-child(5n+1)::before {
        border-color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+1)::after {
        border-color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+1) .timeline-icon {
        color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+1) .timeline-year {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+1) .title {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+2)::before {
        border-color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+2)::after {
        border-color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+2) .timeline-icon {
        color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+2) .timeline-year {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+2) .title {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+3)::before {
        border-color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+3)::after {
        border-color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+3) .timeline-icon {
        color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+3) .timeline-year {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+3) .title {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+4)::before {
        border-color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+4)::after {
        border-color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+4) .timeline-icon {
        color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+4) .timeline-year {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+4) .title {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+5)::before {
        border-color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+5)::after {
        border-color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+5) .timeline-icon {
        color: var(--azul-claro);
    }

    .main-timeline .timeline:nth-child(5n+5) .timeline-year {
        color: var(--azul-claro2);
    }

    .main-timeline .timeline:nth-child(5n+5) .title {
        color: var(--azul-claro2);
    }

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

        /* BARRA DE NAVEGAÇÂO */



        /* FIM CSS BARRA DE NAVEGAÇÃO */

        .main-timeline .timeline:after {
            border-radius: 88px 0 0 88px;
        }

        .main-timeline .timeline:nth-child(even):after {
            border-radius: 0 88px 88px 0;
        }
    }

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

        /* BARRA DE NAVEGAÇÃO */



        .main-timeline .timeline {
            margin-top: -19px;
        }

        .main-timeline .timeline:before {
            border-radius: 50px 0 0 50px;
            border-width: 10px;
        }

        .main-timeline .timeline:after {
            height: calc(100% - 18px);
            width: calc(50% - 9px);
            border-radius: 43px 0 0 43px;
            border-width: 10px;
            top: 9px;
            left: 9px;
        }

        .main-timeline .timeline:nth-child(even):before {
            border-radius: 0 50px 50px 0;
            border-width: 10px;
        }

        .main-timeline .timeline:nth-child(even):after {
            height: calc(100% - 18px);
            width: calc(50% - 9px);
            border-radius: 0 43px 43px 0;
            border-width: 10px;
            top: 9px;
            right: 9px;
        }

        .main-timeline .timeline-icon {
            font-size: 60px;
        }

        .main-timeline .timeline-year {
            font-size: 40px;
        }
    }

    @media screen and (max-width:479px) {
        .main-timeline .timeline-icon {
            font-size: 50px;
            transform: translateY(0);
            top: 25%;
            left: 10%;
        }

        .main-timeline .timeline-year {
            font-size: 25px;
            transform: translateY(0);
            top: 65%;
            left: 9%;
        }

        .main-timeline .content {
            width: 68%;
            padding: 10px;
        }

        .main-timeline .title {
            font-size: 18px;
        }

        .main-timeline .timeline:nth-child(even) .timeline-icon {
            right: 10%;
        }

        .main-timeline .timeline:nth-child(even) .timeline-year {
            right: 9%;
        }
    }

}

@media (max-width: 575.98px) {
    #sobre {
        & h1 {
            color: var(--azul-claro);
            font-size: 30px;
            line-height: 30px;
            margin-bottom: 15px;
        }

        & p {
            color: var(--azul-escuro);
            font-weight: 500;
            font-size: 14px;
            line-height: 16px;
            margin-bottom: 20px;
        }

    }

    #processos {
        & h1 {
            color: #fff;
            font-weight: 700;
            font-size: 30px;
            line-height: 30px;
            margin-bottom: 15px;
        }

    }

    #analise {
        background-position: center 0%;

        & h1 {
            font-weight: 700;
            font-size: 30px;
            line-height: 30px;
            margin-bottom: 15px;
        }

        & p {
            font-weight: 600;
            font-size: 14px;
            line-height: 16px;
            margin-bottom: 20px;
        }

    }

    #antecipacao {
        & h1 {
            font-weight: 700;
            font-size: 30px;
            line-height: 30px;
            margin-bottom: 15px;
        }

        & p {
            font-weight: 600;
            font-size: 14px;
            line-height: 16px;
            margin-bottom: 20px;
        }

    }

    #faq {
        & h1 {
            font-size: 30px;
            line-height: 30px;
            margin-bottom: 15px;
        }

    }

    #chartdiv {
        width: 715px;
        height: 335px;
        right: 150px !important;
    }

    .net {
        width: 20%;
    }

    .net-3 {
        width: 20%;
    }

    #menu-before {
        position: absolute;
        top: 0;
        right: 45% !important;
        width: 450px;
        height: 80px;
    }

    .logo-garbit {
        transform: scale(0.7);
        left: 250px;
    }

    .menu-tel {
        flex-direction: column !important;
        gap: 15px !important;

        & a {
            margin: 0 !important;
        }

        & .login-button {
            height: 40px;
            margin: 0 !important;

            & .d-none {
                display: flex !important;
            }

        }
    }

    .thumb-slider {
        & .row {
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        & .col-3 {
            width: 220px !important;
            padding: 15px !important;
        }

        & p {
            font-size: 13px !important;
        }

    }

    .net {
        top: 285px;
        max-width: 350px !important;
    }

    .net-3 {
        max-width: 350px !important;
    }

    .prevBtn,
    .nextBtn {
        top: 170px;
    }

    .prevBtn {
        left: 10px;
    }

    .nextBtn {
        right: 10px;
    }

    #cards-processos {
        max-width: 350px !important;
    }

    .card-processo {
        width: 350px !important;
        height: 195px !important;
    }

    .processo_1 {
        transform: scale(0.4) !important;
    }

    .processo_1 h1 {
        width: 576px !important;
        left: -220px;
        bottom: 23px;
    }

    .processo_1 p {
        width: 576px !important;
        left: -220px;
        bottom: 23px;
    }

    .processo_1-list {
        top: -4px;
        left: 29px;

        & p {
            margin: 9px 0px 9px 0px !important;
        }

    }

    .processo_2 {
        transform: scale(0.4) !important;
    }

    .processo_2 h1 {
        width: 576px !important;
        left: -240px;
        top: 65px;
    }

    .processo_2 p {
        width: 576px !important;
        left: -240px;
        top: 48px;
    }

    .processo_2-list-1 {
        top: -4px !important;
        left: 11px !important;

        & p {
            font-size: 14px !important;
            margin: 4px 0px 4px 0px !important;
        }

    }

    .processo_2-list-2 {
        top: -185px;
        left: 241px !important;

        & p {
            font-size: 14px !important;
            margin: 4px 0px 4px 0px !important;
        }

    }

    .processo_3 {
        transform: scale(0.4) !important;
    }

    .processo_3 h1 {
        width: 576px !important;
        left: -250px;
        bottom: 50px;
    }

    .processo_3 p {
        width: 576px !important;
        left: -250px;
        bottom: 50px;
    }

    .processo_3-list {
        top: -3px;
        left: 33px;

        & p {
            margin: 12px 0px 12px 0px !important;
        }

    }

    .processo_4 {
        transform: scale(0.4) !important;
    }

    .processo_4 h1 {
        width: 576px !important;
        left: -250px;
        top: 30px;
    }

    .processo_4 p {
        width: 576px !important;
        left: -250px;
        top: 3px;
    }

    .processo_4-list-1 {
        top: -13px !important;
        left: 21px !important;

        & p {
            font-size: 14px !important;
            margin: 4px 0px 4px 0px !important;
        }

    }

    .processo_4-list-2 {
        top: -166px;
        left: 252px !important;

        & p {
            font-size: 14px !important;
            margin: 4px 0px 4px 0px !important;
        }

    }

    .container-card-decisao {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-decisao {
        transform: scale(0.9);
    }

    .net-solucoes {
        left: 30%;
    }

    .navbar-toggler {
        position: relative;
        left: 50%;
    }

    .navbar-toggler:hover {
        z-index: 1000;
    }

    #navbarTarget {
        position: relative;
        left: 265px;
    }

    #logo-footer {
        padding-left: 0px;
        padding-right: 25px;

        & img {
            transform: scale(0.7);
        }

    }

    .endereco {
        text-align: center;
    }

    footer {
        & .list-unstyled {
            position: relative;
            left: 20%;
        }

    }

    & #contato-footer {
        & h1 {
            margin: 0px 0px 10px;
            display: flex;
            justify-content: center;
            font-size: 35px;
        }

        & p {
            max-width: 100% !important;
            padding-left: 25px !important;
        }

        & #mensagem-formulario {
            width: 100%;
        }

    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 1.0rem !important;
    }

    .hero-text {
        width: 90% !important;
    }

    .duvidas-frequentes {
        position: absolute;
        right: 110px;
        max-width: 450px;
        opacity: 0.1;
        z-index: 0;
    }

    #chartdiv {
        width: 675px;
        height: 335px;
    }

    & #contato-footer {
        & p {
            max-width: 100% !important;
            padding-left: 25px !important;
        }

        & #mensagem-formulario {
            width: 100%;
        }

    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #menu {
        & .col-12 {
            position: relative !important;
            left: 260px !important;
            top: 10px;
        }

    }

    .banner-principal {
        & .thumb-slider {
            & .swiper-slide {
                & p {
                    font-size: 15px;
                    line-height: 16px;
                }

            }
        }

        & .swiper-wrapper {
            transform: scale(0.9);
        }

    }

    #analise {
        background-position: center 0%;
    }

    #chartdiv {
        width: 715px;
        height: 335px;
    }

    .prevBtn,
    .nextBtn {
        top: 230px;
    }

    .prevBtn {
        left: 10px;
    }

    .nextBtn {
        right: 10px;
    }

    #cards-processos {
        max-width: 576px !important;
    }

    .card-processo {
        width: 576px !important;
        height: 325px !important;
    }

    .processo_1 {
        transform: scale(0.5) !important;
    }

    .processo_1 h1 {
        width: 576px !important;
        left: -220px;
        bottom: 23px;
    }

    .processo_1 p {
        left: -220px;
        bottom: 23px;
    }

    .processo_1-list {
        top: 10px;
        left: 33px;

        & p {
            margin: 20px 0px 20px 0px !important;
        }

    }

    .processo_2 {
        transform: scale(0.5) !important;
    }

    .processo_2 h1 {
        width: 576px !important;
        left: -250px;
        top: 93px;
    }

    .processo_2 p {
        left: -250px;
        top: 83px;
    }

    .processo_2-list-1 {
        top: -2px !important;
        left: 23px !important;

        & p {
            margin: 7px 0px 7px 0px !important;
        }

    }

    .processo_2-list-2 {
        top: -237px;
        left: 325px !important;

        & p {
            margin: 7px 0px 7px 0px !important;
        }

    }

    .processo_3 {
        transform: scale(0.5) !important;
    }

    .processo_3 h1 {
        width: 576px !important;
        left: -250px;
        bottom: 65px;
    }

    .processo_3 p {
        left: -250px;
        bottom: 65px;
    }

    .processo_3-list {
        top: 17px;
        left: 33px;

        & p {
            margin: 23px 0px 23px 0px !important;
        }

    }

    .processo_4 {
        transform: scale(0.5) !important;
    }

    .processo_4 h1 {
        width: 576px !important;
        left: -250px;
        top: 30px;
    }

    .processo_4 p {
        left: -250px;
        top: 20px;
    }

    .processo_4-list-1 {
        top: 1px !important;
        left: 21px !important;

        & p {
            margin: 7px 0px 7px 0px !important;
        }

    }

    .processo_4-list-2 {
        top: -203px;
        left: 325px !important;

        & p {
            margin: 7px 0px 7px 0px !important;
        }

    }

    .container-card-decisao {
        position: relative;
        display: flex;
        flex-direction: column;
        left: 75px;
    }

    .card-decisao {
        transform: scale(0.9);
    }

    #menu-before {
        position: fixed;
        top: 0;
        right: 60%;
        width: 450px;
        height: 80px;
    }

    .logo-garbit {
        transform: scale(0.8);
        left: 245px;
    }

    .net {
        width: 500px;
        height: 700px;
    }

    .net-3 {
        width: 450px;
        height: 900px;
    }

    .net-solucoes {
        left: 30%;
    }

    .navbar-toggler {
        position: relative !important;
        left: 50%;
    }

    #logo-footer {
        padding-left: 0px;
        padding-right: 25px;

        & img {
            transform: scale(0.7);
        }

    }

    .endereco {
        text-align: center;
    }

    footer {
        & .list-unstyled {
            position: relative;
            left: 25%;
        }

    }

    & #contato-footer {
        & h1 {
            padding-left: 5% !important;
        }

        & p {
            max-width: 95% !important;
            padding-left: 20px !important;
        }

        & #mensagem-formulario {
            width: 100%;
        }

    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .duvidas-frequentes {
        position: absolute;
        max-width: 450px;
        opacity: 0.5;
    }

    .duvidas-frequentes {
        position: absolute;
        right: 110px;
        max-width: 450px;
        opacity: 0.1;
        z-index: 0;
    }

    #chartdiv {
        width: 440px;
        height: 285px;
    }

    .net {
        width: 700px;
        height: 700px;
    }

    .net-3 {
        width: 800px;
        height: 1700px;
    }

    #menu-before {
        width: 560px;
        height: 70px;
    }

    .logo-garbit {
        position: relative !important;
        right: 255px !important;
    }

    .container-card-decisao {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .prevBtn,
    .nextBtn {
        top: 285px;
    }

    .prevBtn {
        left: 20px;
    }

    .nextBtn {
        right: 20px;
    }

    #cards-processos {
        max-width: 760px !important;
    }

    .card-processo {
        width: 760px !important;
        height: 425px !important;
    }

    .processo_1 {
        transform: scale(0.6) !important;
    }

    .processo_1 h1 {
        width: 768px !important;
        left: -185px;
        bottom: 65px;
    }

    .processo_1 p {
        left: -185px;
        bottom: 65px;
    }

    .processo_1-list {
        top: 63px;
        left: 43px;

        & p {
            margin: 24px 0px 25px 0px !important;
        }

    }

    .processo_2 {
        transform: scale(0.6) !important;
    }

    .processo_2 h1 {
        width: 768px !important;
        left: -200px;
        top: 60px;
    }

    .processo_2 p {
        left: -200px;
        top: 60px;
    }

    .processo_2-list-1 {
        top: 44px !important;
        left: 18px !important;

        & p {
            margin: 11px 0px 11px 0px !important;
        }

    }

    .processo_2-list-2 {
        top: -225px;
        left: 353px !important;

        & p {
            margin: 11px 0px 11px 0px !important;
        }

    }

    .processo_3 {
        transform: scale(0.6) !important;
    }

    .processo_3 h1 {
        width: 768px !important;
        left: -210px;
        bottom: 75px;
    }

    .processo_3 p {
        left: -210px;
        bottom: 75px;
    }

    .processo_3-list {
        top: 28px;
        left: 35px;

        & p {
            margin: 28px 0px 28px 0px !important;
        }

    }

    .processo_4 {
        transform: scale(0.6) !important;
    }

    .processo_4 h1 {
        width: 768px !important;
        left: -210px;
        top: 10px;
    }

    .processo_4 p {
        left: -210px;
        top: 5px;
    }

    .processo_4-list-1 {
        top: 31px !important;
        left: 25px !important;

        & p {
            margin: 11px 0px 11px 0px !important;
        }

    }

    .processo_4-list-2 {
        top: -201px;
        left: 360px !important;

        & p {
            margin: 11px 0px 11px 0px !important;
        }

    }

    & #contato-footer {
        & h1 {
            padding-left: 15% !important;
        }

        & p {
            max-width: 95% !important;
            padding-left: 80px !important;
        }

        & #mensagem-formulario {
            width: 100%;
        }

    }
}

@media (min-width: 768px) {
    & .nav-item {
        display: flex;
        align-items: center;
    }

    .banner-principal {
        & .thumb-slider {
            & .col-3 {
                & p {
                    font-size: 16px;
                    line-height: 17px;
                }

            }
        }
    }

    #servicos {
        & .content {
            .benefits {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

                & .benefit {
                    & p {
                        font-size: 14px;
                    }

                }
            }
        }
    }

    #navbarTarget {
        position: relative;
        left: 165px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 70%;
    }

    .logo-garbit {
        transform: scale(0.75);
        left: 235px;
    }

    .net-3 {
        width: 400px;
        height: 1300px;
    }

    .net-solucoes {
        left: 30%;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #chartdiv {
        width: 515px;
        height: 325px;
    }

    .prevBtn,
    .nextBtn {
        cursor: pointer;
        top: 350px;
    }

    #cards-processos {
        max-width: 992px !important;
    }

    .card-processo {
        width: 985px !important;
        height: 555px !important;
    }

    .processo_1 {
        transform: scale(0.7) !important;
    }

    .processo_1 h1 {
        width: 992px !important;
        left: -125px;
        bottom: 55px;
    }

    .processo_1 p {
        left: -125px;
        bottom: 55px;
    }

    .processo_1-list {
        top: 59px;
        left: 45px;

        & p {
            margin: 29px 0px 29px 0px !important;
        }

    }

    .processo_2 {
        transform: scale(0.7) !important;
    }

    .processo_2 h1 {
        width: 992px !important;
        left: -160px;
        bottom: 55px;
    }

    .processo_2 p {
        left: -160px;
        bottom: 55px;
    }

    .processo_2-list-1 {
        top: 59px !important;
        left: 30px !important;

        & p {
            margin: 15px 0px 15px 0px !important;
        }

    }

    .processo_2-list-2 {
        top: -241px;
        left: 403px !important;

        & p {
            margin: 15px 0px 15px 0px !important;
        }

    }

    .processo_3 {
        transform: scale(0.7) !important;
    }

    .processo_3 h1 {
        width: 992px !important;
        left: -160px;
        bottom: 75px;
    }

    .processo_3 p {
        left: -160px;
        bottom: 75px;
    }

    .processo_3-list {
        top: 31px;
        left: 42px;

        & p {
            margin: 35px 0px 35px 0px !important;
        }

    }

    .processo_4 {
        transform: scale(0.7) !important;
    }

    .processo_4 h1 {
        width: 992px !important;
        left: -160px;
        top: 10px;
    }

    .processo_4 p {
        left: -160px;
        top: 5px;
    }

    .processo_4-list-1 {
        top: 45px !important;
        left: 30px !important;

        & p {
            margin: 15px 0px 15px 0px !important;
        }

    }

    .processo_4-list-2 {
        top: -215px;
        left: 403px !important;

        & p {
            margin: 15px 0px 15px 0px !important;
        }

    }

    #navbarTarget {
        position: relative;
        transform: scale(0.8);
        left: 165px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.7);
        left: 235px;
    }

    .net {
        width: 400px;
        height: 600px;
    }

    .net-3 {
        width: 800px;
        height: 900px;
    }

    .net-solucoes {
        left: 30%;
    }

    .container-card-decisao {
        align-items: center;
    }

    .result_tab {
        font-size: 1.3em;
    }

    .duvidas-frequentes {
        max-width: 380px;
    }

}

@media (min-width: 992px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 1200px) {
    .idiomas {
        padding: 0 21px;
    }

    #comercio-banner {
        & .content {
            background-color: unset;
        }

    }

    .lgpd-bloco {
        background-image: url("../img/lgpd.jpg");
    }

    #servicos {
        & .content {
            .benefits {
                grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

                & .benefit {
                    & p {
                        font-size: 16px;
                        line-height: 18px;
                    }

                }
            }
        }
    }
}

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

    .prevBtn,
    .nextBtn {
        cursor: pointer;
        top: 415px;
    }

    #cards-processos {
        max-width: 1100px !important;
    }

    .card-processo {
        width: 1100px !important;
        height: 620px !important;
    }

    .processo_1 {
        transform: scale(0.9) !important;
    }

    .processo_1 h1 {
        width: 1100px !important;
        left: 8px;
        bottom: 34px;
    }

    .processo_1 p {
        left: 8px;
        bottom: 34px;
    }

    .processo_1-list {
        top: 28px;
        left: 43px;

        & p {
            margin: 22px 0px 22px 0px !important;
        }

    }

    .processo_2 {
        transform: scale(0.9) !important;
    }

    .processo_2 h1 {
        width: 1100px !important;
        left: -15px;
        top: 60px;
    }

    .processo_2 p {
        left: -15px;
        top: 60px;
    }

    .processo_2-list-1 {
        top: 33px !important;
        left: 22px !important;

        & p {
            margin: 9px 0px 9px 0px !important;
        }

    }

    .processo_2-list-2 {
        top: -219px;
        left: 344px !important;

        & p {
            margin: 9px 0px 9px 0px !important;
        }

    }

    .processo_3 {
        transform: scale(0.9) !important;
    }

    .processo_3 h1 {
        width: 1100px !important;
        left: -15px;
        top: -80px;
    }

    .processo_3 p {
        left: -15px;
        top: -80px;
    }

    .processo_3-list {
        top: 31px;
        left: 33px;

        & p {
            margin: 27px 0px 27px 0px !important;
        }

    }

    .processo_4 {
        transform: scale(0.9) !important;
    }

    .processo_4 h1 {
        width: 1100px !important;
        left: -20px;
        top: 27px;
    }

    .processo_4 p {
        left: -20px;
        top: 10px;
    }

    .processo_4-list-1 {
        top: 19px !important;
        left: 27px !important;

        & p {
            margin: 9px 0px 9px 0px !important;
        }

    }

    .processo_4-list-2 {
        top: -199px;
        left: 346px !important;

        & p {
            margin: 9px 0px 9px 0px !important;
        }

    }
}

@media (min-width: 1800px) {
    #navbarTarget {
        position: relative;
        left: 120px;
    }

    #menu-before {
        position: absolute;
        width: 500px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(1);
        left: 80px;
    }

    .net-3 {
        width: 1200px;
        height: 2000px;
    }

    .prevBtn,
    .nextBtn {
        top: 420px;
    }

    .prevBtn {
        left: 40px;
    }

    .nextBtn {
        right: 40px;
    }
}

@media (min-width: 1700px) and (max-width: 1799px) {

    #navbarTarget {
        position: relative;
        left: 120px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.9);
        left: 180px;
    }

    .net-3 {
        width: 1200px;
        height: 2000px;
    }

    .prevBtn,
    .nextBtn {
        top: 420px;
    }

    .prevBtn {
        left: 30px;
    }

    .nextBtn {
        right: 30px;
    }
}

@media (min-width: 1600px) and (max-width: 1699px) {

    #navbarTarget {
        position: relative;
        left: 120px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.9);
        left: 200px;
    }

    .net-3 {
        width: 1200px;
        height: 2000px;
    }

    .prevBtn,
    .nextBtn {
        top: 420px;
    }

    .prevBtn {
        left: 30px;
    }

    .nextBtn {
        right: 30px;
    }

    #cards-processos {
        max-width: 1335px !important;
    }

    .card-processo {
        width: 1335px !important;
        height: 750px !important;
    }

    .processo_1 {
        left: -15px;
        top: 32px;

        & .processo_1-list {
            top: 27px;
        }

        & .processo_1-list p {
            margin: 25px 0px 25px 0px !important;
        }

    }

    .processo_2 {
        left: 17px;

        & .processo_2-list-1 {
            top: 47px !important;
            left: 23px !important;
        }

        & .processo_2-list-2 {
            top: -238px !important;
            left: 373px !important;
        }

        & .processo_2-list-1 p {
            margin: 13px 0px 13px 0px !important;
        }

        & .processo_2-list-2 p {
            margin: 13px 0px 13px 0px !important;
        }

    }

    .processo_3 {
        left: -11px;
        top: 27px;

        & .processo_3-list {
            top: 42px !important;
            left: 42px !important;
        }

        & .processo_3-list p {
            margin: 32px 0px 32px 0px !important;
        }

    }

    .processo_4 {
        left: -13px;
        top: -19px;

        & .processo_4-list-1 {
            top: 28px !important;
        }

        & .processo_4-list-2 {
            top: -211px !important;
            left: 376px !important;
        }

        & .processo_4-list-1 p {
            margin: 12px 0px 12px 0px !important;
        }

        & .processo_4-list-2 p {
            margin: 12px 0px 12px 0px !important;
        }

    }
}

@media (min-width: 1500px) and (max-width: 1599px) {

    #navbarTarget {
        position: relative;
        transform: scale(0.9);
        left: 120px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.8);
        left: 200px;
    }

    .net-3 {
        width: 1200px;
        height: 2000px;
    }

    .net-solucoes {
        left: 30%;
    }

    .prevBtn,
    .nextBtn {
        top: 400px;
    }

    .prevBtn {
        left: 30px;
    }

    .nextBtn {
        right: 30px;
    }
}

@media (min-width: 1525px) and (max-width: 1598px) {

    .prevBtn,
    .nextBtn {
        cursor: pointer;
        top: 425px;
    }

    #cards-processos {
        max-width: 1210px !important;
    }

    .card-processo {
        width: 1210px !important;
        height: 680px !important;
    }

    .processo_1 {
        left: -30px;
        top: 26px;

        & .processo_1-list {
            top: 25px;
        }

        & .processo_1-list p {
            margin: 21px 0px 21px 0px !important;
        }

    }

    .processo_2 {
        left: 7px;

        & .processo_2-list-1 {
            top: 25px !important;
            left: 25px !important;
        }

        & .processo_2-list-2 {
            top: -226px !important;
            left: 341px !important;
        }

        & .processo_2-list-1 p {
            margin: 8px 0px 9px 0px !important;
        }

        & .processo_2-list-2 p {
            margin: 8px 0px 9px 0px !important;
        }

    }

    .processo_3 {
        left: -20px;
        top: -2px;

        & h1 {
            top: -90px;
        }

        & p {
            top: -90px;
        }

        & .processo_3-list p {
            margin: 25px 0px 25px 0px !important;
        }

        & .processo_3-list {
            top: 43px;
        }

    }

    .processo_4 {
        top: -17px;
        left: -22px;

        & h1 {
            top: 45px
        }

        & .processo_4-list-1 {
            top: 16px !important;
        }

        & .processo_4-list-2 {
            top: -201px !important;
            left: 343px !important;
        }

        & .processo_4-list-1 p {
            margin: 8px 0px 9px 0px !important;
        }

        & .processo_4-list-2 p {
            margin: 8px 0px 9px 0px !important;
        }

    }
}

@media (min-width: 1400px) and (max-width: 1499px) {

    #navbarTarget {
        position: relative;
        transform: scale(0.9);
        left: 140px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.8);
        left: 230px;
    }

    .net-3 {
        width: 1200px;
        height: 2000px;
    }

    .net-solucoes {
        left: 30%;
    }

    .prevBtn,
    .nextBtn {
        top: 400px;
    }

    .prevBtn {
        left: 20px;
    }

    .nextBtn {
        right: 20px;
    }
}

@media (min-width: 1300px) and (max-width: 1399px) {
    #navbarTarget {
        position: relative;
        transform: scale(0.9);
        left: 120px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.8);
        left: 200px;
    }

    .net-3 {
        width: 1200px;
        height: 2000px;
    }

    .net-solucoes {
        left: 30%;
    }

    .prevBtn,
    .nextBtn {
        top: 385px;
    }

    .prevBtn {
        left: 10px;
    }

    .nextBtn {
        right: 10px;
    }

    #contato-footer {
        & h1 {
            margin-left: 5% !important;
        }

    }
}

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

    #navbarTarget {
        position: relative;
        transform: scale(0.8);
        left: 120px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.8);
        left: 240px;
    }

    .net {
        width: 800px;
        height: 1000px;
    }

    .net-3 {
        width: 800px;
        height: 1700px;
    }

    .net-solucoes {
        left: 30%;
    }

    .card-decisao {
        transform: scale(0.9);
    }

    .prevBtn,
    .nextBtn {
        top: 350px;
    }

    .prevBtn {
        left: 8px;
    }

    .nextBtn {
        right: 8px;
    }

    #contato-footer {
        & h1 {
            margin-left: 5% !important;
        }

    }
}

@media (min-width: 1000px) and (max-width: 1199px) {

    #navbarTarget {
        position: relative;
        transform: scale(0.8);
        left: 150px;
    }

    #menu-before {
        position: absolute;
        width: 360px;
        height: 70px;
        right: 80%;
    }

    .logo-garbit {
        transform: scale(0.75);
        left: 200px;
    }

    .net {
        width: 800px;
        height: 1000px;
    }

    .net-3 {
        width: 900px;
        height: 1700px;
    }

    .card-decisao {
        transform: scale(0.8);
    }

    .net-solucoes {
        left: 30%;
    }

    #contato-footer {
        & h1 {
            margin-left: 0% !important;
        }

    }
}
