body {
  font-family: 'Open Sans', Helvetica, sans-serif;
}

.heading {
  font-family: 'Martel';
  font-style: normal;
  font-weight: 700;
}

/* ============ NAVBAR ============== */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link:focus {
  position: relative;
  color: #fff;
  transition: top .4s ease;
}

.nav-link {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .25);
}

.navbar-brand img {
  width: 260px;
}

.navbar-collapse {
  background: #252B42;
}

.navbar-toggler {
  outline: 0!important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media screen and (min-width: 550px) {
  .navbar-brand img {
    width: 370px;
  }
}

@media screen and (min-width: 992px) {
  .nav-link,
  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus {
    color: #fff;
    padding: 0;
    border: 0;
  }

  .navbar-collapse {
    background: transparent;
  }

  .nav-link:hover {
    top: -1px;
  }
}

/* ============ HERO ============== */

#hero {
  background: #050D10;
  color: #fff;

  padding-top: 120px;
  padding-bottom: 20px;
}

#hero.hero-home {
  padding-bottom: 140px;
}

#hero h1 {
  font-size: 35px;
}

#hero h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #BBBBBB;
}

@media screen and (min-width: 550px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (min-width: 992px) {
  #hero {
    background-image: url('imgs/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    padding-top: 150px;
    padding-bottom: 50px;
  }

  #hero.hero-home {
    padding-bottom: 250px;
  }

  #hero h1 {
    font-size: 60px;
  }
}

/* ============ SERVICOS ============== */

#servicos {
  position: relative;
  top: -140px;
  margin-bottom: -100px;
  padding-top: 40px;
}

.servico-card {
  display: block;
  position: relative;
  text-decoration: none;
  background-color: #fff;
  padding: 25px 25px 40px 25px;
  box-shadow: 0px 13px 19px rgba(0, 0, 0, 0.07);
  margin-bottom: 50px;
  transition: top .4s ease;;
}

.servico-card:hover {
  top: 2px;
}

.servico-card span {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
  color: #252B42;
}

.servico-card p {
  color: #737373;
  margin: 0;
}

@media screen and (min-width: 992px) {
  #servicos {
    top: -240px;
    margin-bottom: -180px;
  }

  .servico-card {
    height: 250px;
  }
}

/* ============ SOBRE ============== */

#sobre {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#sobre h3 {
  color: #252B42;
}

#sobre p {
  color: #737373;
  margin: 30px 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

@media screen and (min-width: 992px) {
  #sobre {
    padding-top: 150px;
    padding-bottom: 150px;
    min-height: 500px;
  }

  #sobre:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    background: #252B42;
    background-image: url('imgs/sobre.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    border-top-left-radius: 200px;
  }

  #sobre p {
    margin: 60px 0;
  }
}

/* ============ CONTATO ============== */

#contato {
  background: #F3F3F3;
  padding: 60px 0;
}

.contato-box {
  background: #fff;
  text-align: center;
  color: #252B42;
  font-weight: 700;
}

.contato-box a:not(.btn) {
  text-decoration: none;
  color: inherit;
}

.contato-box__localizacao {
  position: relative;
  background: #252B42;
  color: #fff;
}

@media screen and (min-width: 992px) {
  #contato {
    padding: 100px 0;
  }

  .contato-box__localizacao:before,
  .contato-box__localizacao:after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: #252B42;
  }

  .contato-box__localizacao:after {
    top: initial;
    bottom: -50px;
  }
}

/* ============ FOOTER ============== */

footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #F7F7F7;
  color: #737373;
  font-weight: 700;
}

footer a {
  text-decoration: none;
}

/* ============ AREAS DE ATUACAO ============== */

#areas-de-atuacao div {
  padding: 40px 0 40px;
  margin-bottom: 20px;
}

#areas-de-atuacao p {
  color: #737373;
}

#areas-de-atuacao span {
  color: #252B42;
}

#areas-de-atuacao div:not(:last-child) {
  border-bottom: 1px solid #252B42;
}

@media screen and (min-width: 992px) {
  #areas-de-atuacao div {
    padding: 80px 0 100px;
    margin-bottom: 30px;
  }
}