@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
/*========== ESTILIZAÇÃO DA BARRA DE SCROLL ==========*/
body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: #a4d65e;
}

body::-webkit-scrollbar-thumb {
  background-color: #3a4339;
  border-radius: 20px;
  border: 3px solid #a4d65e;
}

::-moz-selection {
  color: #fff;
  background: #558d08;
}

::selection {
  color: #fff;
  background: #558d08;
}

/*=========== RESET ==========*/
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-display: swap;
  font-weight: 400;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1000px;
  margin-inline: auto;
}

body {
  background-color: #6e6259;
}

a {
  font-size: 1rem;
}

.hide-sm {
  display: none;
}

@media (min-width: 768px) {
  .hide-lg {
    display: none;
  }
  .hide-sm {
    display: block;
  }
}
/*========== ESTILIZAÇÃO DA BARRA DE SCROLL ==========*/
body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: #a4d65e;
}

body::-webkit-scrollbar-thumb {
  background-color: #3a4339;
  border-radius: 20px;
  border: 3px solid #a4d65e;
}

.hamburger {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 20px;
  border: 0;
  position: relative;
  cursor: pointer;
  display: none;
}
.hamburger::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 15%;
  width: 70%;
  height: 10%;
  border-radius: 20px;
  background-color: #FFF;
  transition: 1s ease;
}
.hamburger::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 35%;
  width: 50%;
  height: 10%;
  border-radius: 20px;
  background-color: #FFF;
  transition: 1s ease;
}

#hamburger:checked ~ label .hamburger::after {
  transform: rotate(225deg);
  width: 70%;
  top: 45%;
  left: 15%;
}

#hamburger:checked ~ label .hamburger::before {
  transform: rotate(-225deg);
  width: 70%;
  top: 45%;
  left: 15%;
}

.strip {
  height: 80px;
  width: 100%;
  background-color: #a4d65e;
  position: absolute;
  top: 250px;
  left: 0;
  z-index: -10;
}

h1,
h2 {
  font-size: 2.5rem;
  color: #a4d65e;
}

.sub {
  color: #fff;
  margin-top: 0;
  margin-bottom: 2rem;
}

p {
  color: #fff;
  max-width: 440px;
  font-size: 18px;
  margin-top: 1rem;
}

.about-us {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.about-us .subtitle {
  color: #a4d65e;
  margin-bottom: -1rem;
  font-weight: 500;
}

.team {
  background-color: #5c5c5c;
  border-top: 5px solid #a4d65e;
  border-bottom: 5px solid #a4d65e;
  padding: 4rem 0;
}
.team p {
  margin-top: 0;
}
.team img {
  padding: 3rem 0;
}
.team .description {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.sustentability {
  padding: 3rem 0;
}
.sustentability .content {
  padding-top: 3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 6rem;
}
.sustentability .content .left img {
  margin-bottom: 4rem;
}
.sustentability .content .right img {
  margin-top: 8rem;
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    padding-inline: 1rem;
  }
  .team {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
  }
  .team .description {
    flex-direction: column;
  }
  .sustentability {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
  }
  .sustentability h2 {
    font-size: 2rem;
  }
  .sustentability .content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .sustentability .content .left {
    margin-bottom: 2rem;
  }
  .sustentability .content .left img {
    margin-bottom: 0rem;
  }
  .sustentability .content .right {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
  }
  .sustentability .content .right img {
    margin-top: 0rem;
  }
}/*# sourceMappingURL=sobre.css.map */