*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

.logo {
  width: 100%;
  height: auto;
  max-width: 170px;
  position: relative;
  top: 2.97px;
  padding: 0 1em 0 0;
}
.icon {
  position: relative;
  top: 2.5px;
  font-size: 1.2em;
}
#faleconosco {
  margin: -1em 2em;
  padding: 0 1em;
  position: relative;
  padding: 1em 1em;
  font-weight: 600;
  background: linear-gradient(to bottom, #fbeb5d, #aea33f);
  border: 0;
  border-radius: 4px 4px;
  -webkit-border-radius: 4px 4px;
  -moz-border-radius: 4px 4px;
  -ms-border-radius: 4px 4px;
  -o-border-radius: 4px 4px;
  cursor: pointer;
}
#faleconosco a, .logo-link{
  color: #1d2631 !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#faleconosco:hover{
  background: linear-gradient(to bottom, #aea33f, #fbeb5d);
}



nav a {
  color: #fafafa;
  text-decoration: none;
  padding: 0 0.7em;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
nav a:hover {
  /*opacity: 0.75;*/
  color: #fbeb5d;
  border-bottom: 2px solid #fbeb5d;
  padding-bottom: 10px;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1d2631;
  height: 74px;
}
nav.open {
  overflow: hidden;
}
.nav-list {
  list-style: none;
  display: flex;
}
.nav-list li {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95em;
  text-transform: capitalize;
  margin: 0 0.7em;
}
.mobile-menu {
  display: none;
  cursor: pointer;
}
.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fbeb5d;
  margin: 8px 20px;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .logo{
    margin: auto 6px;
  }

  #faleconosco {
    margin: 0 auto;
  }

  nav {
    justify-content: space-between;
    padding: 0 5px;
  }

  .nav-list {
    z-index: 999;
    position: absolute;
    overflow-x: hidden;

    top: 74px;
    left: -100vw;
    width: 100vw;
    /*height: calc(88vh - 70px);*/

    background: #1d2631;
    border-top: 2px solid #2f3c4d;

    flex-direction: column;
    /*align-items: center;*/
    text-align: right;

    padding: 1em 0;

    transition: transform 0.3s ease-in-out;
  }
  .nav-list li {
    opacity: 0;
    padding: 15px;
  }
  .mobile-menu {
    display: block;
  }

.nav-list.active {
  transform: translateX(100vw);
}
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

#buscarEmpresas{
  margin: 0 1%;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;

  position: relative;
}
#buscaDeEmpresaWrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#buscaDeEmpresa {
  height: 40px;
  width: 40px;
  background-color: #232930;
  color: rgba(162, 156, 146, 1);
  padding: 10px;
  outline: none;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: .5s ease-in-out;
  box-shadow: 0px 0px 10px #434950;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
#buscaDeEmpresa_icon {
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;

  height: 55px;
  width: 55px;

  outline: none;
  border-style: none;
  border-radius: 50%;

  pointer-events: painted;
  background-color: transparent;
  transition: .2s linear;
  cursor: pointer;

  color: #fbeb5d;
  font-size: 0.95em;
}
#buscaDeEmpresa_icon:focus ~ #buscaDeEmpresa,#buscaDeEmpresa:focus {
  width: 200px;
  background-color: transparent;
  padding: 0 20px 0 55px;
  border-bottom: 3px solid #fbeb5d;
  border-radius: 0px;
  box-shadow: none;
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
  -webkit-transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
  -moz-transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
  -ms-transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
  -o-transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);

  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}