
:root {
    --body-background: #c6c9e5;
    --placeholder-color: #c6c9e5;
    --roxo-claro: #c6c9e5;
    --roxo-escuro: #460088;
    --verde-aqua: #00c9b6;
    --body-font-size: 16px;
    --title-font-color: #45338a;
    --primary: #007bff;
    --success: #28a745;
    --success-hover: #218b3a;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
}

/* --- font face --- */

@font-face {
    font-family: 'amplesoft_regular';
    src: url('fonts/amplesoftpro-regular-webfont.woff2') format('woff2'), url('fonts/amplesoftpro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'amplesoft_bold';
    src: url('fonts/amplesoftpro-bold-webfont.woff2') format('woff2'), url('fonts/amplesoftpro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'amplesoft_light';
    src: url('fonts/amplesoftpro-light-webfont.woff2') format('woff2'), url('fonts/amplesoftpro-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'amplesoft_medium';
    src: url('fonts/amplesoftpro-medium-webfont.woff2') format('woff2'), url('fonts/amplesoftpro-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* --- general --- */

html {
    height: 100%
}

body,
td,
th {
    font-family: 'amplesoft_regular', sans-serif;
}

body {
    font-family: 'amplesoft_regular', sans-serif;
    width: 100%;
    height: 100%;
    min-width: 360px;
    padding: 0px;
    margin: 0px;
    font-weight: normal;
    font-size: var(--body-font-size);
    color: var(--roxo-escuro);
    overflow: auto;
    background-color: var(--body-background);
}

button,
input,
optgroup,
select,
textarea {
    font-family: 'amplesoft_regular', sans-serif;
}

a {
    text-decoration: none;
    outline: none;
    color: #000;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a i {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a:hover,
a:hover i {
    text-decoration: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a img {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 1;
    height: auto;
    margin: 0;
    float: left;
}

a:hover img {
    opacity: 0.8;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

p {
    font-size: 1rem;
    padding: .375rem 0;
    color: #000;
    line-height: 1.6;
}

p#main {
    font-size: 0;
    line-height: 0;
    padding: 0;
    margin: 0
}

b,
strong {
    font-weight: 700
}

video {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}

.clearfix:after {
    font-size: 0px;
    content: ".";
    display: block;
    height: 0px;
    visibility: hidden;
    clear: both;
}

.clear {
    float: none;
    clear: both
}

.relative {
    position: relative
}

.responsive {
    max-width: 100%;
    height: auto;
}

.w100 {
    width: 100%;
}

figure {
    padding: 0;
    margin: 0
}

.valign {
    display: flex;
    align-items: center;
}

.vhalign {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vhlalign {
    display: flex;
    align-items: center;
    justify-content: left;
}

.vhralign {
    display: flex;
    align-items: center;
    justify-content: right;
}

.no-gutter [class*='col-'],
.no-gutter [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
    /*margin-right: 0 !important;
    margin-left: 0 !important;*/
}

.inline {
    display: inline-block;
}



/* --- table --- */

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #CCC;
}


/* Zebra striping */

tr:nth-of-type(odd) {
    background: #EEE;
}

table td,
table th {
    padding: 10px 6px;
    font-family: 'amplesoft_regular', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    vertical-align: middle;
}

table.c td,
table.c th {
    text-align: center;
}

table th {
    background-color: #267b86;
    border-right: 1px solid rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    color: #FFF;
    font-weight: bold;
    text-align: left;
}

table tfoot td {
    border-top: 1px solid #CCC;
    background-color: #267b86;
    color: #FFF;
    font-weight: bold;
    border-right: 1px solid rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(0, 0, 0, .25);
}


/* --- headers --- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 700
}


/* --- header --- */

header {
    width: 100%;
    height: 140px;
    background-color: #736ead;
    /*position: fixed;*/
    /*z-index: 1000;*/
}


/* --- mobile menu --- */

.mobile-menu-container {
    display: none;
}

.header .mobile-menu-switch,
.mobile-menu,
.mobile-menu-divider {
    display: none;
    margin-left: auto;
    margin-right: auto;
    float: right;
}

.mobile-menu {
    width: 100%;
    background-color: #FFF;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
}

.mobile-menu-divider {
    margin-top: 15px;
}

.mobile-menu li a {
    /*width: 320px;*/
    display: block;
    color: #25282A;
    /*background: #F0F0F0;*/
    font-size: 1.25rem;
    font-family: 'amplesoft_regular', sans-serif;
    padding: 15px 20px;
    margin-bottom: 1px;
}

.mobile-menu li.selected a,
.mobile-menu li.selected ul li.selected a,
.mobile-menu li.selected ul li.selected ul li.selected a {
    background: #00b9f2;
    color: #FFF;
}

.mobile-menu li ul {
    background-color: #f5f5f5;
}

.mobile-menu li ul a {
    font-size: .875rem;
}

.mobile-menu li ul ul a {
    font-size: .875rem;
}

.mobile-menu li.selected ul a,
.mobile-menu li.selected ul li.selected ul a {
    color: #25282A;
    background: #F0F0F0;
}

.mobile-menu-switch .line {
    display: block;
    width: 35px;
    height: 4px;
    background: #FFF;
    margin-top: 6px;
}

.mobile-menu-switch:hover .line {
    background: #FFF;
}


/* --- vertical menu --- */

.vertical-menu li a {
    display: block;
    background: transparent;
    border-bottom: 1px solid #E2E6E7;
    padding: 17px 18px 18px 19px;
    line-height: 24px;
    color: #777;
}

.vertical-menu li.selected a {
    background: #00b9f2;
    border-color: #00b9f2;
}

.vertical-menu li:hover a,
.vertical-menu li:hover a span {
    color: #00b9f2;
}

.vertical-menu li.selected a,
.vertical-menu li.selected a span {
    color: #FFF;
}

.vertical-menu li a span {
    float: right;
    color: #A4AAB3;
    font-size: .6875rem;
}

#headerCont {
    padding-top: 44px;
}

.menu-container {
    float: right;
}


/* --- vertical align --- */


/*
.vertical-align-table {
    display: table;
}

.vertical-align {
    display: table-row;
}
*/

header .vertical-align-cell {
    /*display: table-cell;*/
    vertical-align: middle;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .vertical-align-cell nav {
    display: inline-block;
}

header.sticky2 .vertical-align-cell {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sf-menu .midiasMenuAux a {
    padding: 5px 5px;
}

.midiasMenuAux a {
    width: auto;
    margin-top: 2px;
    margin-right: 28px;
    color: #c6c9e5;
    float: right;
}

.midiasMenuAux a i {
    font-size: 29px;
    color: #c6c9e5;
}

.midiasMenuAux a:hover i {
    font-size: 29px;
    color: #a8aac2;
}

.midiasMenuAux.flag a {
    margin-right: 5px;
}

.midiasMenuAux.flag a img {
    width: 29px;
    height: 29px;
}



a.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

a.skip-main:focus,
a.skip-main:active {
    color: #fff;
    background-color: #009544;
    left: auto;
    top: auto;
    width: 30%;
    height: auto;
    overflow: auto;
    margin: 10px 35%;
    padding: 5px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid yellow;
    text-align: center;
    font-size: 1.2em;
    z-index: 999;
}


/* --- misc --- */

.scroll-top.animated-top {
    position: fixed;
    display: block;
    width: 50px;
    display: none;
    padding: 13px 0;
    background: rgba(71, 55, 131, 0.5);
    right: 30px;
    bottom: 60px;
    text-align: center;
    z-index: 100;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.scroll-top:before {
    font-size: 1.5rem;
    color: #FFF;
}

.scroll-top:hover {
    background: rgba(71, 55, 131, 0.9);
}

#top {
    display: none
}

.header h1 a,
.sf-menu a:hover,
.social-icons a:hover,
.header-top-bar .template-search:hover,
.header-top-bar-container .header-toggle:hover,
.slider-control:hover,
.vertical-menu li a:hover,
.buttons li a:hover,
.tabs-navigation li a:hover,
.tabs-navigation li a:focus,
.tabs-navigation li a:active,
.scroll-top:hover {
    text-decoration: none;
}

input,
textarea {
    -webkit-appearance: none;
}

input[type='checkbox'] {
    -webkit-appearance: checkbox;
}

input[type='radio'] {
    -webkit-appearance: radio;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

.mt5 {
    margin-top: 5px
}

.mt10 {
    margin-top: 10px
}

.mt20 {
    margin-top: 20px
}

.mt30 {
    margin-top: 30px
}

.mt40 {
    margin-top: 40px
}

.mt50 {
    margin-top: 50px
}

.mt60 {
    margin-top: 60px
}

.mt80 {
    margin-top: 80px
}

.mb10 {
    margin-bottom: 10px
}

.mb20 {
    margin-bottom: 20px
}

.mb30 {
    margin-bottom: 30px
}

.mb40 {
    margin-bottom: 40px
}

.mb50 {
    margin-bottom: 50px
}

.mb80 {
    margin-bottom: 80px
}

.mb90 {
    margin-bottom: 90px
}

.mb100 {
    margin-bottom: 100px
}

.ml10 {
    margin-left: 10px
}

.ml15 {
    margin-left: 15px
}

.ml20 {
    margin-left: 20px
}

.ml80 {
    margin-left: 80px;
}

.ml100 {
    margin-left: 100px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.pt10 {
    padding-top: 10px
}

.pt20 {
    padding-top: 20px
}

.pt30 {
    padding-top: 30px
}

.pt40 {
    padding-top: 40px
}

.pt50 {
    padding-top: 50px
}

.pb10 {
    padding-bottom: 10px
}

.pb20 {
    padding-bottom: 20px
}

.pb30 {
    padding-bottom: 30px
}

.pb40 {
    padding-bottom: 40px
}

.pb50 {
    padding-bottom: 50px
}

.pl40 {
    padding-left: 40px;
}

.pl50 {
    padding-left: 50px;
}

.pl60 {
    padding-left: 60px;
}

.pl80 {
    padding-left: 80px;
}

.pl100 {
    padding-left: 100px;
}

.mtb5 {
    margin: 5px 0
}

.mtb10 {
    margin: 10px 0
}

.mtb40 {
    margin: 40px 0
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-justify {
    text-align: justify
}

.fleft {
    float: left
}

.fright {
    float: right
}

.nopadding {
    padding: 0 !important
}

.imgRight {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px
}

.valign {
    display: flex;
    align-items: center
}

.contImages {
    width: 50%;
    margin-top: 10px
}

.contImages img {
    margin-bottom: 10px
}

.contImagesRight {
    margin-left: 2em
}

.flat-row {
    clear: both;
    display: block;
    position: relative
}

.lineHeightNulo {
    line-height: 0;
    padding: 0;
}


/* --- buttons --- */

.btn {
    width: auto;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 12px 30px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn:hover {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn-shadow {
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, .35);
}

.btn-g {
    padding: 12px 20px;
    font-size: 1.25rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.btn-p {
    padding: 8px 14px;
    font-size: 1rem;
}

.btn-custom1 {
    width: auto;    
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--verde-aqua);
    text-align: center;
    background: rgb(69,51,138);
    background: linear-gradient(90deg, rgba(69,51,138,1) 0%, rgba(88,65,170,1) 100%);
    padding: 15px 60px;
    display: inline-block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.btn-custom1:hover {
    font-size: 1.8125rem;
    box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -moz-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
}

.btn-custom2 {
    width: auto;    
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--verde-aqua);
    text-align: center;
    background: rgb(69,51,138);
    background: linear-gradient(90deg, rgba(69,51,138,1) 0%, rgba(88,65,170,1) 100%);
    padding: 15px 30px;
    display: inline-block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: none;
}

.btn-custom2:hover {
    font-size: 1.8125rem;
    box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -moz-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
}

.btn-custom3 {
    width: 100%;
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--roxo-escuro);
    background-color: #51e4ab;
    text-align: center;
    padding: 15px 30px;
    display: inline-block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
}

.btn-custom3:hover {
    font-size: 1.8125rem;
    box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -moz-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
}


/* redimensionador de imagem via JS */

.item .imgBox {
    width: 100%;
    height: 16rem;
    padding-bottom: 63.67%;
    -webkit-border-radius: 10px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-bottomleft: 0;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    overflow: hidden;
    /*display: block;*/
    position: relative;
}

.item .imgBox img {
    position: absolute;
}


/* whatsapp */

.whatsbut {
    display: none;
}

@media screen and (min-width:640px) {
    .whatsbut {
        position: fixed;
        display: block;
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
        background-color: #25d366;
        color: #FFF;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        text-align: center;
        font-size: 1.875rem;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }
    .whatsbutfloat {
        margin-top: 16px
    }
}

/* inicial */

/* homeBanner */
.homeBanner {
    padding: 110px 0 15px;
    background:url(../images/bgBanner2.jpg);
    background-repeat: repeat-y;
    background-position: center;
    background-size:cover;
}

.homeBanner .col1 {
    padding-right: 100px;
}

.homeBanner .logo {
    margin-bottom: 60px;
}

.homeBanner .logo img {
    width: 400px;
    -webkit-text-stroke: 0.2px;
}

.homeBanner h1 {
    font-size: 3rem;
    color: #001f45;
    font-weight: 800;
    line-height: 1.0625;
}

.homeBanner h1 span {
    color: #423687;
}

.homeBanner p {
    font-size: 1.5rem;
    color: #001f45;
}

.homeBanner .col2 {
    position: relative;
    background-color: #b9bcde;
}

.homeBanner .col2 .cont-form {
    width: 100%;
    /*height: 700px;*/
    background-color: #b9bcde;
    padding: 30px 60px 0 60px;
    display: block;
    /*position: absolute;*/
}

.homeBanner .col2 .estrela {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 10;
}

.homeBanner .col2 .estrela img {
    width: 165px;
}

.homeBanner .col2 .estrelaTxt {
    width: 120px;
    font-size: 1.75rem;
    color: #b5b7d1;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    top: 45px;
    left: 22px;
    z-index: 11;
}

.homeBanner .col2 .cont-form p {
    width: 80%;
    font-size: 2rem;
    color: #001f45;
    line-height: 1.1;
    margin-bottom: 25px;
}

.homeBanner .col2 .form {
    font-family: 'amplesoft_regular', sans-serif;
    padding: 0 0px;
}

.homeBanner .col2 .form .form-group {
    margin-bottom: 10px;
    overflow: auto;
}

.homeBanner .col2 .form .form-group label {
    width: 100%;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--title-font-color);
    float: left;
}

.homeBanner .col2 .form .form-group label.error {
    margin-top: 5px;
    padding: 4px;
    background-color: #ffc107;
}

.homeBanner .col2 .form .form-group span {
    width: 100%;
    padding-left: 8px;
    margin-bottom: 4px;
    float: left;
}

.homeBanner .col2 .form .form-group input[type="text"],
.homeBanner .col2 .form .form-group input[type="tel"],
.homeBanner .col2 .form .form-group textarea,
.homeBanner .col2 .form .form-group select {
    width: 100%;
    font-size: 1.125rem;
    color: #000;
    padding: 8px;
    background-color: #d4d7ef;
    border: none;
}






/* homeVideo */
.homeVideo {
    padding: 60px 0 80px;
}

.homeVideo video {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 30px 10px rgba(68, 51, 137, 0.3);
    -moz-box-shadow: 0px 0px 30px 10px rgba(68, 51, 137, 0.3);
    -webkit-box-shadow: 0px 0px 30px 10px rgba(68, 51, 137, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    box-shadow: 0px 0px 30px 10px rgba(68, 51, 137, 0.3);
    -moz-box-shadow: 0px 0px 30px 10px rgba(68, 51, 137, 0.3);
    -webkit-box-shadow: 0px 0px 30px 10px rgba(68, 51, 137, 0.3);
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.homeVideo .btnVideo {
    width: auto;    
    font-size: 2rem;
    color: #FFF;
    text-align: center;
    /*
    background: rgb(69,51,138);
    background: linear-gradient(90deg, rgba(69,51,138,1) 0%, rgba(88,65,170,1) 100%);
    */
    background-color: #25d366;
    padding: 20px 40px;
    display: inline-block;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
}

.homeVideo .btnVideo span {
    /*color: var(--verde-aqua);*/
    color: #222;
}

.homeVideo .btnVideo:hover {
    font-size: 2.125rem;
    /*
    background: rgb(88,65,170);
    background: linear-gradient(90deg, rgba(88,65,170,1) 0%, rgba(69,51,138,1) 100%);
    box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -moz-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    */
    background-color: #1fa751;
    box-shadow: 0px 0px 10px 10px rgba(30, 167, 80, 0.25);
    -moz-box-shadow: 0px 0px 10px 10px rgba(30, 167, 80, 0.25);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(30, 167, 80, 0.25);
}

.homeVideo p {
    font-size: 1.9375rem;
    color: var(--roxo-escuro);
    text-align: center;
    margin-bottom: 40px;
}




/* homeSolucoes */
.homeSolucoes {
    padding: 130px 0 110px;
    background-color: rgb(185,181,220);
    background-color: linear-gradient(90deg, rgba(185,181,220,1) 0%, rgba(192,191,231,1) 100%);
    background-image:url(../images/bgLinhasSolucoes.png);
    background-position-x: calc(100% + 300px);
    background-repeat: no-repeat;
}

.homeSolucoes h2 {
    font-size: 2.625rem;
    color: var(--title-font-color);
    font-weight: normal;
    line-height: 1.0625;
    margin-bottom: 120px;
}

.homeSolucoes .bgSolucoesCont {
    position: relative;
}

.homeSolucoes .bgSolucoesCont .estrela {
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 10;
}

.homeSolucoes .bgSolucoesCont .estrela img {
    width: 155px;
    filter: drop-shadow(8px 8px 12px rgb(0 0 0 / 0.4));
}

.pulsate-bck {
	-webkit-animation: pulsate-bck 1.0s ease-in-out infinite both;
	animation: pulsate-bck 1.0s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.homeSolucoes .bgSolucoesCont .estrelaTxt {
    font-size: 1.5rem;
    color: #FFF;
    font-weight: bold;
    position: absolute;
    top: calc(50% - 12px);
    left: 13px;
    z-index: 11;
}

.homeSolucoes .bgSolucoes {
    width: 100%;
    height: 698px;
    position: relative;
    margin-bottom: 20px;
    background:url(../images/bgSolucoes.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    overflow: hidden;
}

.homeSolucoes .bgSolucoes .greenMask {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgb(1,193,175);
    background: linear-gradient(180deg, rgba(1,193,175,0) 20%, rgba(1,193,175,1) 80%, rgba(1,193,175,1) 100%);
}

.homeSolucoes .bgSolucoes .greenMask .texto {
    padding: 0 80px 60px;
    position: absolute;
    bottom: 0;
}

.homeSolucoes .bgSolucoes .greenMask .texto p {
    font-size: 1.125rem;
    color: #FFF;
    font-weight: 600;
}

.homeSolucoes .box {
    height: 226px;
    padding: 10px;
    margin-bottom: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #d7d6ed;
}

.homeSolucoes .box:last-child {
    margin-bottom: 0;
}

.homeSolucoes .box p {
    font-size: 1rem;
    color: var(--title-font-color);
    line-height: 1.4;
}

.homeSolucoes .btnMsg {
    font-size: 1.625rem;
    font-weight: bold;
}




/* homeApps */
.homeApps .appTecnico {
    background-color: rgb(118, 111, 177);
    padding: 50px 0 0 0;
}

.homeApps .appTecnico .txt {
    color: #FFF;
    padding-left: 50px;
}

.homeApps .appCliente {
    background-color: rgb(54, 2, 103);
    background: -moz-linear-gradient(90deg, rgba(54, 2, 103, 1) 0%, rgba(69, 0, 123, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(54, 2, 103, 1) 0%, rgba(69, 0, 123, 1) 100%);
    background: linear-gradient(90deg, rgba(54, 2, 103, 1) 0%, rgba(69, 0, 123, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#360267", endColorstr="#450086", GradientType=1);
    padding: 50px 0 0 0;
}

.homeApps .appCliente .txt {
    font-size: 36px;
    color: #FFF;
    padding-left: 50px;
}

.homeApps .appCliente p, .homeApps .appTecnico p {
    font-size: 36px;
    font-weight: normal;
    line-height: 1;
    color: #FFF;
}

.homeApps .appCliente ul, .homeApps .appTecnico ul {
    margin-top: 40px;
}

.homeApps .appCliente ul li, .homeApps .appTecnico ul li {
    font-weight: normal;
    font-size: 1.125rem;
    padding: 5px 0;
    list-style: disc;
    list-style-position: inside;
}

.homeApps .appCliente .txt span, .homeApps .appTecnico .txt span {
    font-weight: bold;
    color: #00c4b0;
}

.homeApps .apps {
    width: 150px;
    margin-top: 40px;
    margin-bottom: 20px;
}


/* homeDepoimentos */
.homeDepoimentos {
    padding: 110px 0 130px;
    /*background: rgb(192,191,231);
    background: linear-gradient(90deg, rgba(192,191,231,1) 0%, rgba(185,181,220,1) 100%);*/
    background-color: #bcbae1;
    background-image:url(../images/bgLinhasDepoim.png);
    background-position-x: 0;
    background-position-y: -650px;
    background-repeat: no-repeat;
}

.homeDepoimentos h2 {
    font-size: 2.625rem;
    color: var(--title-font-color);
    font-weight: normal;
    line-height: 1.0625;
    margin-bottom: 70px;
}

.homeDepoimentos .btnDepoim {
    width: auto;    
    font-size: 2rem;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background: rgb(69,51,138);
    background: linear-gradient(90deg, rgba(69,51,138,1) 0%, rgba(88,65,170,1) 100%);
    padding: 20px 40px;
    display: inline-block;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
}

.homeDepoimentos .btnDepoim span {
    color: var(--verde-aqua);
}

.homeDepoimentos .btnDepoim:hover {
    font-size: 2.125rem;
    background: rgb(88,65,170);
    background: linear-gradient(90deg, rgba(88,65,170,1) 0%, rgba(69,51,138,1) 100%);
    box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -moz-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(68, 51, 137, 0.25);
}

.homeDepoimentos .depoimento {
    margin: 10px 0 20px;
}

.homeDepoimentos .imgCont {
    margin-bottom: 14px;
    overflow: hidden;
}

.homeDepoimentos .imgCont img {
    height: auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.homeDepoimentos .txtCont {
    padding: 40px 30px 30px;
    background-color: #d1d5ff;
    text-align: center;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.homeDepoimentos .txtCont h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--title-font-color);
    margin-bottom: 0px;
}

.homeDepoimentos .txtCont p.desc {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--title-font-color);
    line-height: 1.1;
}

.homeDepoimentos .txtCont p.depoim {
    font-size: 1.0625rem;
    color: #575756;
    margin-top: 20px;
}


/* homeContato */
.homeContato {
    background-color: #c6c9e5;
    padding: 0;
}

.homeContato .contImg {
    height: 100%;
    background-image:url(../images/contatoImg.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
}

.homeContato h2 {
    font-size: 2.625rem;
    color: var(--title-font-color);
    font-weight: normal;
    line-height: 1.0625;
    text-align: center;
    margin-bottom: 60px;
}

.homeContato .formCont {
    margin: 50px 0;

}

.homeContato .form {
    font-family: 'amplesoft_regular', sans-serif;
    padding: 0 150px;
}

.homeContato .form .form-group {
    margin-bottom: 10px;
    background-color: #dddfef;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    padding: 10px 10px;
    overflow: auto;
}

.homeContato .form .form-group label {
    width: 100%;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--title-font-color);
    float: left;
}

.homeContato .form .form-group label.error {
    margin-top: 5px;
    padding: 4px;
    background-color: #ffc107;
}

.homeContato .form .form-group span {
    width: 100%;
    padding-left: 8px;
    margin-bottom: 4px;
    float: left;
}

.homeContato .form .form-group input[type="text"],
.homeContato .form .form-group input[type="tel"],
.homeContato .form .form-group textarea,
.homeContato .form .form-group select {
    width: 100%;
    font-size: 1rem;
    color: #000;
    padding: 8px;
    background-color: #d4d7ef;
    border: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

#recaptcha1, #recaptcha2 {
    width: 304px;
    margin: 0 auto;
}

/*
--- form ---



.form input[type="text"]:hover,
.form textarea:hover,
.form select:hover {
    background-color: #6400c2;
    color: #FFF
}

.form input[type="text"]:focus,
.form textarea:focus,
.form select:focus {
    background-color: #6400c2;
    color: #FFF
}

.form label {
    width: 100%;
    font-size: 1rem;
    color: #FFF;
    padding: 30px 0 5px;
    float: left;
    text-align: left;
}

.form label.error,
.form label.errorFile {
    width: 100%;
    font-size: .875rem;
    color: #FFF;
    background-color: #F00;
    padding: 6px;
}

.form .field50.error+label.error {
    width: 49%;
    background-color: #FF0;
}

.form input[type="radio"] {
    width: auto;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 15px;
}

.form input[type="button"] {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form input[type="submit"] {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form ::placeholder {
    color: #000;
    opacity: 1
}

.form .formInvert::placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

.form input[type='number'] {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

.form input::-webkit-outer-spin-button,
.form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


 Chrome, Firefox, Opera, Safari 10.1+ 

.form :-ms-input-placeholder {
    color: var(--placeholder-color);
}


 Internet Explorer 10-11 

.form ::-ms-input-placeholder {
    color: var(--placeholder-color);
}
*/