/* Estilos Gerais */

body {
  font-family: 'Roboto', sans-serif;
  padding-top: 60px;
}

a {
  text-decoration: none;
}

.dark {
  color: #1D2731;
}

.bg-dark {
  background-color: #1D2731;
}

.blue {
  color: #0B3C5D;
}

.bg-blue {
  background-color: #0B3C5D;
}

.yellow {
  color: #D9B310;
}

.bg-yellow {
 background-color: #D9B310; 
}

.brand {
  align-self: center;
  font-size: 2em;
  color: #fff;
  font-weight: 700;
}

.btn {
  display: block;
  width: 170px;
  height: 40px;
  font-size: 1.125em;
  text-align: center;
  padding: 10px 0 0 0;
  background: transparent;
  border: 2px solid #ddd;
  font-weight: 400;
  color: #000;
  /*box-shadow: 3px 3px 3px rgba(0,0,0,0.8);*/
  border-radius: 4px;
}

.btn-yellow {
  border-color: #D9B310;
  color: #D9B310;
  transition: all .2s ease;
}

.btn-yellow:hover {
  background-color: #D9B310;
  color: #fff;
}

.btn-blue {
  border-color: #0B3C5D;
  color: #0B3C5D;
  transition: all .2s ease;
}

.btn-blue:hover {
  background-color: #0B3C5D;
  color: #fff;
}

.btn-cta {
  width: 270px;
  height: 60px;
  font-size: 1.5em;
  padding-top: 18px;
}

section {
  padding: 60px 0;
}

section h2 {
  font-size: 2.25em;
}

section h2::after {
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
}

section p {
  font-size: 1.125em;
}

/* Hero Area */

main {
  background-image: url('../img/section-bgs/intro/bg-intro.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.overlay {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  background: #000;
  opacity: 0.80;
}

main h1 {
  font-size: 4em;
  color: #fff;
  font-weight: 400;
  z-index: 2;
  text-shadow: 3px 3px 3px #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  max-width: 1200px;
}

main p {
  font-size: 1.5em;
  line-height: 30px;
  max-width: 700px;
  color: #fff;
  margin-bottom: 20px;
  z-index: 2;
}

main a {
  z-index: 2;
}

/* Header e Menu */

.logo {
  display: block;
  color: #fff;
  width: 200px;
  padding: 10px 10px 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2em;
  float: left;
  font-weight: bold;
}

.menu {
  background: #0B3C5D;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.menu nav {
  text-align: right;
  padding: 10px 20px 0 0;
}

.menu nav ul {
  padding: 0px;
  margin: 0px;
}

.menu nav li {
  display: inline-block;
  text-align: right;
}

.menu nav li a {
  display: block;
  color: #fff;
  padding: 25px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.125em;
  letter-spacing: 2px;
  float: left;
}

.menu nav li a::after {
  content: '';
  display: block;
  background: #D9B310;
  height: 2px;
  width: 0;
  transition: .3s;
}

.menu nav li a:hover::after, .menu nav li a.active::after {
  width: 100%;
}

/* Quem Somos */

.sobre-info {
  flex: 2;
}

.sobre-info p {
  color: #1D2731;
  line-height: 25px;
}

.sobre-icon img {
  max-width: 400px;
}

/* O que fazemos */

section#servicos {
  background-color: #1D2731;
}

#servicos h2,
#servicos p.servico-texto {
  color: #fff;
}

#servicos h2::after {
  background-color: #fff;
}

.servico {
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 20px 0;
  margin: 20px 0px 0px 0px;
}

.servico img {
  max-width: 200px;
}

.servico h3 {
  font-size: 1.5em;
}

.servico p {
  max-width: 350px;
  margin: 10px auto;
  line-height: 25px;
  color: #1D2731;
}

.servico a {
  margin: 0 auto;
}

/* Portfólio */

.portfolio a {
  margin: 0 auto;
}

.portfolio .column {
  position: relative;
}

.portfolio img {
  border-radius: 4px;
}

.projeto-titulo,
.projeto-categoria {
  position: absolute;
  color: #fff;
  margin: 30px 0px 0px 30px;
}

.projeto-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.projeto-titulo {
  font-size: 1.5em;
}

.projeto-categoria {
  top: 30px;
}

/* Call to Action */

.cta-info {
  flex: 2;
}

.cta h1 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.125em;
  color: #fff;
  margin-bottom: 20px;
}

.cta img {
  max-width: 300px;
}

/* Contato */

.formphp label.nao-aparece, .formphp input.nao-aparece {
  display: none !important;
}

.form-success {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0px;
  border-radius: 4px;
  color: #fff;
  background: #31aa39;
  display: none;
}

.form-error {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0px;
  border-radius: 4px;
  color: #fff;
  background: #f64540;
  display: none;
}

section#contato {
  background-image: url('../img/section-bgs/contato/bg-form.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contato h2 {
  color: #fff;
}

.contato h2::after {
  background-color: #fff;
}

.contato > * {
  font-size: 1.125em;
}

.contato .contato-form {
  flex: 1.5;
}

.contato .input-group {
  padding-right: 30px;
}

.contato label {
  display: block;
  margin: 20px 0 10px 0;
  color: #fff;
}

.contato input[type=text],
.contato input[type=email],
.contato input[type=tel],
.contato textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #fff;
  outline: none;
  font-size: .8em;
  color: #D9B310;
  background: transparent;
}

.contato input[type=submit] {
  padding-top: 0;
  margin: 20px auto 20px auto;
}

/* Footer Info */

section#contato-dados {
  background: #0B3C5D;
  color: #fff;
}

section#contato-dados .column {
  align-self: center;
}

.contato-dados img {
  max-width: 70px;
}

.contato-dados a {
  color: #fff;
  font-size: 1.125em;
  transition: all .2s ease;
}

.contato-dados a:hover {
  color: #D9B310;
}

.telefones,
.email {
  text-align: center;
}

.telefones img,
.email img {
  margin-bottom: 20px;
}

.telefones a,
.email a {
  display: block;
  margin-bottom: 20px;
}

.email a:last-child {
  visibility: hidden;
}

.social {
  text-align: center;
}

.social a {
  margin-right: 10px;
}

/* Footer */
.footer {
  padding: 20px;
}

.footer .column {
  align-self: center;
}

.footer .column p {
  text-align: center;
  font-size: 1.125em;
}

.logo-footer {
  font-weight: bold;
  text-transform: uppercase;
}

/* Página Portfólio HTML */

.header-portfolio {
  background-image: url('../img/section-bgs/portfolio/bg-portfolio.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 136px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-portfolio h1 {
  text-align: center;
  color: #fff;
  font-size: 2.25em;
}

.header-portfolio h1::after{
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  background-color: #fff;
  text-align: center;
  margin: 10px auto;
}

.project-full {
  background-color: #061246;
  margin-bottom: 20px;
}

.project-half {
  margin-top: 20px;
}

.project-half:first-child {
  background-color: #000;
  margin-right: 20px;
}

.project-half:last-child {
  background-color: #061246;
}

/* Página Websites HTML */

.header-websites {
  background-image: url('../img/section-bgs/services/bg-websites.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 136px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-websites h1 {
  text-align: center;
  color: #fff;
  font-size: 2.25em;
}

.header-websites h1::after{
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  background-color: #fff;
  text-align: center;
  margin: 10px auto;
}

.icon-center {
  text-align: center;
}

.websites img {
  max-width: 200px;
}

.sep {
  max-width: 100%;
  height: 4px;
  background-color: #D9B310;
}

.flex-2 {
  flex: 2;
}

.design-responsivo p,
.personalizado p,
.rapido p {
  line-height: 25px;
}

.personalizado,
.rapido {
  margin-top: 30px;
}

/* Página projeto HTML */

.header-projeto {
  background-image: url('../img/section-bgs/project/bg-project.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 136px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-projeto h1 {
  text-align: center;
  color: #fff;
  font-size: 2.25em;
}

.header-projeto h1::after{
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  background-color: #fff;
  text-align: center;
  margin: 10px auto;
}



.nossa-funcao {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.nossa-funcao img {
  max-width: 70px;
}

.nossa-funcao > div {
  margin-right: 20px;
  text-align: center;
}

.nossa-funcao p {
  margin-bottom: 30px;
}

.column.cliente {
  margin-right: 30px;
  margin-bottom: 30px;
}

.cliente p,
.objetivo p {
  margin-top: 20px;
  line-height: 25px;
}

.projeto a {
  margin: 0 auto;
}

.row-slider {
  flex-direction: column;
}

.projeto-slider {
  margin: 0 0 20px 0;
}

.projeto-slider img,
.projeto-slider source {
  max-width: 100%;
  margin-top: 20px;
}

section#testimonial {
  background-image: url('../img/section-bgs/testimonial/bg-testimonials.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.testimonial p:first-child {
  max-width: 600px;
  font-size: 1.5em;
  margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
  /* Flex Grid Mobile*/
  .row,
  .row-justify-center,
  .row-justify-between {
    padding-left: 15px;
    padding-right: 15px;
  }
  .logo {
    font-size: 1.5em;
  }
  .btn {
    max-width: 120px;
    font-size: 1em;
  }
  .btn.btn-cta {
    max-width: 270px;
    height: 60px;
    font-size: 1.5em;
  }
  .mobile-btn {
    display: block;
    color: white;
    width: 36px;
    height: 36px;
    border-top: 4px solid;
    margin: 20px 20px 0 0;
    float: right;
    position: relative;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
  }

  .menu nav li a {
    font-size: 1em;
  }

  .mobile-btn::after, .mobile-btn::before {
    content: '';
    display: block;
    height: 4px;
    margin-top: 6px;
    background: currentColor;
    position: relative;
    transition: transform .2s ease;
  }

  .mobile-btn.active {
    border-top-color: transparent;
  }

  .mobile-btn.active::after {
    margin-top: 0px;
    top: 2px;
    transform: rotate(45deg);
  }

  .mobile-btn.active::before {
    margin-top: 0px;
    top: 6px;
    transform: rotate(135deg);
  }

  .menu-nav.mobile-menu {
    position: fixed;
    background: #0B3C5D;
    padding: 10px;
    top: 60px;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(60px, 0px, 0px);
    transition: .3s;
  }

  .menu-nav.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px);
  }

  .menu-nav.mobile-menu li {
    display: block;
  }

  .menu-nav.mobile-menu li a {
    border-top: 2px solid;
    width: 100%;
    text-align: center;
  }
  main {
    padding-left: 15px;
    padding-right: 15px;
  }
  main h1 {
    font-size: 1.4em;
  }
  main p {
    font-size: 1em;
    line-height: 25px;
    max-width: 300px;
  }

  /* Estilos Gerais */
  section h2 {
    font-size: 2em;
    text-align: center;
  }
  section h2::after {
    margin: 20px auto;
  }
  section p {
    font-size: 1em;
  }

  /* Quem Somos */
  .sobre {
    align-self: center;
  }

  /* O que fazemos */
  .servico-texto {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Portfólio */
  .portfolio .projeto-titulo,
  .portfolio .projeto-categoria {
    margin: 15px 0 0 15px;
  }
  .portfolio .projeto-titulo {
    font-size: 1.125em;
  }
  .portfolio .projeto-categoria {
    font-size: 0.8em;
  }

  /* Contato */
  .contato-form form > .row {
    padding-left: 0;
    padding-right: 0;
  }
  .contato .input-group {
    padding-right: 0;
  }
  .contato input[type=text],
  .contato input[type=email],
  .contato input[type=tel],
  .contato textarea {
    font-size: .8em;
  }
  .contato input[type=submit] {
    margin: 20px auto 0px auto;
  }
  .telefones img,
  .email img {
    margin-bottom: 0px;
  }
  .contato-dados .telefones p,
  .contato-dados .email p {
    font-size: 1em;
  }
  .contato-dados .telefones p,
  .contato-dados .email p {
    margin-top: 10px;
  }
  .contato-dados .social {
    margin: 30px auto;
  }
  .contato-dados .social img {
    max-width: 60px;
  }
  .contato-dados .email a {
    margin-bottom: 0;
  }
  /* Footer */
  .footer .row {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .footer .column p {
    font-size: .9em;
    text-align: center;
  }

  /* Página Portfólio HTML */
  .header-portfolio {
    height: 120px;
    margin-top: 8px;
  }

  .header-portfolio h1 {
    font-size: 2em;
  }
  .project-half:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }

  /* Página Websites HTML */
  .header-websites {
    height: 120px;
    margin-top: 8px;
  }

  .header-websites h1 {
    font-size: 2em;
  }
  section.websites {
    padding-bottom: 0px;
  }
  .personalizado p {
    margin-bottom: 30px;
  }

  /* Página projeto HTML */
  .header-projeto {
    height: 120px;
    margin-top: 8px;
  }

  .header-projeto h1 {
    font-size: 2em;
  }
  .column.cliente {
    margin-right: 0;
  }
  .column.objetivo {
    margin-bottom: 30px;
  }
  .nossa-funcao > div {
    margin-top: 10px;
    margin-right: 0;
    flex: 2;
  }
  .nossa-funcao > div:nth-child(even) {
    margin-right: 20px;
  }
}