@charset "UTF-8";
/* Imports CSS */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
/* Reset CSS */
/* Box sizing border-box for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove margin and padding for all elements */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol, li,
blockquote,
figure,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles (bullets/numbers) */
ul, ol {
  list-style: none;
}

/* Remove hyperlink styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default button styles */
button {
  background-color: transparent;
  border: none;
  padding: 0;
}

/* Remove default form styles */
input,
textarea,
select,
button {
  outline: none;
  font-family: inherit;
}

/* Seletor do elemento que terá o overflow */
* {
  overflow: auto;
}

/* Oculta a barra de scroll */
*::-webkit-scrollbar {
  width: 5px; /* Ajuste o tamanho da barra conforme necessário */
}
@media screen and (max-width: 991px) {
  *::-webkit-scrollbar {
    width: 0; /* Ajuste o tamanho da barra conforme necessário */
  }
}

*::-webkit-scrollbar-thumb {
  background-color: #888; /* Cor da thumb (parte que representa a barra de scroll) */
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Cor da thumb ao passar o mouse */
}

* {
  font-family: "Roboto Condensed", sans-serif;
}

/* Variaveis de cor */
/* Mixins de responsividade */
/* Mixins de texto */
#header-home {
  width: 100vw;
  height: 95vh;
}
@media screen and (max-width: 800px) {
  #header-home {
    height: 35vh;
  }
}
#header-home .nav-web {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 100%;
  padding-top: 23.45vh;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 800px) {
  #header-home .nav-web {
    display: none;
  }
}
#header-home .nav-web::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95vh;
  background-color: rgba(65, 88, 78, 0.8);
  /* Cor da camada com transparência (aqui é 50% de opacidade) */
}
#header-home .nav-web ul {
  width: 70.625vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 6.8vw 0 2.5vw;
  height: fit-content;
  z-index: 2;
}
#header-home .nav-web ul li {
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
#header-home .nav-web ul li a {
  cursor: pointer;
}
#header-home .nav-web .img-wrapper {
  width: 92.625vw;
  position: absolute;
  left: 0;
  margin-top: -30px;
}
#header-home .nav-web .img-wrapper img {
  width: 100%;
}
#header-home .nav-mobile {
  display: none;
  overflow-x: hidden;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  width: 100vw;
  height: 35vh;
}
#header-home .nav-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background-color: rgba(65, 88, 78, 0.8);
  /* Cor da camada com transparência (aqui é 50% de opacidade) */
}
@media screen and (max-width: 800px) {
  #header-home .nav-mobile {
    display: flex;
  }
}
#header-home .nav-mobile img {
  position: absolute;
  top: 27px;
  left: 22px;
  width: 35vw;
}
#header-home .nav-mobile .button,
#header-home .nav-mobile .menu {
  position: absolute;
  transition: all 0.5s ease-in-out;
}
#header-home .nav-mobile #check {
  display: none;
}
#header-home .nav-mobile .button {
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background: #41584E;
  cursor: pointer;
}
#header-home .nav-mobile .button .top {
  position: absolute;
  top: 14px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-home .nav-mobile .button .mid {
  position: absolute;
  top: 22px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.7s;
}
#header-home .nav-mobile .button .bot {
  position: absolute;
  top: 30px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-home .nav-mobile .menu {
  margin: auto;
  top: 50px;
  right: 0;
  width: 50vw;
  background: #41584E;
  opacity: 0;
}
#header-home .nav-mobile .menu a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 15px;
  opacity: 0;
  transform: translatex(20px);
  transition: 1s;
}
#header-home .nav-mobile #check:checked ~ .menu a:hover {
  background: #505050;
  transition-delay: 0s;
  transition-duration: 0s;
  transition: 0s;
}
#header-home .nav-mobile #check:checked ~ .menu {
  opacity: 1;
  transform: translatex(0);
}
#header-home .nav-mobile #check:checked ~ .menu a {
  opacity: 1;
  transform: translatex(0px);
}
#header-home .nav-mobile #check:checked ~ .fondo {
  background: #101010;
  opacity: 0.6;
  height: 100vh;
  transition: 1s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(1) {
  transition-delay: 0.25s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(2) {
  transition-delay: 0.5s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(3) {
  transition-delay: 0.75s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(4) {
  transition-delay: 1s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(5) {
  transition-delay: 1.25s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(6) {
  transition-delay: 1.5s;
}
#header-home .nav-mobile #check:checked ~ .button .top {
  top: 22px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#header-home .nav-mobile #check:checked ~ .button .mid {
  opacity: 0;
  transition: 0.5s;
}
#header-home .nav-mobile #check:checked ~ .button .bot {
  top: 22px;
  transform: rotate(-45deg);
  transition: 0.5s;
}

#header-blog .nav-web {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 800px) {
  #header-blog .nav-web {
    display: none;
  }
}
#header-blog .nav-web hr {
  width: 90%;
  margin-bottom: 30px;
}
#header-blog .nav-web ul {
  width: 70.625vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 2.5vw 0 2.5vw;
  height: fit-content;
  z-index: 2;
}
#header-blog .nav-web ul li {
  color: #313D37;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
#header-blog .nav-web ul li a {
  cursor: pointer;
}
#header-blog .nav-web .img-wrapper {
  width: 32vw !important;
}
@media screen and (min-width: 605px) and (max-width: 835px) {
  #header-blog .nav-web .img-wrapper {
    width: 25vw;
  }
}
#header-blog .nav-web .img-wrapper a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#header-blog .nav-web .img-wrapper a p {
  font-size: 14px;
  line-height: 22px;
  color: #AA9B78;
}
#header-blog .nav-web .img-wrapper a p b {
  font-size: 18px;
  font-weight: 100;
  color: #41584E;
}
#header-blog .nav-web .img-wrapper img {
  padding-right: 4px;
}
#header-blog .nav-mobile {
  display: none;
  overflow-x: hidden;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  width: 100vw;
  height: 15vh;
}
@media screen and (max-width: 800px) {
  #header-blog .nav-mobile {
    display: flex;
  }
}
#header-blog .nav-mobile img {
  position: absolute;
  top: 15px;
  left: 30%;
  width: 35vw;
}
#header-blog .nav-mobile .button,
#header-blog .nav-mobile .menu {
  position: absolute;
  transition: all 0.5s ease-in-out;
}
#header-blog .nav-mobile #check {
  display: none;
}
#header-blog .nav-mobile .button {
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background: #41584E;
  cursor: pointer;
}
#header-blog .nav-mobile .button .top {
  position: absolute;
  top: 14px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-blog .nav-mobile .button .mid {
  position: absolute;
  top: 22px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.7s;
}
#header-blog .nav-mobile .button .bot {
  position: absolute;
  top: 30px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-blog .nav-mobile .menu {
  margin: auto;
  top: 50px;
  right: 0;
  width: 50vw;
  background: #41584E;
  opacity: 0;
}
#header-blog .nav-mobile .menu a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 15px;
  opacity: 0;
  transform: translatex(20px);
  transition: 1s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:hover {
  background: #505050;
  transition-delay: 0s;
  transition-duration: 0s;
  transition: 0s;
}
#header-blog .nav-mobile #check:checked ~ .menu {
  opacity: 1;
  transform: translatex(0);
}
#header-blog .nav-mobile #check:checked ~ .menu a {
  opacity: 1;
  transform: translatex(0px);
}
#header-blog .nav-mobile #check:checked ~ .fondo {
  background: #101010;
  opacity: 0.6;
  height: 100vh;
  transition: 1s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:nth-child(1) {
  transition-delay: 0.25s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:nth-child(2) {
  transition-delay: 0.5s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:nth-child(3) {
  transition-delay: 0.75s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:nth-child(4) {
  transition-delay: 1s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:nth-child(5) {
  transition-delay: 1.25s;
}
#header-blog .nav-mobile #check:checked ~ .menu a:nth-child(6) {
  transition-delay: 1.5s;
}
#header-blog .nav-mobile #check:checked ~ .button .top {
  top: 22px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#header-blog .nav-mobile #check:checked ~ .button .mid {
  opacity: 0;
  transition: 0.5s;
}
#header-blog .nav-mobile #check:checked ~ .button .bot {
  top: 22px;
  transform: rotate(-45deg);
  transition: 0.5s;
}

#header-home {
  width: 100vw;
  height: 95vh;
}
@media screen and (max-width: 800px) {
  #header-home {
    height: 35vh;
  }
}
#header-home .nav-web {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 100%;
  padding-top: 23.45vh;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 800px) {
  #header-home .nav-web {
    display: none;
  }
}
#header-home .nav-web::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95vh;
  background-color: rgba(65, 88, 78, 0.8);
  /* Cor da camada com transparência (aqui é 50% de opacidade) */
}
#header-home .nav-web ul {
  width: 70.625vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 6.8vw 0 2.5vw;
  height: fit-content;
  z-index: 2;
}
#header-home .nav-web ul li {
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
#header-home .nav-web ul li a {
  cursor: pointer;
}
#header-home .nav-web .img-wrapper {
  width: 92.625vw;
  position: absolute;
  left: 0;
  margin-top: -30px;
}
#header-home .nav-web .img-wrapper img {
  width: 100%;
}
#header-home .nav-mobile {
  display: none;
  overflow-x: hidden;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  width: 100vw;
  height: 35vh;
}
#header-home .nav-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background-color: rgba(65, 88, 78, 0.8);
  /* Cor da camada com transparência (aqui é 50% de opacidade) */
}
@media screen and (max-width: 800px) {
  #header-home .nav-mobile {
    display: flex;
  }
}
#header-home .nav-mobile img {
  position: absolute;
  top: 27px;
  left: 22px;
  width: 35vw;
}
#header-home .nav-mobile .button,
#header-home .nav-mobile .menu {
  position: absolute;
  transition: all 0.5s ease-in-out;
}
#header-home .nav-mobile #check {
  display: none;
}
#header-home .nav-mobile .button {
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background: #41584E;
  cursor: pointer;
}
#header-home .nav-mobile .button .top {
  position: absolute;
  top: 14px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-home .nav-mobile .button .mid {
  position: absolute;
  top: 22px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.7s;
}
#header-home .nav-mobile .button .bot {
  position: absolute;
  top: 30px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-home .nav-mobile .menu {
  margin: auto;
  top: 50px;
  right: 0;
  width: 50vw;
  background: #41584E;
  opacity: 0;
}
#header-home .nav-mobile .menu a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 15px;
  opacity: 0;
  transform: translatex(20px);
  transition: 1s;
}
#header-home .nav-mobile #check:checked ~ .menu a:hover {
  background: #505050;
  transition-delay: 0s;
  transition-duration: 0s;
  transition: 0s;
}
#header-home .nav-mobile #check:checked ~ .menu {
  opacity: 1;
  transform: translatex(0);
}
#header-home .nav-mobile #check:checked ~ .menu a {
  opacity: 1;
  transform: translatex(0px);
}
#header-home .nav-mobile #check:checked ~ .fondo {
  background: #101010;
  opacity: 0.6;
  height: 100vh;
  transition: 1s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(1) {
  transition-delay: 0.25s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(2) {
  transition-delay: 0.5s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(3) {
  transition-delay: 0.75s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(4) {
  transition-delay: 1s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(5) {
  transition-delay: 1.25s;
}
#header-home .nav-mobile #check:checked ~ .menu a:nth-child(6) {
  transition-delay: 1.5s;
}
#header-home .nav-mobile #check:checked ~ .button .top {
  top: 22px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#header-home .nav-mobile #check:checked ~ .button .mid {
  opacity: 0;
  transition: 0.5s;
}
#header-home .nav-mobile #check:checked ~ .button .bot {
  top: 22px;
  transform: rotate(-45deg);
  transition: 0.5s;
}

#header-colaborador .nav-web {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 7vw;
}
@media screen and (max-width: 800px) {
  #header-colaborador .nav-web {
    display: none;
  }
}
#header-colaborador .nav-web ul {
  width: 60vw;
  min-width: 650px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 6.8vw 0 2.5vw;
  height: fit-content;
  z-index: 2;
}
@media screen and (min-width: 605px) and (max-width: 835px) {
  #header-colaborador .nav-web ul {
    width: 45vw;
    min-width: none;
  }
}
#header-colaborador .nav-web ul li {
  color: #313D37;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (min-width: 605px) and (max-width: 835px) {
  #header-colaborador .nav-web ul li {
    font-size: 16px;
  }
}
#header-colaborador .nav-web ul li a {
  cursor: pointer;
}
#header-colaborador .nav-web .img-wrapper {
  width: 16.18vw;
}
@media screen and (min-width: 605px) and (max-width: 835px) {
  #header-colaborador .nav-web .img-wrapper {
    width: 25vw;
  }
}
#header-colaborador .nav-web .img-wrapper a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#header-colaborador .nav-web .img-wrapper a p {
  font-size: 14px;
  line-height: 22px;
  color: #AA9B78;
}
#header-colaborador .nav-web .img-wrapper a p b {
  font-size: 18px;
  font-weight: 100;
  color: #41584E;
}
#header-colaborador .nav-web .img-wrapper img {
  padding-right: 4px;
}
#header-colaborador .nav-mobile {
  display: none;
  overflow-x: hidden;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  width: 100vw;
  height: 15vh;
  position: relative;
}
@media screen and (max-width: 800px) {
  #header-colaborador .nav-mobile {
    height: 10vh;
    display: flex;
  }
}
#header-colaborador .nav-mobile .logo-mobile {
  width: 35vw;
  position: absolute;
  left: calc(50% - 17.5vw);
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#header-colaborador .nav-mobile .logo-mobile p {
  font-size: 14px;
  line-height: 22px;
  color: #AA9B78;
}
#header-colaborador .nav-mobile .logo-mobile p b {
  font-size: 18px;
  font-weight: 100;
  color: #41584E;
}
#header-colaborador .nav-mobile .logo-mobile img {
  padding-right: 4px;
}
#header-colaborador .nav-mobile .button,
#header-colaborador .nav-mobile .menu {
  position: absolute;
  transition: all 0.5s ease-in-out;
}
#header-colaborador .nav-mobile #check {
  display: none;
}
#header-colaborador .nav-mobile .button {
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background: #41584E;
  cursor: pointer;
}
#header-colaborador .nav-mobile .button .top {
  position: absolute;
  top: 14px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-colaborador .nav-mobile .button .mid {
  position: absolute;
  top: 22px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.7s;
}
#header-colaborador .nav-mobile .button .bot {
  position: absolute;
  top: 30px;
  left: 10px;
  content: "";
  width: 30px;
  height: 3.5px;
  background: white;
  transition: 0.5s;
}
#header-colaborador .nav-mobile .menu {
  margin: auto;
  top: 50px;
  right: 0;
  width: 50vw;
  background: #41584E;
  opacity: 0;
}
#header-colaborador .nav-mobile .menu a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 15px;
  opacity: 0;
  transform: translatex(20px);
  transition: 1s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:hover {
  background: #505050;
  transition-delay: 0s;
  transition-duration: 0s;
  transition: 0s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu {
  opacity: 1;
  transform: translatex(0);
}
#header-colaborador .nav-mobile #check:checked ~ .menu a {
  opacity: 1;
  transform: translatex(0px);
}
#header-colaborador .nav-mobile #check:checked ~ .fondo {
  background: #101010;
  opacity: 0.6;
  height: 100vh;
  transition: 1s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:nth-child(1) {
  transition-delay: 0.25s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:nth-child(2) {
  transition-delay: 0.5s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:nth-child(3) {
  transition-delay: 0.75s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:nth-child(4) {
  transition-delay: 1s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:nth-child(5) {
  transition-delay: 1.25s;
}
#header-colaborador .nav-mobile #check:checked ~ .menu a:nth-child(6) {
  transition-delay: 1.5s;
}
#header-colaborador .nav-mobile #check:checked ~ .button .top {
  top: 22px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#header-colaborador .nav-mobile #check:checked ~ .button .mid {
  opacity: 0;
  transition: 0.5s;
}
#header-colaborador .nav-mobile #check:checked ~ .button .bot {
  top: 22px;
  transform: rotate(-45deg);
  transition: 0.5s;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #41584E;
  padding: 75px 7vw 55px 4.3vw;
  position: relative;
}
@media screen and (max-width: 800px) {
  footer {
    padding: 30px 14px 60px 14px;
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  footer .left-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .left-footer .logo-footer {
  padding-bottom: 37px;
}
footer .left-footer a {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  padding: 16px 0;
}
footer .left-footer a img {
  width: 18px;
  margin-right: 8px;
}
@media screen and (max-width: 800px) {
  footer .left-footer a {
    color: white;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
  }
  footer .left-footer a img {
    width: 20px;
    margin-right: 8px;
  }
}
footer .left-footer .social {
  padding-top: 37px;
  display: flex;
  flex-direction: row;
}
footer .left-footer .social img {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 800px) {
  footer .left-footer .social a {
    width: 70px;
    height: 70px;
  }
  footer .left-footer .social a img {
    width: 70px;
    height: 70px;
    margin-right: 0;
  }
}
footer .right-footer {
  width: 29.5vw;
}
@media screen and (max-width: 800px) {
  footer .right-footer {
    width: 100%;
    margin-top: 30px;
  }
}
footer .right-footer span {
  padding-bottom: 10px;
  color: white;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
footer .right-footer .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
footer .right-footer .wpcf7-form p {
  width: 100%;
}
footer .right-footer .wpcf7-form p span input {
  height: 32px;
  width: 29.5vw;
}
@media screen and (max-width: 800px) {
  footer .right-footer .wpcf7-form p span input {
    width: 100%;
  }
}
footer .right-footer .wpcf7-form p span .wpcf7-textarea {
  height: 120px;
  width: 29.5vw;
}
@media screen and (max-width: 800px) {
  footer .right-footer .wpcf7-form p span .wpcf7-textarea {
    width: 100%;
  }
}
footer .right-footer .wpcf7-form p .wpcf7-submit {
  width: 162px;
  height: 39px;
  margin-left: calc(100% - 162px);
}
@media screen and (max-width: 800px) {
  footer .right-footer .wpcf7-form p .wpcf7-submit {
    margin-left: 0;
  }
}
footer .creditos {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: #F4F4F4;
}
footer .creditos a {
  color: #41584E;
}

#footer-blog {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #41584E;
  padding: 11px 8.33vw 33px 8.33vw;
  position: relative;
}
@media screen and (max-width: 800px) {
  #footer-blog {
    padding: 30px 14px 60px 14px;
    flex-direction: column-reverse;
  }
}
#footer-blog .left-footer {
  display: flex;
  align-items: center;
  width: 33%;
}
@media screen and (max-width: 800px) {
  #footer-blog .left-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
}
#footer-blog .left-footer a {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white;
  text-align: left;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}
@media screen and (max-width: 800px) {
  #footer-blog .left-footer a {
    color: white;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
  }
  #footer-blog .left-footer a img {
    width: 20px;
    margin-right: 4px;
  }
}
#footer-blog .central-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  #footer-blog .central-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
#footer-blog .right-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 33%;
}
@media screen and (max-width: 800px) {
  #footer-blog .right-footer {
    width: 90%;
    margin: 0 auto;
  }
}
#footer-blog .right-footer span {
  padding-bottom: 10px;
  color: white;
  text-align: left;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}
#footer-blog .right-footer .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
#footer-blog .right-footer .wpcf7-form p {
  width: 100%;
}
#footer-blog .right-footer .wpcf7-form p span input {
  height: 32px;
  width: 29.5vw;
}
@media screen and (max-width: 800px) {
  #footer-blog .right-footer .wpcf7-form p span input {
    width: 100%;
  }
}
#footer-blog .right-footer .wpcf7-form p span .wpcf7-textarea {
  height: 120px;
  width: 29.5vw;
}
@media screen and (max-width: 800px) {
  #footer-blog .right-footer .wpcf7-form p span .wpcf7-textarea {
    width: 100%;
  }
}
#footer-blog .right-footer .wpcf7-form p .wpcf7-submit {
  width: 162px;
  height: 39px;
  margin-left: calc(100% - 162px);
}
@media screen and (max-width: 800px) {
  #footer-blog .right-footer .wpcf7-form p .wpcf7-submit {
    margin-left: 0;
  }
}
#footer-blog .creditos {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: #F4F4F4;
}
#footer-blog .creditos a {
  color: #41584E;
}

#home {
  width: 100vw;
}
#home .first-content {
  width: 100%;
  background: #F4F4F4;
  display: flex;
  flex-direction: row;
  padding: 1.73vw 1.73vw 2vw 3.47vw;
}
@media screen and (max-width: 800px) {
  #home .first-content {
    flex-direction: column;
    padding: 20px 26px;
    width: 100%;
  }
}
#home .first-content .column-left {
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 30vw;
}
@media screen and (max-width: 800px) {
  #home .first-content .column-left {
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
}
#home .first-content .column-left h1 {
  color: #41584E;
  text-align: left;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
@media screen and (max-width: 800px) {
  #home .first-content .column-left h1 {
    margin: 0 auto;
  }
}
#home .first-content .column-left .green-line {
  height: 3px;
  width: 11.7vw;
  background-color: #41584E;
  margin-top: 8px;
}
@media screen and (max-width: 800px) {
  #home .first-content .column-left .green-line {
    margin: 0 auto;
    width: 210px;
    margin-top: 0;
    margin-bottom: 12px;
  }
}
#home .first-content .column-center {
  width: 30vw;
  margin-left: 1vw;
  margin-right: 3.2vw;
}
@media screen and (max-width: 800px) {
  #home .first-content .column-center {
    width: 100%;
    margin-bottom: 12px;
  }
}
#home .first-content .column-center p {
  color: #41584E;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#home .first-content .column-right {
  width: 30vw;
}
@media screen and (max-width: 800px) {
  #home .first-content .column-right {
    width: 100%;
    margin-bottom: 12px;
  }
}
#home .first-content .column-right p {
  color: #41584E;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#home .servicos {
  background-color: #41584E;
  padding: 30px 0 65px 0;
}
#home .servicos h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
#home .servicos .grid-servicos .repeater-loop-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 0 13vw;
}
@media screen and (max-width: 800px) {
  #home .servicos .grid-servicos .repeater-loop-desktop {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}
#home .servicos .grid-servicos .repeater-loop-desktop li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home .servicos .grid-servicos .repeater-loop-desktop li .img-wrapper {
  max-width: 120px;
  margin: 0 auto;
}
#home .servicos .grid-servicos .repeater-loop-desktop li .img-wrapper img {
  width: 100%;
}
#home .servicos .grid-servicos .repeater-loop-desktop li h2 {
  padding: 10px 0 20px 0;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
#home .servicos .grid-servicos .repeater-loop-desktop li p {
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
#home .fluxo {
  background-color: #F4F4F4;
  display: flex;
  flex-direction: column;
  padding: 46px 10vw 40px 10vw;
}
@media screen and (max-width: 991px) {
  #home .fluxo {
    overflow-y: hidden !important;
    height: fit-content;
  }
}
#home .fluxo ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
#home .fluxo h1 {
  padding-bottom: 50px;
  color: #41584E;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
#home .fluxo h1 ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
#home .fluxo h1 b {
  font-weight: 700;
}
#home .fluxo ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  #home .fluxo ul {
    overflow-y: hidden !important;
    height: fit-content;
  }
}
#home .fluxo ul ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
@media screen and (max-width: 800px) {
  #home .fluxo ul {
    grid-template-columns: 1fr;
  }
}
#home .fluxo ul li {
  display: flex;
  flex-direction: column;
  align-content: center;
}
#home .fluxo ul li ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
#home .fluxo ul li:nth-child(1) {
  padding-top: 60px;
}
@media screen and (max-width: 800px) {
  #home .fluxo ul li:nth-child(1) {
    padding-top: 0;
  }
}
#home .fluxo ul li:nth-child(3) {
  padding-top: 60px;
}
@media screen and (max-width: 800px) {
  #home .fluxo ul li:nth-child(3) {
    padding-top: 0;
  }
}
#home .fluxo ul li .number-sphere {
  margin: 0 auto;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9;
  border-radius: 60px;
  margin-bottom: 12px;
  overflow: hidden;
}
#home .fluxo ul li .number-sphere ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
@media screen and (max-width: 800px) {
  #home .fluxo ul li .number-sphere {
    margin-bottom: -20px;
    z-index: 1000;
  }
}
#home .fluxo ul li .number-sphere h2 {
  overflow: hidden;
  color: #41584E;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
#home .fluxo ul li .column1 {
  background-color: #41584E;
}
#home .fluxo ul li .column2 {
  background-color: #AA9B78;
}
#home .fluxo ul li .column3 {
  background-color: #41584E;
}
#home .fluxo ul li .column4 {
  background-color: #AA9B78;
}
#home .fluxo ul li .column1 ::-webkit-scrollbar,
#home .fluxo ul li .column2 ::-webkit-scrollbar,
#home .fluxo ul li .column3 ::-webkit-scrollbar,
#home .fluxo ul li .column4 ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
#home .fluxo ul li .column1 h3,
#home .fluxo ul li .column2 h3,
#home .fluxo ul li .column3 h3,
#home .fluxo ul li .column4 h3 {
  padding: 16px;
  color: #FFFFFF;
  text-align: left;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  background-color: transparent;
}
@media screen and (max-width: 800px) {
  #home .fluxo ul li .column1 h3,
  #home .fluxo ul li .column2 h3,
  #home .fluxo ul li .column3 h3,
  #home .fluxo ul li .column4 h3 {
    font-size: 20px;
    padding-bottom: 4px;
  }
}
#home .fluxo ul li .column1 p,
#home .fluxo ul li .column2 p,
#home .fluxo ul li .column3 p,
#home .fluxo ul li .column4 p {
  padding: 16px;
  border-top: 3px solid #FFFFFF;
  color: #FFFFFF;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
#home .fluxo ul li .column1 p ::-webkit-scrollbar,
#home .fluxo ul li .column2 p ::-webkit-scrollbar,
#home .fluxo ul li .column3 p ::-webkit-scrollbar,
#home .fluxo ul li .column4 p ::-webkit-scrollbar {
  width: 5px;
  /* Ajuste o tamanho da barra conforme necessário */
}
#home .quem-somos {
  background-color: #41584E;
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home .quem-somos h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  padding: 56px 0;
}
#home .quem-somos .colaborador {
  display: flex;
  flex-direction: row;
  padding-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador {
    flex-direction: column-reverse;
  }
}
#home .quem-somos .colaborador:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador:nth-child(odd) {
    flex-direction: column-reverse;
    margin-right: 16px;
    margin-left: -16px;
  }
}
#home .quem-somos .colaborador:nth-child(odd) .foto-texto {
  flex-direction: row-reverse;
  padding-right: 4.3vw;
  padding-left: 0 !important;
}
#home .quem-somos .colaborador:nth-child(odd) ul {
  align-items: flex-end !important;
  padding-right: 26px;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador:nth-child(odd) ul li #titulo-matheus {
    text-align: right;
  }
}
#home .quem-somos .colaborador .foto-texto {
  display: flex;
  background-color: #6E5B3E;
  flex-direction: row;
  width: 53.8vw;
  padding-left: 4.3vw;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador .foto-texto {
    width: calc(100% - 16px);
    margin-left: 16px;
    padding-left: 0;
    padding-right: 0 !important;
  }
}
#home .quem-somos .colaborador .foto-texto .text-wrapper {
  display: flex;
  flex-direction: column;
}
#home .quem-somos .colaborador .foto-texto .text-wrapper .colaborador-mobile-link {
  display: none !important;
  color: white;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador .foto-texto .text-wrapper .colaborador-mobile-link {
    display: flex !important;
    padding-left: 13px;
  }
  #home .quem-somos .colaborador .foto-texto .text-wrapper .colaborador-mobile-link img {
    width: 20px;
    height: 20px;
  }
}
#home .quem-somos .colaborador .foto-texto .image-wrapper {
  width: 29.1vw;
  height: 29.1vw;
  object-fit: cover;
  background-size: cover;
  background-position: flex;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador .foto-texto .image-wrapper {
    width: 41.6vw;
    height: 41.6vw;
  }
}
#home .quem-somos .colaborador .foto-texto p {
  background-color: #6E5B3E;
  width: 19vw;
  padding: 41px 0.6vw;
  color: #FFFFFF;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador .foto-texto p {
    width: 58.4vw;
    padding: 13px;
    color: #FFFFFF;
    text-align: left;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
  }
}
#home .quem-somos .colaborador ul {
  width: 46.2vw;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#home .quem-somos .colaborador ul .nome h2 {
  padding-top: 6px;
  padding-bottom: 12px;
  color: #FFFFFF;
  text-align: left;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador ul .nome h2 {
    padding-bottom: 7px;
  }
}
#home .quem-somos .colaborador ul .telefone {
  display: flex;
  flex-direction: row;
}
#home .quem-somos .colaborador ul .telefone img {
  width: 46px;
  height: 46px;
}
#home .quem-somos .colaborador ul .telefone h3 {
  color: #FFFFFF;
  text-align: left;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  padding-left: 6px;
  padding-top: 4px;
  overflow: hidden;
}
#home .quem-somos .colaborador ul .email {
  display: flex;
  flex-direction: row;
  padding: 16px 0;
  cursor: pointer;
}
#home .quem-somos .colaborador ul .email:hover {
  opacity: 0.7;
}
#home .quem-somos .colaborador ul .email img {
  width: 46px;
  height: 46px;
}
#home .quem-somos .colaborador ul .email a {
  margin-left: 12px;
  width: 180px;
  border-radius: 25px;
  border: 2px #FFFFFF solid;
  display: flex;
  flex-direction: row;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}
#home .quem-somos .colaborador ul .email a p {
  padding-left: 18px;
}
#home .quem-somos .colaborador ul .email a img {
  width: 35px;
  height: 35px;
  padding: 10px 9px;
  margin-left: 12px;
  margin-right: 4px;
  border-radius: 17.5px;
  background-color: #F4F4F4;
}
#home .quem-somos .colaborador ul .curriculo {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
#home .quem-somos .colaborador ul .curriculo:hover {
  opacity: 0.7;
}
#home .quem-somos .colaborador ul .curriculo a {
  color: #FFFFFF;
  text-align: left;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  display: flex;
  align-items: center;
}
#home .quem-somos .colaborador ul .curriculo a img {
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 800px) {
  #home .quem-somos .colaborador ul {
    width: 100%;
    padding: 0 16px;
  }
  #home .quem-somos .colaborador ul .telefone,
  #home .quem-somos .colaborador ul .email,
  #home .quem-somos .colaborador ul .curriculo {
    display: none;
  }
  #home .quem-somos .colaborador ul .nome {
    width: 100%;
  }
  #home .quem-somos .colaborador ul .nome h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
#home .quem-somos #btn-mais-colaboradores {
  background-color: #8A7B5A;
  color: white;
  padding: 22px 50px;
  font-size: 24px;
  font-weight: 700;
  margin: 30px auto;
}
@media screen and (max-width: 800px) {
  #home .quem-somos #btn-mais-colaboradores {
    width: 200px;
    height: 34.5px;
    font-size: 12px;
    padding: 11px 25px;
  }
}
#home .blog {
  background-color: #F4F4F4;
  padding: 62px 6vw 45px 6vw;
  margin: 0 auto;
}
#home .blog h1 {
  color: #41584E;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
}
#home .blog #post-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.8vw;
  padding: 42px 0;
}
@media screen and (max-width: 800px) {
  #home .blog #post-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 991px) {
  #home .blog #post-container a {
    padding-top: 30px;
  }
}
#home .blog #post-container a .date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#home .blog #post-container a .date img {
  margin-right: 12px;
}
@media screen and (max-width: 800px) {
  #home .blog #post-container a .date img {
    width: 18px;
    height: 18px;
    margin-right: 4px;
  }
}
#home .blog #post-container a .date p {
  color: #41584E;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
@media screen and (max-width: 800px) {
  #home .blog #post-container a .date p {
    color: #41584E;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
}
#home .blog #post-container a h2 {
  padding: 12px 0;
  color: #41584E;
  text-align: left;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
@media screen and (max-width: 800px) {
  #home .blog #post-container a h2 {
    color: #41584E;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
  }
}
#home .blog #post-container a h3 {
  padding-bottom: 8px;
  color: black;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
#home .blog #post-container a h3 b {
  font-weight: 700;
  margin-right: 4px;
}
@media screen and (max-width: 800px) {
  #home .blog #post-container a h3 {
    color: black;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
  }
}
#home .blog #post-container a p {
  color: black;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
@media screen and (max-width: 991px) {
  #home .blog #post-container a p {
    overflow-y: hidden !important;
    height: fit-content;
  }
}
#home .blog #post-container a p strong {
  font-weight: 700;
  margin-right: 4px;
}
@media screen and (max-width: 800px) {
  #home .blog #post-container a p {
    color: black;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
  }
}
#home .blog .button-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#home .blog .button-wrapper ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
#home .blog .button-wrapper #load-more-posts {
  width: 185px;
  height: 69px;
  background-color: #41584E;
  color: white;
  padding: 22px 50px;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  #home .blog .button-wrapper #load-more-posts {
    width: 92.5px;
    height: 34.5px;
    font-size: 12px;
    padding: 11px 25px;
  }
}

#blog-title {
  background-color: #AA9B78;
  padding: 82.5px 20.8vw;
}
@media screen and (max-width: 800px) {
  #blog-title {
    padding: 18px;
  }
}
#blog-title h2 {
  color: #41584E;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  #blog-title h2 {
    font-size: 18px;
  }
}
#blog-title h1 {
  color: rgba(244, 244, 244, 0.9568627451);
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  #blog-title h1 {
    font-size: 24px;
  }
}

#the-blog-content {
  padding: 45px 10.4vw;
}
#the-blog-content p, #the-blog-content img {
  margin-bottom: 14px;
}
#the-blog-content h3 {
  text-align: center;
  color: #313D37;
}
#the-blog-content p {
  font-size: 18px;
  line-height: 22px;
}

#colaborador #colaborador-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(65, 88, 78, 0.1);
  padding-left: 7vw;
}
@media screen and (max-width: 800px) {
  #colaborador #colaborador-wrapper {
    flex-direction: column;
    padding: 26px 0;
    margin: 0 auto;
  }
}
#colaborador #colaborador-wrapper .image-wrapper {
  width: 26.3vw;
}
@media screen and (max-width: 800px) {
  #colaborador #colaborador-wrapper .image-wrapper {
    width: 90%;
  }
}
#colaborador #colaborador-wrapper .image-wrapper img {
  width: 100%;
  max-height: 427.84px;
  max-width: 427.84px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador {
  width: 63vw;
  height: fit-content;
  min-height: 427.84px;
  padding-left: 32px;
  padding-right: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  #colaborador #colaborador-wrapper .content-wrapper-colaborador {
    width: 90vw;
    padding: 0;
    margin: 0 auto;
  }
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador h1 {
  color: #41584E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  border: none;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador p {
  padding: 16px 5.69vw 0 0;
  color: #41584E;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 24px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .links a {
  margin-bottom: 4px;
  width: 100%;
  color: #41584E;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .links a img {
  padding-right: 8px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .sanfona {
  padding-bottom: 13px;
  width: 100%;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .sanfona li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  border-bottom: 1px solid #41584E;
  position: relative;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .sanfona li p {
  padding: 0;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .sanfona li a .icone-de-mais {
  position: absolute;
  right: 6px;
  bottom: 4px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .overlay.light {
  background: rgba(255, 255, 255, 0.5);
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .overlay:target {
  visibility: visible;
  opacity: 1;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup {
  margin: 120px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #666;
  width: 60vw;
  height: 60vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: relative;
  border-radius: 5px;
}
@media screen and (max-width: 800px) {
  #colaborador #colaborador-wrapper .content-wrapper-colaborador .popup {
    width: 90vw;
    height: 70vh;
  }
}
.light #colaborador #colaborador-wrapper .content-wrapper-colaborador .popup {
  border-color: #aaa;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup h2 {
  margin-top: 0;
  color: #41584E;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup .close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  transition: all 200ms;
  font-size: 32px;
  line-height: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #41584E;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup .close:hover {
  opacity: 1;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup .content {
  overflow: auto;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup .curriculo-lattes {
  bottom: 15px;
  right: 15px;
  position: absolute;
  max-width: 150px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup .curriculo-lattes img {
  width: 100%;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup p {
  margin: 0 0 1em;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador .popup p:last-child {
  margin: 0;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador #baixar-curriculo {
  background-color: #41584E;
  color: white;
  height: auto;
  height: 45px !important;
  border-radius: 5px;
  padding: 12px 20px;
}
#colaborador #colaborador-wrapper .content-wrapper-colaborador #baixar-curriculo img {
  padding-right: 8px;
}
#colaborador .blog {
  background-color: #F4F4F4;
  padding: 62px 6vw 45px 6vw;
  margin: 0 auto;
}
#colaborador .blog h1 {
  color: #41584E;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
#colaborador .blog #post-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.8vw;
  padding: 42px 0;
}
@media screen and (max-width: 800px) {
  #colaborador .blog #post-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 991px) {
  #colaborador .blog #post-container a {
    padding-top: 30px;
  }
}
#colaborador .blog #post-container a .date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#colaborador .blog #post-container a .date img {
  margin-right: 12px;
}
@media screen and (max-width: 800px) {
  #colaborador .blog #post-container a .date img {
    width: 18px;
    height: 18px;
    margin-right: 4px;
  }
}
#colaborador .blog #post-container a .date p {
  color: #41584E;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
@media screen and (max-width: 800px) {
  #colaborador .blog #post-container a .date p {
    color: #41584E;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
}
#colaborador .blog #post-container a h2 {
  padding: 12px 0;
  color: #AA9B78;
  text-align: left;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
@media screen and (max-width: 800px) {
  #colaborador .blog #post-container a h2 {
    color: #AA9B78;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
}
#colaborador .blog #post-container a h3 {
  padding-bottom: 8px;
  color: black;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
#colaborador .blog #post-container a h3 b {
  font-weight: 700;
  margin-right: 4px;
}
@media screen and (max-width: 800px) {
  #colaborador .blog #post-container a h3 {
    color: black;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
  }
}
#colaborador .blog #post-container a p {
  color: black;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
@media screen and (max-width: 991px) {
  #colaborador .blog #post-container a p {
    overflow-y: hidden !important;
    height: fit-content;
  }
}
#colaborador .blog #post-container a p strong {
  font-weight: 700;
  margin-right: 4px;
}
@media screen and (max-width: 800px) {
  #colaborador .blog #post-container a p {
    color: black;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
  }
}
#colaborador .blog .button-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#colaborador .blog .button-wrapper ::-webkit-scrollbar {
  width: 0;
  /* Ajuste o tamanho da barra conforme necessário */
}
#colaborador .blog .button-wrapper #load-more-posts {
  width: 185px;
  height: 69px;
  background-color: #41584E;
  color: white;
  padding: 22px 50px;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  #colaborador .blog .button-wrapper #load-more-posts {
    width: 92.5px;
    height: 34.5px;
    font-size: 12px;
    padding: 11px 25px;
  }
}

#colaboradores {
  background-color: #41584E;
  margin-bottom: -1px;
}
#colaboradores .colaboradores-wrapper {
  background-color: white;
  margin: 7.5vw auto 0 auto;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80vw;
}
@media screen and (max-width: 800px) {
  #colaboradores .colaboradores-wrapper {
    max-width: 90vw;
  }
}
#colaboradores .colaboradores-wrapper .colaboradores-lista h2 {
  text-align: center;
  color: #41584E;
  font-size: 36px;
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 15px;
}
@media screen and (max-width: 800px) {
  #colaboradores .colaboradores-wrapper .colaboradores-lista li {
    flex-direction: column;
    padding-top: 15px;
  }
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li .img-wrapper {
  width: 13.8vw;
  height: 13.8vw;
  min-width: 13.8vw;
  min-height: 13.8vw;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  #colaboradores .colaboradores-wrapper .colaboradores-lista li .img-wrapper {
    min-width: 80vw;
    min-height: 80vw;
  }
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li .txt-wrapper {
  padding-left: 20px;
  height: fit-content;
}
@media screen and (max-width: 800px) {
  #colaboradores .colaboradores-wrapper .colaboradores-lista li .txt-wrapper {
    padding-left: 0;
  }
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li .txt-wrapper h3 {
  font-size: 28px;
  color: #41584E;
  font-weight: 900;
  padding-bottom: 8px;
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li .txt-wrapper p {
  padding-bottom: 18px;
  color: #41584E;
  font-size: 18px;
  line-height: 25px;
}
#colaboradores .colaboradores-wrapper .colaboradores-lista li .txt-wrapper .btn-colaboradores {
  display: inline-block;
  background-color: #41584E;
  padding: 6px;
  color: white;
}

* {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.normal-sortables:first-child {
  display: none;
}

/*# sourceMappingURL=main.css.map */
