﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
}

:root {
    --orange-1: #FF6E3C;
    --orange-2: #FFCBBA;
    --purple-1: #2F066F;
    --purple-2: #5813BA;
    --purple-3: #9F33DD;
    --green-1: #00C853;
    --green-2: #2BD142;
    --grey: #666666;
    --white: #fff;
    --container-width: 1200px;
}

body {
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

    a:visited {
        color: inherit;
    }

ul {
    list-style: none;
}

.size-12 {
    font-size: 12px;
}

.size-14 {
    font-size: 14px;
}

.size-24 {
    font-size: 24px;
}

.container-width {
    width: 1200px;
    margin: auto;
}

.divided-on-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.justify-end {
    display: grid;
    justify-content: end;
}

.center-align {
    display: grid;
    align-content: center;
}

.space-of-10 {
    height: 10px;
    width: 100%;
}

.space-of-20 {
    height: 20px;
    width: 100%;
}

.space-of-40 {
    height: 40px;
    width: 100%;
}

.space-of-50 {
    height: 50px;
    width: 100%;
}

.space-of-80 {
    height: 80px;
    width: 100%;
}

.justify-center {
    display: grid;
    justify-content: center;
}

@media (max-width: 1024px) {
    .container-width {
        width: 92vw;
    }

    .divided-on-2 {
        grid-template-columns: 1fr;
    }
}

/* Shared Elements */

.cta-on-hotpage {
    height: 60px;
    padding: 0px 40px;
    font-size: 21px;
    display: inline-block;
    line-height: 60px;
    vertical-align: middle;
    border-radius: 30px;
    font-weight: 300;
}

.purple-cta {
    background-color: var(--purple-2);
    color: var(--white) !important;
    fill: var(--white);
    transition: all 0.2s ease-in-out;
    border: 1px solid var(--purple-2);
}

    .purple-cta:hover {
        background-color: var(--purple-1);
    }

.green-cta {
    background-color: var(--green-1);
    color: var(--white);
    fill: var(--white);
    border-bottom: 5px solid white;
    transition: all 0.2s ease-in-out;
}

    .green-cta:hover {
        transform: translateY(3px);
        border-bottom: 2px solid white;
        background-color: var(--green-2);
    }

    .green-cta:visited {
        color: var(--white) !important;
    }

.cta-text-white {
    font-size: 18px !important;
    color: var(--purple-2) !important;
    font-weight: 900;
    padding-left: 20px;
}


/* Banner top na hotpage */
.bg-gradient-purple {
    background: var(--purple-1) url(../img/sige-lite-2022/arrow-bg-top.svg) no-repeat center top;
    background-size: 100% auto;
}

/* Header Navbar */

.cta-on-nav {
    font-weight: 800;
}

    .cta-on-nav svg {
        transition: all 0.2s ease-in-out;
    }


    .cta-on-nav:hover svg {
        transform: translateY(3px);
    }

.image-on-banner {
    width: 100%;
}

.limit-in-600 {
    display: grid;
    justify-content: end;
    align-content: center;
}

.limit-in-600 {
    display: grid;
    justify-content: end;
    align-content: center;
}

.inner-limit {
    max-width: 600px;
    padding-right: 150px;
}

    .inner-limit h1 {
        font-size: 44px;
        line-height: 55px;
        font-weight: 300;
        color: var(--orange-2);
    }

    .inner-limit h2 {
        font-size: 21px;
        font-weight: 300;
        color: var(--white);
        line-height: 35px;
    }

    .inner-limit p {
        font-size: 16px;
        color: var(--orange-1);
    }

.list-of-features-on-banner ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    padding: 80px 0px;
}

    .list-of-features-on-banner ul li {
        text-align: center;
    }

        .list-of-features-on-banner ul li h3 {
            font-size: 21px;
            font-weight: 500;
            margin-top: 10px;
            color: var(--white);
        }

/* Para cada segmento */

.section-segments {
    background-image: linear-gradient(to right, var(--purple-3) 55%, var(--orange-1) 45%);
}

    .section-segments .left-side {
        display: grid;
        align-content: center;
        padding-right: 100px;
    }

        .section-segments .left-side h2 {
            font-size: 35px;
            color: var(--white);
            font-weight: 300;
        }

    .section-segments .right-side ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 10px;
        margin: 50px 0px;
    }

        .section-segments .right-side ul li {
            background-color: var(--white);
            height: 150px;
            display: grid;
            justify-content: center;
            align-content: center;
            text-align: center;
        }

            .section-segments .right-side ul li h3 {
                text-align: center;
                color: var(--purple-2);
                font-size: 16px;
                margin-top: 10px;
            }

/* Kit of features */

.kit-of-features {
    background: url(../img/sige-lite-2022/hotpage/bg-list-of-features.html) no-repeat center center;
    background-size: 1380px auto;
}

    .kit-of-features ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2px;
    }

        .kit-of-features ul li {
            background: var(--white);
            padding: 40px;
        }

            .kit-of-features ul li .title-and-icon {
                display: grid;
                grid-auto-flow: column;
                justify-content: start;
                align-content: center;
                column-gap: 20px;
            }

                .kit-of-features ul li .title-and-icon h3 {
                    line-height: 40px;
                    vertical-align: middle;
                    color: var(--purple-2);
                    font-size: 21px !important;
                }

            .kit-of-features ul li p {
                font-size: 16px;
                font-weight: 300;
                color: var(--grey);
                line-height: 24px;
                margin-top: 20px;
            }

            .kit-of-features ul li a {
                font-size: 18px;
                font-weight: 500;
                color: var(--green-1);
            }

            .kit-of-features ul li:first-child {
                border-top-left-radius: 50px;
            }

            .kit-of-features ul li:nth-child(2) {
                border-top-right-radius: 50px;
            }

            .kit-of-features ul li:last-child {
                border-bottom-right-radius: 50px;
            }

            .kit-of-features ul li:nth-child(5) {
                border-bottom-left-radius: 50px;
            }

/* Integrations Section */

.section-integrations {
    background: #A1FFAE;
    padding: 80px 0px;
}

    .section-integrations h2 {
        font-size: 28px;
        color: var(--purple-2);
        line-height: 38px;
        font-weight: 300;
        padding-right: 80px;
    }

.feature-bottom-1 {
    height: 450px;
    border-radius: 20px;
}

    .feature-bottom-1 .img-on-feature {
        background: url(../img/sige-lite-2022/hotpage/frente-de-caixa-sige-lite.png) no-repeat center center;
        background-size: cover;
        border-radius: 20px;
    }

    .feature-bottom-1 .content-side {
        display: grid;
        align-content: center;
        padding-left: 50px;
    }

        .feature-bottom-1 .content-side h2 {
            font-size: 35px;
            font-weight: 300;
            color: var(--purple-2);
            margin-bottom: 40px;
        }

.feature-bottom-2 {
    height: 450px;
    border-radius: 20px;
}

    .feature-bottom-2 .img-on-feature {
        background: url(../img/sige-lite-2022/hotpage/loja-virtual-sige-lite.png) no-repeat center center;
        background-size: cover;
        border-radius: 20px;
    }

    .feature-bottom-2 .content-side {
        display: grid;
        align-content: center;
        padding-right: 50px;
    }

        .feature-bottom-2 .content-side h2 {
            font-size: 35px;
            font-weight: 300;
            color: var(--white);
            margin-bottom: 40px;
        }

        .feature-bottom-2 .content-side a {
            font-size: 18px;
            color: var(--new-green);
            font-weight: 900;
        }


.features-in-the-end {
    padding: 80px 0px;
    display: grid;
    row-gap: 80px;
}

.bg-features-end {
    background: var(--purple-1) url(../img/sige-lite-2022/bg-loja-online-lite.png) no-repeat center center;
    background-size: cover;
}

/* Footer */
.footer {
    background: var(--purple-1);
    display: grid;
    align-content: center;
    height: 60px;
}

    .footer p {
        text-align: center;
        color: var(--white);
        font-size: 16px;
        font-weight: 300;
    }

        .footer p a {
            color: var(--white) !important;
            font-weight: 700;
            text-decoration: underline;
        }

/* Responsividade */

.hide-on-mobile {
    display: initial;
}

.full-width {
    width: 100%;
}

@media (max-width: 1024px) {
    .hide-on-mobile {
        display: none;
    }

    .header-top {
        height: 90px;
    }

        .header-top .divided-on-2 {
            grid-template-columns: initial;
            grid-auto-flow: column;
            justify-content: space-between;
        }

        .header-top .justify-end ul li:first-child {
            display: none;
        }

    .limit-in-600 {
        width: 92vw;
        margin: auto;
        padding: 20px 0px;
        grid-row: 2;
    }

    .inner-limit {
        width: 100%;
        padding: 0px;
        text-align: center;
    }

    .banner-top .divided-on-2 {
        grid-auto-flow: dense;
    }

    .image-on-banner {
        width: 96vw;
        float: right;
    }

    .list-of-features-on-banner ul {
        grid-auto-flow: initial;
        grid-gap: 20px;
        grid-template-columns: 1fr 1fr;
        margin: 20px 0px;
        margin-bottom: 40px;
    }

    .section-segments {
        background-image: linear-gradient(to bottom, var(--purple-3) 35%, var(--orange-1) 65%);
        padding-top: 20px;
    }

        .section-segments .left-side {
            padding-right: 0px;
        }

        .section-segments .right-side ul {
            grid-template-columns: repeat(2, 1fr);
            margin: 20px 0px;
        }

    .kit-of-features {
        background: none;
        padding: 20px 0px;
    }

        .kit-of-features ul {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 2px;
        }

            .kit-of-features ul li {
                border-radius: 0px !important;
            }

    .section-integrations .divided-on-2 {
        row-gap: 40px;
    }

    .section-integrations h2 {
        padding-right: 0px;
    }

    .features-in-the-end {
        padding: 20px 0px;
        display: grid;
        row-gap: 20px;
    }

    .feature-bottom-1 {
        height: auto;
    }

        .feature-bottom-1 .img-on-feature {
            height: 240px;
        }

        .feature-bottom-1 .content-side {
            padding: 40px 15px;
            text-align: center;
        }

    .feature-bottom-2 {
        height: auto;
    }

        .feature-bottom-2 .img-on-feature {
            height: 240px;
            grid-row: 1;
        }

        .feature-bottom-2 .content-side {
            padding: 40px 15px;
            text-align: center;
        }
}


.navbar-lite-2022 {
    background: var(--purple-2) !important;
}

    .navbar-lite-2022 .nav-link {
        color: var(--white) !important;
    }

    .navbar-lite-2022 .link-premium-header {
        color: var(--orange-2) !important;
    }

.navbar {
    background: var(--purple-2) !important;
}

