﻿html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Ubuntu", sans-serif !important;
}

.whole-content {
    margin-top: 70px;
}

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
    font-weight: 900;
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

/* Defyning Colors */

:root {
    --light-green: #00c853;
    --lighter-green: #8fdf9e;
    --dark-green: #006a00;
    --dark-blue: #014898;
    --white: #fff;
    --linear-gradient: radial-gradient(var(--light-green), var(--dark-green));
}

.blue-colored {
    color: var(--dark-blue);
}

/* 
    ----- Styles that are being used for the hole content -----
*/

.padding-right-50 {
    padding-right: 50px;
}

.clear {
    clear: both;
}


/* Spaces */

.space-of-10 {
    height: 10px;
    width: 100%;
}

.space-of-20 {
    height: 20px;
    width: 100%;
}

.space-of-30 {
    height: 30px;
    width: 100%;
}

.space-of-50 {
    height: 50px;
    width: 100%;
}

.space-of-100 {
    height: 100px;
    width: 100%;
}

.space-of-150 {
    height: 150px;
    width: 100%;
}

/* Mobile Spacing */

@media (max-width: 1024px) {
    .space-of-100 {
        height: 50px;
    }

    .space-of-150 {
        height: 100px;
    }

    .padding-right-50 {
        padding-right: 1em;
    }
}

/* Footer */

.signature {
    padding: 20px;
}

    .signature p {
        vertical-align: middle;
        text-align: center;
        color: #666;
        font-size: 14px;
    }

        .signature p img {
            height: 30px;
            padding-left: 20px;
        }

/* NavBar */

.navbar {
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
    height: 70px !important;
    background: var(--dark-blue);
}

.navbar-nav {
    grid-column-gap: 20px;
}

.bg-light {
    background: var(--white) !important;
}

.mb-3 {
    margin-bottom: 0px !important;
}

.navbtn {
    padding: 10px 20px 10px 20px;
    height: 100%;
    display: inline-block;
    border-radius: 30px;
    color: var(--white);
    background: var(--light-green);
    font-weight: 900;
}

    .navbtn:hover {
        color: var(--white);
        background: var(--dark-green);
    }

.nav-link {
    font-size: 12px;
    font-weight: 900;
    color: var(--dark-blue) !important;
}

    .nav-link:hover {
        color: var(--light-green) !important;
    }

.nav-btn {
    font-size: 28px;
    font-weight: 900;
    border-radius: 50px;
    vertical-align: middle;
    padding: 0px 20px 0px 20px;
    background: var(--light-green);
    color: var(--white) !important;
}

    .nav-btn:hover {
        background: var(--dark-green);
        color: var(--white) !important;
    }

.logo-top {
    text-align: left;
}

.email-on-header {
    line-height: 45px;
    vertical-align: middle;
    color: #fff;
}

    .email-on-header:hover {
        text-decoration: underline !important;
        color: #fff;
    }

/* CTA */
.cta {
    font-size: 28px;
    font-weight: 900;
    display: inline-block;
    border-radius: 50px;
    vertical-align: middle;
    padding: 15px 50px 15px 50px;
}

.cta-full-width {
    width: 100%;
}

.cta-white {
    background: var(--white);
    color: var(--light-green);
    border-bottom: 5px solid var(--dark-green);
}

    .cta-white:hover {
        color: var(--light-green);
        margin-top: 2px;
        border-bottom: 3px solid var(--dark-green);
        transition: all 0.1s ease-in;
    }

.cta-green {
    background: var(--light-green);
    color: var(--white);
    border-bottom: 5px solid var(--dark-green);
}

    .cta-green:hover {
        color: var(--white);
        margin-top: 2px;
        border-bottom: 3px solid var(--dark-green);
        transition: all 0.1s ease-in;
    }


@media only screen and (max-width: 1023px) {
    .cta {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
}

/* Titles */

.title {
    padding: 30px;
    background: url(../images/left-top-green.png) no-repeat left top, url(../images/right-bottom-green.png) no-repeat right bottom;
}

    .title h2 {
        font-weight: 900;
        font-size: 35px;
        letter-spacing: -2.5px;
        line-height: 44px;
        color: var(--dark-blue);
    }

        .title h2 span {
            color: var(--light-green);
        }

.title-on-dark h2 {
    color: var(--white);
}

/* Content Paragraph */

.p-content {
    font-size: 18px;
    line-height: 28px;
}

    .p-content span {
        font-weight: 900;
    }

    .p-content .green-span {
        color: var(--light-green);
    }

/* Banner Top */

.centering-vertically {
    display: grid;
    align-content: center;
}

.header-top {
    height: auto;
    background: var(--dark-blue);
}

.header-top-inside {
    text-align: center;
    width: 90%;
}

    .header-top-inside h1 {
        font-weight: 900;
        color: var(--white);
        font-size: 35px;
        line-height: 44px;
        text-align: left;
        width: 70%;
    }

        .header-top-inside h1 span {
            color: var(--light-green);
        }

    .header-top-inside h3 {
        color: var(--white);
        font-size: 21px;
        font-weight: 400;
        line-height: 28px;
        text-align: left;
        margin-top: 20px;
    }

        .header-top-inside h3 span {
            color: var(--light-green);
            font-weight: 900;
        }

        .header-top-inside h3 .lighter {
            color: var(--lighter-green);
        }

.items-top {
    margin-top: 0px;
}

.divided-on-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    width: 100%;
}

.item-top {
    border-radius: 15px;
    height: auto;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-position: right 10px bottom 10px;
    background-size: 70px auto;
    transition: transform .4s; /* Animation */
}

    .item-top:hover {
        transform: scale(1.02);
    }



.item-top-green {
    background-color: var(--light-green);
}

    .item-top-green h3 {
        color: var(--white);
    }

    .item-top-green a {
        color: var(--white);
    }

.item-top-white {
    background-color: var(--white);
}

    .item-top-white h3 {
        color: var(--dark-blue);
    }

    .item-top-white a {
        color: var(--light-green);
    }

.item-top-cloud {
    background-color: #0074ff;
    padding: 20px;
    background: #0074ff url(../images/ecosystem-sige-cloud.png) no-repeat right 15px bottom;
    background-size: auto 75%;
    margin-top: 20px;
}

    .item-top-cloud p {
        font-size: 18px;
        color: var(--white);
        margin: 0px;
        padding: 0px;
        width: 50%;
    }

        .item-top-cloud p span {
            font-weight: 900;
            font-size: 18px;
        }

        .item-top-cloud p .all-in-one {
            color: #99ffc3;
        }

    .item-top-cloud h3 {
        color: var(--white);
        width: 50%;
    }

        .item-top-cloud h3 span {
            color: #99ffc3;
            font-size: 24px;
        }

    .item-top-cloud a {
        color: var(--white);
    }


.item-top a {
    height: 100%;
    width: 100%;
    display: block;
    padding: 10px;
    padding-bottom: 80px;
}

/* Icon - Background */

.icon-top-1 {
    background-image: url(../images/icon-top-1.svg);
}

.icon-top-2 {
    background-image: url(../images/icon-top-4.svg);
}

.icon-top-3 {
    background-image: url(../images/icon-top-3.svg);
}

.icon-top-4 {
    background-image: url(../images/icon-top-2.svg);
}

.item-top h3 {
    font-size: 24px;
    font-weight: 900;
}


.item-top span {
    font-size: 14px;
    font-weight: 900;
}

.line-green-banner {
    background: var(--light-green);
}

    .line-green-banner .col-12 {
        padding: 30px 50px 30px 50px;
        text-align: center;
    }

    .line-green-banner div a {
        color: var(--white);
        font-weight: 900;
        font-size: 18px;
    }

        .line-green-banner div a:hover {
            color: var(--dark-blue);
        }

@media only screen and (max-width: 1450px) {

    .items-top {
        margin-top: 0px;
    }

    .header-top-inside h1 {
        margin-top: 100px;
    }

    .page-home {
        background-size: 130% auto;
        position: relative;
    }
}


@media only screen and (max-width: 1023px) {

    .hide-on-mobile {
        display: none;
    }

    .header-top {
        background: var(--dark-blue);
        background-size: auto 100%;
        height: auto;
    }

    .header-top-inside {
        margin: 50px 0px 50px 0px;
        width: 100%;
    }

        .header-top-inside h1 {
            font-size: 35px;
            line-height: 44px;
            text-align: center !important;
            margin: auto;
            width: 90%;
        }

        .header-top-inside h3 {
            max-width: 100%;
            line-height: 24px;
            font-size: 18px;
            text-align: center;
        }

    .line-green-banner {
        padding: 25px 0px 25px 0px;
    }

        .line-green-banner .col-12 {
            padding: 25px 75px 25px 75px;
            text-align: center;
        }

    .item-top h3 {
        padding-right: 40%;
    }

    .item-top-cloud {
        padding-bottom: 220px;
        background: #0074ff url(../images/ecosystem-sige-cloud.png) no-repeat bottom center 10px;
        background-size: 100% auto !important;
    }

        .item-top-cloud p {
            width: 100%;
        }

        .item-top-cloud h3 {
            width: 100%;
        }


    .item-top {
        background-size: auto 60%;
    }

    .divided-on-3 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        width: 100%;
    }
}


/* Super Features */

.image-super-features img {
    width: 100%;
    height: auto;
    padding: 20px;
}

@media only screen and (max-width: 1023px) {

    .link-de-cobranca-image {
        margin-top: 50px;
    }
}

/* CTA Ted's Ilimitados */

.price-table-bank {
    background-image: linear-gradient(45deg, var(--dark-blue), var(--light-green) 150%);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
}

.price-table-inner {
    background: var(--white);
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    border-bottom: 10px solid var(--light-green);
}

.title-price-table {
    background: var(--light-green);
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    border-radius: 20px 20px 0px 0px;
}

    .title-price-table h3 {
        font-size: 21px;
        color: var(--white);
    }

.list-inside-price-table {
    padding: 0px;
    margin: 0px;
}

    .list-inside-price-table li {
        height: 60px;
        display: grid;
        grid-template-columns: 70% 30%;
        align-content: center;
    }

        .list-inside-price-table li .text-item {
            padding: 0px;
            margin: 0px;
        }

            .list-inside-price-table li .text-item p {
                padding: 0px;
                margin-bottom: 0px;
                padding-left: 30px;
                color: var(--dark-blue);
                font-size: 16px;
            }


        .list-inside-price-table li .price-item {
            text-align: right !important;
            padding: 0px;
        }

            .list-inside-price-table li .price-item p {
                padding: 0px;
                padding-right: 30px;
                margin-bottom: 0px;
                color: var(--light-green);
                font-size: 18px;
                font-weight: 700;
            }

.title-line-table {
    grid-template-columns: 1fr !important;
    background-color: var(--dark-blue);
    text-align: left;
}

    .title-line-table h3 {
        font-size: 18px;
        color: var(--white);
        line-height: 18px;
        padding-left: 30px;
    }

        .title-line-table h3 span {
            font-size: 14px;
            color: var(--white);
            font-weight: 300;
        }

.lighter-green-line {
    background: #e3f7e7;
}

.content-price-table h2 {
    font-size: 24px;
    color: var(--white);
    line-height: 35px;
    font-weight: 300;
}

    .content-price-table h2 b {
        font-weight: 700;
    }

.grey-back-light {
    background-color: #f9f9f9;
}

/* BPO Financeiro */
.title-bpo {
    margin: 0px 50px 0px 50px;
    padding: 50px;
    background: url(../images/left-top-green.png) no-repeat left top, url(../images/right-bottom-green.png) no-repeat right bottom;
}

    .title-bpo h3 {
        font-size: 28px;
        font-weight: 900;
        color: var(--light-green);
    }

    .title-bpo h2 {
        font-size: 55px;
        line-height: 65px;
        font-weight: 900;
        color: var(--dark-blue);
    }

        .title-bpo h2 span {
            color: var(--light-green);
        }

@media only screen and (max-width: 1023px) {

    .title-bpo {
        margin: 0px;
        padding: 50px 0px 50px 0px;
    }

    .list-inside-price-table li .text-item p {
        padding-left: 10px;
    }

    .list-inside-price-table li .price-item p {
        padding-right: 10px;
    }

    .title-line-table h3 {
        font-size: 16px;
        padding-left: 10px;
    }

        .title-line-table h3 span {
            font-size: 12px;
        }
}

/* Features BPO */

.features-bpo {
    background: url(../images/back-funcionalidades-sige-bank.jpg) no-repeat center top;
}

.feature-item {
    padding: 30px;
}

    .feature-item svg {
        height: 60px;
        width: auto;
        fill: var(--light-green);
    }


    .feature-item p {
        font-size: 18px;
        color: #fff;
        line-height: 24px;
        padding: 0px;
        margin: 0px;
    }

        .feature-item p span {
            font-weight: 900;
        }

        .feature-item p .green-span {
            color: var(--light-green);
        }

@media only screen and (max-width: 1023px) {

    .features-bpo {
        background: var(--dark-blue);
    }

    .feature-item {
        padding: 30px;
        text-align: center;
    }
}

/* Why SIGE Bank */

.why-sige-bank-top {
    background: url(../images/porque-sige-bank-il-top.png) no-repeat right center;
}

.why-sige-bank-bottom {
    background: url(../images/porque-sige-bank-il-bottom.png) no-repeat left center;
}

.why-sige-bank-center .title {
    text-align: center;
    font-size: 55px;
}

.why-sige-bank-bottom {
    text-align: right;
}

.title-why-sb h2 {
    font-weight: 900;
    font-size: 35px;
    color: var(--light-green);
}

@media only screen and (max-width: 1023px) {

    .why-sige-bank-top {
        background: none;
    }

    .why-sige-bank-bottom {
        background: none;
    }
}

/* Features Bank */

.features-bank {
    display: flex;
    background: var(--dark-blue);
}

.features-bank-back {
    background: url(../images/sige-bank-pequenos-negocios.jpg) no-repeat center top;
    flex: 1;
}

.features-bank-item {
    flex: 1;
}

.items-features-bank {
    max-width: 300px;
    margin-left: 150px;
}

    .items-features-bank svg {
        height: auto;
        width: 100%;
        fill: var(--light-green);
    }

    .items-features-bank p {
        font-size: 18px;
        color: var(--white);
    }

        .items-features-bank p span {
            font-weight: 900;
            color: var(--light-green);
        }


@media only screen and (max-width: 1023px) {

    .features-bank-back {
        display: none;
    }

    .items-features-bank {
        max-width: 100%;
        margin-left: 0px;
        text-align: center;
    }

        .items-features-bank svg {
            width: 70px;
            margin-bottom: 20px;
        }
}

/* Taxas nos cartões */

.title-cards {
    text-align: center;
    max-width: 450px;
    margin: auto;
}

.debito-taxas {
    background: var(--light-green);
    border-radius: 25px;
    height: 300px;
    width: 100%;
    position: relative;
}

    .debito-taxas p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 28px;
        font-weight: 900;
        color: var(--white);
    }

        .debito-taxas p span {
            color: var(--dark-blue);
        }

.credito-taxas {
    background: var(--dark-blue);
    border-radius: 25px;
    height: 300px;
    position: relative;
}

    .credito-taxas p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 28px;
        font-weight: 900;
        color: var(--white);
    }

        .credito-taxas p span {
            color: var(--light-green);
        }

.cards h3 {
    text-align: center;
    color: var(--dark-blue);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
}

.cards p {
    text-align: center;
}

    .cards p img {
        max-width: 90px;
        margin-right: 5px;
    }

.no-margin {
    margin-right: 0px !important;
}


@media only screen and (max-width: 1023px) {

    .debito-taxas {
        margin-bottom: 30px;
    }

    .cards p img {
        max-width: 45px;
        margin-bottom: 10px;
    }
}


/* Cta Bottom */

.cta-bottom {
    background: var(--dark-blue);
}

/* Formulário para conversão */

.form-conversion {
    max-width: 400px;
    margin: auto;
    background: var(--white);
    height: auto;
    padding: 50px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    height: 481px;
}

    .form-conversion h3 {
        font-size: 24px;
        font-weight: 900;
        color: var(--dark-blue);
        text-align: center;
    }

        .form-conversion h3 span {
            color: var(--light-green);
        }

    .form-conversion .form-item p {
        font-size: 16px;
        font-weight: 900;
        color: var(--dark-blue);
    }

    .form-conversion .form-item input {
        font-size: 16px;
        color: var(--dark-blue);
        height: 50px;
        width: 100%;
        padding-left: 10px;
        border-radius: 5px;
        border: 1px solid var(--dark-blue);
        background: #f5f5f5;
    }

.cta-form {
    border: 0px;
    width: 100%;
    border-bottom: 5px solid var(--dark-green);
    text-align: center;
    font-size: 21px;
    padding: 20px 0px 20px 0px;
}

.notice-form {
    padding-top: 10px;
    text-align: center;
    color: red;
    font-size: 14px;
    display: none;
}

.success {
    max-width: 400px;
    margin: auto;
    background: var(--white);
    height: auto;
    padding: 50px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    height: 481px;
    display: none;
}

    .success h3 {
        color: var(--light-green);
        font-size: 28px;
        font-weight: 900;
        text-align: center;
    }

    .success p {
        color: var(--dark-blue);
        font-size: 16px;
        text-align: center;
    }

        .success p span {
            font-weight: 900;
        }


.text-side-cta {
    margin-top: 100px;
}

/* Estilos Footer */


.footer-information {
    background: #f1f1f1;
}

.footer-information-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0px;
    padding: 0px;
}

    .footer-information-list li h3 {
        font-size: 21px;
        color: Var(--light-green);
        padding-bottom: 10px;
    }


    .footer-information-list li p {
        font-size: 16px;
        color: Var(--dark-blue);
    }

    .footer-information-list li a {
        font-size: 16px;
        color: Var(--dark-blue);
        text-decoration: underline !important;
    }

@media only screen and (max-width: 1023px) {
    .form-conversion {
        padding: 20px;
    }

    .text-side-cta {
        margin-top: 0px;
        margin-bottom: 50px;
    }

    .footer-information-list {
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }

}

.form-error {
    border-color: #f00 !important;
}

.row.resources {
    padding: 40px;
    background: url(../images/tl-arrow-bank.png) no-repeat left top, url(../images/tr-arrow-bank.png) no-repeat right top, url(../images/bl-arrow-bank.png) no-repeat left bottom, url(../images/br-arrow-bank.png) no-repeat right bottom;
    color: var(--white);
    row-gap: 40px;
}

    .row.resources h4 {
        font-size: 26px;
    }

    .row.resources .checkbox {
        padding-left: 30px;
        font-size: 18px;
        color: var(--white);
        position: relative;
        display: block;
    }

        .row.resources .checkbox::before {
            content: "";
            position: absolute;
            inset: 0;
            height: 100%;
            width: 100%;
            background: url(../images/checkbox-blue.png) no-repeat left 5px;
        }