:root {
  --verde-escuro: #2c473e;
  --verde-medio: #6a8e4e;
  --verde-claro: #b0d182;
  --bege: #f5f3e6;
  --azul: #0a6794;
  --branco: #ffffff;

  --fonte-titulo: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --fonte-texto: "Roboto", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-texto);
  color: #1f1f1f;
  background-color: var(--bege);
}

header {
  background: #1c2c27;
}

.containerNavbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  height: 15dvh;
  margin: 0 auto;
  padding: 20px;
}

.containerImgNavbar {
  display: flex;
  align-items: center;
  height: 100%;
}

.containerImgNavbar img {
  width: 50%;
}

.menu {
  height: 100%;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  gap: 30px;
}

.menu li {
  list-style: none;
}

.menu li a,
.menuFooterContent li a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
}

.menu li a:hover,
.menuFooterContent li a:hover {
  color: #c2c2c2;
}

.containerBotaoInstituicoes {
  transition: all 0.4s ease;
}

.containerBotaoInstituicoes a {
  transition: none;
}

a:hover,
.containerBotaoInstituicoes:hover {
  transform: translateY(-3px);
}

.contribuicao {
  cursor: pointer;
}

.botaoContribuicao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 35px;
  border-radius: 40px;
  background: #2c473e;
  background: linear-gradient(90deg,
      rgba(44, 71, 62, 1) 0%,
      rgba(107, 129, 58, 1) 100%);
}

.textoContribuicao {
  font-size: 12px;
  margin-left: 20px;
}

.botaoContribuicaoParteBranca {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 100%;
  background: #fff;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.iconContribuicao {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 8px;
}

.iconContribuicao {
  height: 100%;
}


.mobileMenu {
  display: none;
  cursor: pointer;
}

.line {
  width: 32px;
  height: 4px;
  background: #fff;
  margin: 8px;
  border-radius: 24px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}


.hero-sobre {
  background: linear-gradient(180deg, var(--bege) 0%, var(--verde-claro) 100%);
  padding: 72px 0 80px;
  text-align: center;
}

.hero-content h1 {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.4rem);
  color: var(--verde-escuro);
  margin-bottom: 16px;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.99rem;
  line-height: 1.6;
}


.sobre-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  margin-top: -40px;
}


.card-missao,
.card-visao {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-missao {
  background-color: var(--verde-escuro);
  color: var(--branco);
}

.card-visao {
  background-color: var(--bege);
  color: #2c473e;
}

.card-missao h2,
.card-visao h2 {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 18px;
}

.card-missao p,
.card-visao p {
  font-size: 0.99rem;
  line-height: 1.7;
}


.img-missao,
.img-visao {
  overflow: hidden;
  height: 450px;

}

.img-missao img,
.img-visao img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-missao img {
  object-position: center 35%;
}



@media (max-width: 900px) {

  .sobre-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .card-missao {
    order: 1;
  }

  .img-missao {
    order: 2;
  }

  .img-visao {
    order: 3;
  }

  .card-visao {
    order: 4;
  }
}

.valores {
  padding: 90px 0 120px;
  text-align: center;
  background-color: #ffffff;
}

.valores-titulo {
  font-family: var(--fonte-titulo);
  font-size: 2.3rem;
  color: var(--verde-escuro);
  margin-bottom: 8px;
}

.valores-subtitulo {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 50px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.valor-card {
  background: var(--branco);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(44, 71, 62, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.valor-icone {
  background: var(--verde-claro);
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.valor-icone img {
  width: 28px;
  height: 28px;
}


.valor-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--verde-escuro);
}


.valor-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.85;
}


@media (max-width: 920px) {
  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

.transicao-valores-time {
  width: 100%;
  height: 120px;

  background: linear-gradient(to bottom,
      #ffffff 0%,
      #e7f0e0 60%,
      #dfead8 100%);
}



.time {
  padding: 100px 0 140px;
  text-align: center;

  /* DEGRADÊ suave */
  background: linear-gradient(to bottom,
      #dde9d6 0%,
      #f1f5ec 40%,
      #ffffff 100%);
}

.time-titulo {
  font-family: var(--fonte-titulo);
  font-size: 2.3rem;
  color: var(--verde-escuro);
  margin-bottom: 6px;
}

.time-subtitulo {
  opacity: 0.7;
  font-size: 1rem;
  margin-bottom: 70px;
}

.time-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.time-card {
  width: 230px;
  background: #ffffff;
  border-radius: 24px;
  padding: 70px 20px 30px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.time-foto {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.time-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time-card h3 {
  margin-top: 10px;
  font-family: var(--fonte-titulo);
  font-size: 1.2rem;
  color: var(--verde-escuro);
}

.cargo {
  font-size: 0.9rem;
  color: var(--verde-medio);
  margin-bottom: 8px;
}

.bio {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.45;
}

footer {
  background: #2c473e;
}

.containerFooter {
  display: flex;
  flex-direction: column;
  gap: 86px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 48px;
}

.contentFooter {
  display: flex;
  justify-content: space-between;
  gap: 96px;
  flex-wrap: wrap;
  padding: 24px;
}

.logoFooter {
  display: flex;
  flex-direction: column;
  width: 180px;
  gap: 18px;
}

.menuFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 96px;
}

.menuFooterContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.menuFooterContent .menuFooterContentTitle {
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}

.menuFooterContent li {
  list-style: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.menuFooterContent li:hover {
  color: #c2c2c2;
}

.menuFooterContentSocial {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menuFooterContentSocial .menuFooterContentTitleSocial {
  margin-bottom: 12px;
  list-style: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}

.containerIconsFlex {
  display: flex;
  gap: 16px;
}

.details {
  margin: 24px;
  border-top: 1px solid #c1c7cd;
}

.details p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding-top: 48px;
  padding-bottom: 24px;
  color: #fff;
}

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

  .mobileMenu {
    display: block;
    background: transparent;
    border: none;
  }

  .menu {
    flex-direction: column;
    gap: 48px;
    position: absolute;
    top: 15dvh;
    right: 0;
    width: 295px;
    height: 85dvh;
    background: #1c2c27;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1;
  }

  .menu.active {
    transform: translateX(0);
  }

  .linkHome {
    margin-top: 24px;
  }
}

@media (max-width: 769px) {

    .contentFooter,
    .menuFooter {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
  .time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-card {
    width: 100%;
    max-width: 260px;
  }

  .time-grid .time-card:nth-child(5),
  .time-grid .time-card:nth-child(6),
  .time-grid .time-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .time-grid {
    grid-template-columns: 1fr;
  }

  .time-card {
    max-width: 320px;
  }
}