/*
bege1 = fffdf7
bege2 = f6f0e7
verde1 = 4b5e4b
*/
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
html {
  background-color: #f6f0e7;
}
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #4b5e4b;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f0e7;
  padding: 20px;
  transition: all 0.3s ease;
  border-bottom: 0.1px solid #4b5e4b;
}
nav .logo img {
  transition: height 0.3s ease;
  height: 85px;
}
nav .hamburger {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  color: #4b5e4b;
}
nav .menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}
nav .menu li a {
  color: #4b5e4b;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}
nav .menu li a:hover {
  color: #4b5e4b;
}
@media (max-width: 992px) {
  nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f6f0e7;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 0.1px solid #4b5e4b;
  }
  nav .menu li {
    width: 100%;
    text-align: center;
  }
  nav .hamburger {
    display: flex;
  }
  nav.active .menu {
    display: flex;
  }
}
nav.scrolled {
  padding: 10px;
}
nav.scrolled .logo img {
  transition: height 0.3s ease;
  height: 50px;
}
.banners {
  height: 500px;
  margin-top: 125px;
  background-color: #f6f0e7;
  color: #4b5e4b;
  overflow: hidden;
}
.banners .banner {
  height: 500px;
}
.banners .texto {
  padding: 30px;
  font-weight: 200;
  text-align: center;
  font-size: 30px;
  /*@media (max-width: 600px) {
      font-size: 40px;
      line-height: 40px;
      .space {
        height: 20px;
      }
    }*/
}
.banners .texto small {
  font-size: 20px;
}
h1 {
  color: #4b5e4b;
  padding-bottom: 40px;
}
.conteudo-a {
  background-color: #fffdf7;
  padding-top: 50px;
  padding-bottom: 40px;
  scroll-margin-top: 70px;
}
.conteudo-b {
  background-color: #f6f0e7;
  padding-top: 50px;
  padding-bottom: 40px;
  scroll-margin-top: 80px;
}
.areas-atuacao > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  background-color: #fffdf7;
  margin-bottom: 30px;
  width: 250px;
  height: 100px;
  padding: 15px;
  text-align: center;
}
.profissionais > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 5px;
  background-color: #fffdf7;
  margin-bottom: 30px;
  width: 300px;
  height: 300px;
  padding: 15px;
  text-align: center;
}
.profissionais > div .foto {
  display: block;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
}
.profissionais > div .foto img {
  width: 200px;
  height: 200px;
}
.profissionais > div .texto {
  line-height: 20px;
}
.profissionais > div .texto small {
  font-size: 12px;
}
@keyframes pulo {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-10px);
  }
  15% {
    transform: translateY(0px);
  }
  20% {
    transform: translateY(-8px);
  }
  30% {
    transform: translateY(0);
  }
}
.floating-wpp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  animation: pulo 3s ease infinite;
}
