/*
    Style Desktop
*/

body {
    background-color: #87C05A;
}


.display-mobile {
    display: none;
}

.display-tableta {
    display: none;
}

.display-pc {
    display: block;
}

*:focus {
    outline: none;
}


/*#region Form*/

input[type="text"],
input[type="password"], textarea {
    background-color: #FFF;
    line-height: 30px;
    border-radius: 15px;
    border: none;
    /*box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);*/
    padding: 0 15px;
    font-family: MuseoSans;
    font-size: 1em;
    border: 1px solid #dbdbdb;
}

input[type="text"],
input[type="password"] {
    height: 30px;
}

textarea {
    padding: 5px 15px;
    font-size: 16px;
}

label {
    display: block;
}

    label span {
        margin-right: 15px;
    }


.button,
input[type="button"],
input[type="submit"] {
    max-width: 250px;
    text-align: center;
    color: #6F6F6F;
    background-color: #E0E0E0;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    text-shadow: 0 1px 0 #E6E6E6;
    border: none;
    padding: 0 25px;
}

    .button:hover,
    input[type="button"]:hover,
    input[type="submit"]:hover {
        background-color: #D5D5D5;
    }

.editor-label {
    margin-bottom: 10px;
}

.editor-field {
    margin-bottom: 15px;
}

.editor-submit {
    margin-top: 25px;
}

/*#endregion*/

/*#region Header*/
/*------------------------------------------------------------Header---------------------------------*/

header {
    height: 50px;
    z-index: 10000;
    background-color: #FFF;
    position: fixed;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#header-space {
    width: 100%;
    height: 50px;
}

#title-cont {
    width: 115px;
    height: 100%;
    float: left;
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    #title-cont:hover {
        background-color: #FFF;
        -moz-transition: background 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
    }

#logo {
    width: 77px;
    height: 43px;
    /*background-image: url(/Images/logo.png);
    background-position: 0 0;*/
    margin: 0 auto;
    margin-top: 3px;
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    overflow: hidden;
}

#title-cont:hover #logo {
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    background-position: 0 0;
}

#title {
    height: 20px;
    line-height: 20px;
    width: 250px;
    float: left;
    margin-left: 5px;
    color: #444;
    font-size: 24px;
    padding-left: 15px;
    margin-top: 40px;
    font-weight: 300;
    display: none;
}


#nav-caption {
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 300;
    color: #FFFFFF;
    position: absolute;
    width: 150px;
    text-align: center;
    background: rgba(0, 0, 0, 0.54);
    top: 62px;
    border-radius: 15px;
    display: none;
    right: 78px;
}

nav {
    width: 310px;
    height: 100%;
    float: right;
}

    nav ul {
        list-style: none;
    }

        nav ul li {
            float: left;
            height: 50px;
        }

            nav ul li:hover {
                border-bottom: 2blockpx solid #FF6666;
            }

                nav ul li:hover a {
                }

            nav ul li a {
                display: block;
                height: 45px;
                padding: 0 15px;
                color: #fff;
            }

                nav ul li a span {
                    display: none;
                }

            nav ul li .nav-icon {
                background-image: url(/Images/nav-spritesheet.png);
                margin: 0 auto;
                margin-top: 9px;
            }

.nav-home {
    background-position: 0px 0;
    width: 32px;
    height: 32px;
}

nav ul li:hover .nav-home {
    background-position: 0px -64px;
}

.nav-quem-somos {
    background-position: -32px 0;
    width: 32px;
    height: 32px;
}

nav ul li:hover .nav-quem-somos {
    background-position: -32px -64px;
}

.nav-produtos {
    background-position: -64px 0;
    width: 32px;
    height: 32px;
}

nav ul li:hover .nav-produtos {
    background-position: -64px -64px;
}

.nav-servicos {
    background-position: -96px 0;
    width: 32px;
    height: 32px;
}

nav ul li:hover .nav-servicos {
    background-position: -96px -64px;
}

.nav-clientes {
    background-position: -128px 0;
    width: 32px;
    height: 32px;
}

nav ul li:hover .nav-clientes {
    background-position: -128px -64px;
}

.nav-contato {
    background-position: -160px 0;
    width: 32px;
    height: 32px;
}

nav ul li:hover .nav-contato {
    background-position: -160px -64px;
}



/*#endregion Header*/



/*#region Footer*/

footer {
    width: 100%;
    height: 260px;
    background-color: #505050;
    display: block;
    position: relative;
}

    footer .container {
        width: 960px;
        margin: 0 auto;
        position: relative;
    }

    footer .col3 {
        width: 33%;
        float: left;
        margin: 0;
        border-right: 1px dashed #474747;
        margin-top: 20px;
        height: 200px;
    }

    footer .last {
        border-right: none !important;
    }


    footer .col3 .title {
        margin-left: 15px;
        font-size: 16px;
        border-bottom: 1px solid #5A5A5A;
        box-shadow: 0 1px 0 #444444;
        width: 90%;
        color: #969696;
        margin-bottom: 15px;
        font-weight: 500;
        height: 30px;
        line-height: 30px;
        text-align: center;
    }

    footer ul {
        list-style: none;
        width: 100%;
    }

        footer ul li {
            padding: 0 15px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            color: #949494;
        }

            footer ul li a {
                color: #949494;
            }

                footer ul li a:hover {
                    color: #000;
                }

    footer .qrcode {
        width: 128px;
        height: 128px;
        background-image: url("../Images/qrcode.png");
        position: absolute;
        right: 25px;
        top: 58px;
        -moz-background-size: cover;
        -o-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }

#copyright {
    width: 100%;
    position: absolute;
    top: 230px;
    left: 0;
    text-align: center;
    font-size: 12px;
    color: #C9C9C9;
    background-color: #474747;
    height: 30px;
    line-height: 30px;
}

/*#endregion*/


#time-line {
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    border-left: 1px dashed #747474;
    margin-left: -1px;
    z-index: 1;
    display: none;
}


/*#region Welcome*/
/*------------------------------------------------------------Welcome---------------------------------*/

#welcome {
    overflow: hidden;
}

#welcome-text {
    display: none;
}

#qrcode {
        width: 128px;
        height: 128px;
        background-image: url("../Images/qrcode.png");
        position: absolute;
        right: 25px;
        top: 0;
        -moz-background-size: cover;
        -o-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }

#slider {
    width: 960px;
    margin: 0 auto;
    margin-top: 115px;
}

    #slider ul {
        list-style: none;
    }

        #slider ul li a {
            display: block;
            position: relative;
        }


        /*#slider ul li .left {
    position: absolute;
    left: 0;
    top: 0;
}

#slider ul li .center {
    position: absolute;
    left: 150px;
    top: 0;
}

#slider ul li .right {
    position: absolute;
    right: -72px;
    top: 60px;
} */



        #slider ul li .left {
            position: absolute;
            left: -1000px;
            top: 0;
        }

        #slider ul li .center {
            position: absolute;
            left: 150px;
            top: -1000px;
        }

        #slider ul li .right {
            position: absolute;
            right: -1000px;
            top: 90px;
        }

/*#region Top*/


#top {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    #top .image {
        width: 100%;
        height: 1600px;
        background-image: url(/Images/top-bg.png);
        -moz-background-size: cover;
        -o-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 0;
        display: none;
    }

    #top .title {
        font-size: 56px;
        width: 600px;
        left: 50%;
        margin-left: -300px;
        height: 56px;
        line-height: 48px;
        text-align: center;
        margin-top: 50px;
        position: absolute;
        color: #FFF;
    }


/*#region Keyframes*/


@-moz-keyframes arrowAnim {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0;
    }
}

@-webkit-keyframes arrowAnim {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0;
    }
}

@keyframes arrowAnim {
    0% {
        bottom: 5px;
    }

    50% {
        bottom: 15px;
    }

    100% {
        bottom: 5px;
    }
}


/*#endregion*/


.arrow {
    width: 85px;
    height: 85px;
    background-image: url(../Images/arrow.png);
    background-position: center;
    position: absolute;
    left: 50%;
    margin-left: -42.5px;
    -moz-animation: arrowAnim 0.7s infinite ease-in-out;
    -o-animation: arrowAnim 0.7s infinite ease-in-out;
    -webkit-animation: arrowAnim 0.7s infinite ease-in-out;
    animation: arrowAnim 0.7s infinite ease-in-out;
    z-index: 1000;
    bottom: 0;
}

#servicos-list {
    width: 960px;
    position: absolute;
    left: 50%;
    margin-left: -480px;
    top: 56%;
    margin-top: -172px;
}

    #servicos-list ul {
        list-style: none;
    }

        #servicos-list ul li {
            width: 162px;
            height: 162px;
            float: left;
            border-radius: 86px;
            margin: 10px;
            background-color: #1abc9c;
            -moz-transition: background 0.5s ease-in-out;
            -o-transition: background 0.5s ease-in-out;
            -webkit-transition: background 0.5s ease-in-out;
            transition: background 0.5s ease-in-out;
            background-size: 150%;
            background-position: center;
            border: 5px solid rgba(255, 255, 255, 0.28);
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
        }

            #servicos-list ul li:hover {
                background-color: #000000;
                -moz-transition: background 0.5s ease-in-out;
                -o-transition: background 0.5s ease-in-out;
                -webkit-transition: background 0.5s ease-in-out;
                transition: background 0.5s ease-in-out;
                background-size: 200%;
            }


            #servicos-list ul li a {
                width: 100%;
                height: 100%;
                line-height: 172px;
                text-align: center;
                color: #FFFFFF;
                display: block;
                position: relative;
                overflow: hidden;
                font-size: 24px;
                background-color: rgba(0, 0, 0, 0.4);
                border-radius: 86px;
                -moz-transition: background 0.5s ease-in-out;
                -o-transition: background 0.5s ease-in-out;
                -webkit-transition: background 0.5s ease-in-out;
                transition: background 0.5s ease-in-out;
            }

                #servicos-list ul li a:hover {
                    background-color: rgba(0, 0, 0, 0.0);
                    -moz-transition: background 0.5s ease-in-out;
                    -o-transition: background 0.5s ease-in-out;
                    -webkit-transition: background 0.5s ease-in-out;
                    transition: background 0.5s ease-in-out;
                }

                #servicos-list ul li a .caption {
                    width: 100%;
                    height: 40px;
                    line-height: 40px;
                    position: absolute;
                    top: 50%;
                    margin-top: -20px;
                    background-color: rgba(51, 51, 51, 0.32);
                }

            #servicos-list ul li.sprite-gestao {
                background-image: url("../Images/gestao-photo.jpg");
            }


            #servicos-list ul li.sprite-automacao {
                background-image: url("../Images/automacao-photo.jpg");
            }


            #servicos-list ul li.sprite-nfe {
                background-image: url("../Images/nfe-photo.jpg");
            }

            #servicos-list ul li.sprite-crm {
                background-image: url("../Images/crm-photo.jpg");
            }

            #servicos-list ul li.sprite-web {
                background-image: url("../Images/web-photo.jpg");
            }


/*#servicos-list ul li.sprite-servicos {
                background-image: url("../Images/servicos-photo.jpg");
            }*/


.block {
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    position: relative;
}

.block-title {
    width: 300px;
    font-size: 24px;
    color: #777;
    text-align: center;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    box-shadow: 0 3px 0 #bdc3c7;
    border-radius: 25px;
    margin: 0 auto;
    margin-bottom: 120px;
    margin-top: 50px;
}




.block-cont {
    width: 65%;
    background-color: #FFFFFF;
    margin: 0 auto;
    font-size: 16px;
    padding: 15px;
    min-height: 198px;
    color: #747474;
    max-width: 960px;
    box-shadow: 0 3px 0 #bdc3c7;
    border-radius: 5px;
}

    .block-cont .read-more {
        width: 160px;
        text-align: center;
        color: #E7E7E7;
        background-color: #646464;
        margin: 0 auto;
        margin-top: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
        cursor: pointer;
        display: block;
    }

        .block-cont .read-more:hover {
            background-color: #747474;
        }

    .block-cont .image {
        width: auto;
        height: 156px;
        float: left;
        margin: 0 10px 2px 0;
        margin-bottom: 15px;
    }

        .block-cont .image img {
            display: block;
            width: auto;
            height: 100%;
        }

    .block-cont h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #575757;
        font-weight: 100;
        text-align: center;
    }


.servico {
    color: #7A7A7A;
    padding-bottom: 100px;
    margin-top: -130px;
    padding-top: 120px;
}

    .servico .container {
        width: 80%;
        margin: 0 auto;
    }

    .servico .content-title {
        color: #E7E7E7;
        margin-top: 80px;
        font-size: 20px;
        margin-bottom: 0;
        height: 40px;
        line-height: 40px;
        text-align: center;
        padding: 0 15px;
        max-width: 200px;
        background-color: #444;
    }

    .servico .content {
        background-color: #FFF;
        padding: 15px;
        box-shadow: 0 3px 0 #bdc3c7;
        border-bottom-right-radius: 5px;
    }

        .servico .content .big {
            font-size: 48px;
            font-weight: 700;
        }

        .servico .content h2 {
            margin: 20px 0 30px 0;
            font-size: 24px;
            float: left;
            width: 100%;
        }

        .servico .content h3 {
            margin: 10px 0;
            font-size: 18px;
            float: left;
            width: 100%;
        }

        .servico .content p {
            margin-bottom: 5px;
        }

        .servico .content img {
            float: left;
            margin: 0 15px 5px 0;
        }


        .servico .content ul {
            margin-left: 30px;
            float: left;
        }

            .servico .content ul li {
                margin-bottom: 15px;
            }

        .servico .content .line {
            width: 100%;
            display: inline;
            float: left;
        }

        .servico .content .col2 {
            width: 49%;
            min-height: 230px;
            float: left;
            margin: 0 1%;
        }

        .servico .content .col3 {
            width: 31.33333333333%;
            min-height: 300px;
            float: left;
            margin: 0 1%;
        }

        .servico .content .clear {
            clear: both;
        }

    .servico .back-a {
        color: #FFF;
        margin-top: 18px;
        display: block;
        background-color: #2E2E2E;
        width: 80px;
        text-align: center;
        height: 30px;
        line-height: 30px;
        border-radius: 15px;
    }

        .servico .back-a:hover {
            background-color: #222;
        }


/*#endregion Top*/

/*#region Automação*/
/*------------------------------------------------------------Automação---------------------------------*/

#automacao.servico {
    background-color: #6B4175;
}

/*#endregion Automação*/


/*#region NF-e*/
/*------------------------------------------------------------NFe---------------------------------*/

#nfe.servico {
    background-color: #47B49A;
}

/*#endregion NF-e*/

/*#region CRM*/
/*------------------------------------------------------------CRM---------------------------------*/

#crm.servico {
    background-color: #47B46E;
}

/*#endregion CRM*/

/*#region Web*/
/*------------------------------------------------------------Web---------------------------------*/

#web.servico {
    background-color: #df8282;
}

/*#endregion Web*/

/*#region Gestao*/
/*------------------------------------------------------------Gestão---------------------------------*/

#gestao.servico {
    background-color: #64aabc;
}

/*#endregion Gestao*/

/*#region Servicos*/
/*------------------------------------------------------------Serviços---------------------------------*/

#servicos {
}

/*#endregion Serviços*/


/*#region QuemSomos*/
/*------------------------------------------------------------Quem Somos---------------------------------*/

#quem-somos {
    width: 100%;
    height: 100%;
    color: #525252;
    background-color: #47B49A;
    font-weight: 300;
    font-size: 18px;
    background-image: url("../Images/quem-somos-bg.png");
    background-position: bottom;
    margin-top: -50px;
}

    #quem-somos .container {
        width: 960px;
        margin: 0 auto;
        padding: 15px;
        padding-top: 150px;
    }

    #quem-somos .content-title {
        margin-bottom: 20px;
    }

    #quem-somos img {
        margin-bottom: 10px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.35);
    }

    #quem-somos .content p {
        background-color: #FFF;
        padding: 15px;
        border-radius: 5px;
    }



/*#endregion QuemSomos*/

/*#region Contato*/
/*------------------------------------------------------------Contato---------------------------------*/

#contato {
    width: 100%;
    height: 100%;
    color: #525252;
    background-color: #47B49A;
    font-weight: 300;
    font-size: 18px;
    background-image: url("../Images/quem-somos-bg.png");
    background-position: bottom;
    margin-top: -50px;
}

    #contato .container {
        width: 960px;
        margin: 0 auto;
        padding: 15px;
        padding-top: 150px;
    }

    #contato .content-title {
        margin-bottom: 40px;
        text-align: center;
    }

    #contato input[type="text"] {
        width: 230px;
    }

    #contato textarea {
        width: 92%;
        height: 170px;
        resize: none;
    }

    #contato input[type="submit"] {
    }

    #contato .col2 {
        width: 44%;
        margin: 0 1.5%;
        float: left;
        background-color: #FFF;
        padding: 1.5%;
        border-radius: 5px;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.10);
    }

        #contato .col2:first-child {
            border-right: 1px solid rgba(0, 0, 0, 0.06);
        }

        #contato .col2 p {
            margin-bottom: 15px;
        }

#map {
    width: 100%;
    height: 250px;
    display: none;
}

#error-cont {
    width: 100%;
    margin-bottom: 15px;
}

    #error-cont label {
        margin-bottom: 5px;
        color: #DB9797;
        background-color: #F1EFC1;
        padding: 3px 10px;
        font-weight: 100;
        font-size: 16px;
    }



/*#endregion Contato*/
