
body {
  overflow-x: hidden;
  position: relative;
}

* {
  margin: 0;
  padding: 0; 
}

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

a, a:hover{
  text-decoration: none;
}

/* IMAGEM */

img{
  max-width: 100%;
}

/* TEXTO */

h1{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  line-height: 3.6rem;
  color: #fff;
}

p{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.85rem;
  color: #fff;
}

.bold, .wysiwyg b, .wysiwyg strong {
    font-weight: 700;
}

/* FORMULARIO */
  
textarea:focus, input:focus, select:focus, button:focus{
    outline: none;
}

*:focus {
    outline: none;
}

::-webkit-input-placeholder { opacity: 1; -webkit-transition: opacity .5s; transition: opacity .5s; }  /* Chrome <=56, Safari < 10 */
:-moz-placeholder { opacity: 1; -moz-transition: opacity .5s; transition: opacity .5s; } /* FF 4-18 */
::-moz-placeholder { opacity: 1; -moz-transition: opacity .5s; transition: opacity .5s; } /* FF 19-51 */
:-ms-input-placeholder { opacity: 1; -ms-transition: opacity .5s; transition: opacity .5s; } /* IE 10+ */
::placeholder { opacity: 1; transition: opacity .5s; } /* Modern Browsers */

*:focus::-webkit-input-placeholder { opacity: 0; } /* Chrome <=56, Safari < 10 */
*:focus:-moz-placeholder { opacity: 0; } /* FF 4-18 */
*:focus::-moz-placeholder { opacity: 0; } /* FF 19-50 */
*:focus:-ms-input-placeholder { opacity: 0; } /* IE 10+ */
*:focus::placeholder { opacity: 0; } /* Modern Browsers */

.formulario .form-content{
  margin-left: -8px;
}

.formulario .form-row .forml-col {
  padding-right: 8px;
  padding-left: 8px;
}

.formulario input, .formulario textarea, .formulario select {
  width: 100%;
  margin-bottom: 0px;
  padding: 14px 22px;
  color: #11161d;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
  
.formulario textarea{
    height: 150px;
    border-radius: 10px;
}
  
.formulario input::-webkit-input-placeholder, .formulario textarea::-webkit-input-placeholder { color: #11161d; }  /* Chrome <=56, Safari < 10 */
.formulario input:-moz-placeholder, .formulario textarea:-moz-placeholder { color: #11161d; } /* FF 4-18 */
.formulario input::-moz-placeholder, .formulario textarea::-moz-placeholder { color: #11161d; } /* FF 19-51 */
.formulario input:-ms-input-placeholder, .formulario textarea:-ms-input-placeholder { color: #11161d; } /* IE 10+ */
.formulario input::placeholder, .formulario textarea::placeholder { color: #11161d; } /* Modern Browsers */

.formulario .btn-form.btn{
  padding: 14px 38px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all ease-in-out .4s;
}

.formulario .btn-form.btn p {
  margin-bottom: 0px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  line-height: unset;
  color: #fff;
  z-index: 1;
  position: relative;
}

.formulario .btn-form.btn::after{
  content: '';
  display: block;
  position: absolute;
  background: rgb(34,35,39);
  background: linear-gradient(0deg, rgba(50,53,66,1) 50%, rgba(34,35,39,1) 50%);
  width: 100%;
  height: 200%;
  top: 0;
  left: 0;
  transition: all ease-in-out .4s;
}

.formulario .btn-form.btn:hover::after{
  top: -100%;
}

/* HEADER */
header{
  position: absolute;
  top: 0;
  z-index: 1000;
  transition: all ease-in-out .4s;
  padding-top: 1rem;
}

header.inicio{
  padding-top: 3rem;
  transition: all ease-in-out .4s;
}

header .col-11{
  transition: all ease-in-out .4s;
}

header.inicio .col-11 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
  transition: all ease-in-out .4s;
}

#logo {
  cursor: pointer;
}

header .logo img {
  height: 50px;
  transition: all ease-in-out .4s;
}

header.inicio .logo img{
  height: 90px;
  transition: all ease-in-out .4s;
}

header #menu a.menu-links {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  padding: 8px 6px;
  margin: 0px 24px;
  position: relative;
  display: inline-block;
  z-index: 1;
}


header #menu a.menu-links::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 0px;
  background-color: #ce4ec3;
  bottom: 14px;
  left: 0;
  z-index: -1;
  transition: all ease-in-out .2s;
}

header #menu a.menu-links.active::before{
  height: 4px;
}

#menuIcon {
  width: 50px;
  height: 35px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#menuIcon span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#menuIcon span:nth-child(1) {
  top: 0px;
}

#menuIcon span:nth-child(2), #menuIcon span:nth-child(3) {
  top: 14px;
}

#menuIcon span:nth-child(4) {
  top: 28px;
}

#menuIcon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#menuIcon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menuIcon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menuIcon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


/* VIDEO */
div#sectionVideo {
  padding-top: 0px !important;
}

#sectionVideo video.h-100 {
  width: 100%;
  height: auto !important;
}

#sectionVideo .container-video-bg {
    width: 100%;
}

#sectionVideo .video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/video-overlay.jpg);
  top: 0;
  left: 0;
  opacity: 0.25;
}

/* SISTEMAS */
#sectionSistemas{
  background-image: url(../images/bg-sistemas.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#sectionSistemas .desenvolvimento-sistemas,
#sectionSistemas .integracao-apis {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#sectionSistemas .desenvolvimento-sistemas p.text {
  padding-right: 54%;
}

#sectionSistemas .integracao-apis p.text {
  margin-left: 38%;
}

/* APPS */
#sectionApps{
  background-image: url(../images/bg-apps.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#sectionApps .desenvolvimento-apps {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 4% !important;
}

#sectionApps .desenvolvimento-apps .row{
  padding-top: 4%;
}

#sectionApps .desenvolvimento-apps p.text {
  padding-right: 30%;
}

/* WEBSITES */

#sectionWebsite{
  background-image: url(../images/bg-websites.jpg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

#sectionWebsite .criacao-websites{
  padding-top: 4rem;
}

#sectionWebsite .container-websites-texto {
  height: 70%;
  margin-left: 5%;
  padding-right: 10% !important;
}

#sectionWebsite .container-websites-itens {
  width: 100%;
  display: flex;
  height: 30%;
}

#sectionWebsite .container-websites-itens .container-website-item {
  position: absolute;
  width: 13.5%;
}

#sectionWebsite .container-websites-itens .container-website-item .website-item{
  position: relative;
}

#sectionWebsite .container-websites-itens .container-website-item .website-item img {
  width: 100%;
}

#sectionWebsite .container-websites-itens .container-website-item p {
  position: absolute;
  margin-bottom: 0;
}

#sectionWebsite .container-websites-itens .container-website-item.prototype {
  left: 3.7%;
  bottom: 53.4%;
}

#sectionWebsite .container-websites-itens .container-website-item.identidade {
  left: 23.6%;
  bottom: 80%;
}

#sectionWebsite .container-websites-itens .container-website-item.programacao {
  right: 36.2%;
  bottom: 80%;
}

#sectionWebsite .container-websites-itens .container-website-item.publicacao {
  right: 9.4%;
  bottom: 80%;
}

#sectionWebsite .container-websites-itens .container-website-item.prototype p {
  left: 60%;
  bottom: -14px;
}

#sectionWebsite .container-websites-itens .container-website-item.identidade p {
  left: 60%;
  bottom: -14px;
  width: 100%;
}

#sectionWebsite .container-websites-itens .container-website-item.programacao p {
  left: 98%;
  bottom: 4px;
}

#sectionWebsite .container-websites-itens .container-website-item.publicacao p {
  left: 68%;
  bottom: 26px;
}

/* CLIENTES */

#sectionClientes{
  background-image: url(../images/bg-clientes.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#sectionClientes .clientes {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#sectionClientes .clientes .cliente-logo-contanier {
  padding: 1rem 4%;
}

#sectionClientes .clientes .cliente-logo-contanier  img.cliente-logo {
  width: 100%;
}

/* CONTATO */
#sectionContato{
  background-image: url(../images/bg-contato.jpg);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
}

#sectionContato .contato {
  padding-top: 3%;
  padding-bottom: 4rem;
}

/* FOOTER */
footer {
  position: absolute;
  bottom: 0;
  background-color: #0063ad;
  margin-left: -15px !important;
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
}

footer p, footer p a{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 0.813rem;
  line-height: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: all ease-in-out .4s;
}

footer p a:hover{
  color: #dcdcdc;
}

/* SETA NAVEGACAO */

.navegacao-container {
  bottom: 20px;
  width: 100%;
}

.navegacao-container #moveDown {
  cursor: pointer;
}

.navegacao-container #moveDown .scroll_arrows {
  display: block;
}


.navegacao-container #moveDown .scroll_arrows.primeiro {
  margin-top: 1px;
}

.navegacao-container #moveDown .scroll_arrows.primeiro,
.navegacao-container #moveDown .scroll_arrows.segundo {
    -webkit-animation: moveDown 1.4s infinite;
    -moz-animation: moveDown 1.4s infinite;
    animation: moveDown 1.4s infinite;
  
}

.navegacao-container #moveDown .scroll_arrows.primeiro {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}

.navegacao-container #moveDown .scroll_arrows.segundo {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  animation-delay: .2s;
  animation-direction: alternate;
  margin-top: -6px;
}


@-webkit-keyframes moveDown {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes moveDown {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes moveDown {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes moveDown {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}





@media (min-width: 1200px){

}

@media (max-width: 1505px){

}

@media (max-width: 1100px) and (min-width: 992px){
  #sectionSistemas .desenvolvimento-sistemas p.text {
    padding-right: 0%;
  }
  #sectionSistemas .integracao-apis p.text {
    margin-left: 0%;
  }
  #sectionApps .desenvolvimento-apps p.text {
    padding-right: 0%;
  }
  #sectionApps .desenvolvimento-apps {
    padding-left: 0% !important;
  }
  .texto-contato {
    flex: 0 0 61.666667%;
    max-width: 61.666667%;
  }
}

@media (min-width: 992px){
  header #menu a.menu-links:hover::before, header #menu a.menu-links.active::before{
    height: 4px;
  }
}

@media (max-width: 991px){
  header {
    position: fixed;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background-color: #0063ad;
    padding: 1rem !important;
  }
  header.inicio .logo img {
    height: 50px;
    transition: all ease-in-out .4s;
  }
  div#containerMenu {
    padding: 0px 2rem;
  }
  .fp-viewing-sistemas header #menu a.menu-links[href="#sistemas"]::before,
  .fp-viewing-apps header #menu a.menu-links[href="#apps"]::before,
  .fp-viewing-websites header #menu a.menu-links[href="#websites"]::before,
  .fp-viewing-clientes header #menu a.menu-links[href="#clientes"]::before,
  .fp-viewing-contato header #menu a.menu-links[href="#contato"]::before{
    height: 4px;
  }
  nav#menu {
    width: 100vw;
    height: calc(100vh - 82px);
    background-color: #034678;
    position: absolute;
    top: 66px;
    left: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    transition: all ease-in-out .4s;
    padding-bottom: 10%;
  }
  nav#menu.open{
    left: 0%;
  }
  header.inicio .col-11, header .col-11 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    transition: all ease-in-out .4s;
  }
  #sectionVideo video.h-100 {
    width: auto;
    height: 100% !important;
    margin: 0 auto;
    position: absolute;
    margin-left: -70%;
  }
  .container-video-bg{
    width: 100%;
  }
  #menuMobile {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  #sectionSistemas .desenvolvimento-sistemas {
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 0rem;
    background-image: url(../images/sistema-mobile-topo.jpg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
  }
  #sectionSistemas .integracao-apis {
    padding-top: 0rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    background-image: url(../images/sistema-mobile-baixo.jpg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
  }
  #sectionSistemas{
    background-image: url(../images/sistema-mobile-topo.jpg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
  }
  #sectionSistemas .sistema-img-mobile img {
    width: 100%;
  }
  #sectionSistemas .desenvolvimento-sistemas p.text {
    padding-right: 20%;
  }
  #sectionSistemas .integracao-apis p.text {
    margin-left: 20%;
  }
  #sectionApps{
    background-image: url(../images/apps-mobile-bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
  }
  #sectionApps .desenvolvimento-apps {
    padding-top: 3rem;
    padding-bottom: 0rem;
    padding-left: 3rem !important;
    padding-right: 3rem;
    position: relative;
    z-index: 1;
  }
  #sectionApps .desenvolvimento-apps p.text {
    padding-right: 20%;
  }
  #sectionApps .apps-img-mobile img {
    width: 100%;
    margin-top: -14%;
  }
  #sectionWebsite .criacao-websites {
    padding-top: 0rem;
    padding-bottom: 3rem;
  }
  #sectionWebsite .container-websites-texto {
    padding-top: 3rem;
    padding-left: 3rem;
    padding-bottom: 0rem;
    padding-right: 3rem;
  }
  #sectionWebsite .container-websites-texto {
    height: auto;
    margin-left: 0;
    padding-right: 0% !important;
  }
  #sectionWebsite .container-websites-texto p.text {
    padding-right: 20%;
  }
  #sectionWebsite .container-websites-itens {
    min-height: 850px;
  }
  #sectionWebsite .container-websites-itens .container-website-item {
    width: 25%;
  }
  #sectionWebsite .container-websites-itens .container-website-item.prototype {
    left: 10%;
    top: 10%;
  }
  #sectionWebsite .container-websites-itens .container-website-item.identidade {
    top: 30%;
    left: inherit;
    right: 24%;
  }
  #sectionWebsite .container-websites-itens .container-website-item.programacao {
    left: 14%;
    top: 50%;
    right: inherit;
  }
  #sectionWebsite .container-websites-itens .container-website-item.publicacao {
    right: 14%;
    top: 72%;
  }
  #sectionClientes .clientes {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #sectionContato .contato {
    padding-top: 3rem;
    padding-bottom: 22rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #sectionContato .texto-contato {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  #sectionContato #form-contato {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 768px){
  h1 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  h1.video-text {
    padding-left: 4%;
    padding-right: 4%;
  }
  #sectionSistemas .desenvolvimento-sistemas p.text {
    padding-right: 0%;
  }
  #sectionSistemas .integracao-apis p.text {
    margin-left: 0%;
  }
  #sectionApps .desenvolvimento-apps p.text {
    padding-right: 0%;
  }
  #sectionWebsite .container-websites-itens .container-website-item.prototype {
    left: 10%;
    top: 10%;
  }
  #sectionWebsite .container-websites-itens .container-website-item.identidade {
    top: 35%;
    left: inherit;
    right: 30%;
  }
  #sectionWebsite .container-websites-itens .container-website-item.programacao {
    left: 14%;
    top: 54%;
    right: inherit;
  }
  #sectionWebsite .container-websites-itens .container-website-item.publicacao {
    right: 25%;
    top: 80%;
  }
  #sectionClientes .clientes .cliente-logo-contanier:nth-child(even) {
    padding: 1rem 0% 1rem 8%;
  }
  #sectionClientes .clientes .cliente-logo-contanier:nth-child(odd) {
    padding: 1rem 8% 1rem 0%;
  }
  #sectionContato .texto-contato {
    padding-left: 15px;
    padding-right: 15px;
  }
  #sectionContato #form-contato {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  #sectionContato .contato {
    padding-top: 3rem;
    padding-bottom: 10rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #sectionSistemas .desenvolvimento-sistemas {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 0rem;
  }
  #sectionSistemas .integracao-apis {
    padding-top: 0rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
  #sectionApps .desenvolvimento-apps {
    padding-top: 2rem;
    padding-bottom: 0rem;
    padding-left: 2rem !important;
    padding-right: 2rem;
    position: relative;
    z-index: 1;
  }
  #sectionWebsite .container-websites-texto {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-bottom: 0rem;
    padding-right: 2rem;
  }
  #sectionClientes .clientes {
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #sectionContato .contato {
    padding-top: 2rem;
    padding-bottom: 10rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) and (min-width: 600px){
  #sectionWebsite .container-websites-itens .container-website-item {
    width: 25%;
  }
}

@media (max-width: 599px){
  #sectionWebsite .container-websites-itens .container-website-item {
    width: 36%;
  }
}




@media (max-width: 350px){
  h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  p {
    font-size: 1rem;
    line-height: 1.45rem;
  }
}

