@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


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;
}

@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;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block; 
  margin-left: 20px; 
}

a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}



.sectionUm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 585px;
  background-image: url(assets/img/home/hero-390w.webp);
  background-size: cover;
  background-position: center;
}

.texto {
  position: relative;
  top: 80%;     
  left: 6%;
  transform: translate(0, -50%);
  color: white;
  text-align: left;
}

.containerVerde {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #2C473E;
  width: 320px;
  border: 5px solid #fff;
  border-radius: 999px;
  height: 48px;
  cursor: pointer;
}

.containericone {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  position: relative;
  left: -5%;
}

.containericoneVerde {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 4px solid #2C473E;
  width: 40px;
  height: 40px;
  padding: 18px;
}

.containerVerde p {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}


h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.detalheh2 {
  color: #B0D182;
}

.pargrafoUm  {
  font-size: 16px;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}







.info-cards {
  display: flex;
  position: relative;
  left: auto;
  transform: translate(0, -50%);
  gap: 10px;
  justify-content: center;
}

.card {
  background: linear-gradient(180deg, #F5F3E6 0%, #FFFFFF 100%);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.card h3 {
  font-size: 1.8rem;
  color: #2c473e;
  margin-bottom: 5px;
}

.card p {
  font-size: 1rem;
  color:#1E2A26CC;
  line-height: 1.4;
}


.textoVerde {
  color: #2C473E;
  margin: 72px auto 68px 40px;
  text-align: left;
}

.textoVerde h3 {
  font-size: 40px;
  font-weight: 600;
}

.textoVerde p {
  font-size: 24px;
  color: #2C473E;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}




.arvore {
  display: grid;
  grid-template-columns:  1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 60px 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #0000001A;
}

.arvore .texto2 {
  display: grid;
  gap: 30px;
  text-align: left;
  align-self: center;
  color: #2C473E;
}

.arvore .texto2 h3 {
  font-size: 50px;
  font-weight: 600;
}

.arvore .texto2 hr {
  width: 86px;
  height: 5px;
  background-color: #2C473E;
  border-radius: 4px;
}

.arvore .texto2 p {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.arvore .texto2 .btn1 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  padding-right: 10px;
  background: linear-gradient(90deg, #2C473ECC 80%, #6B813A);
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  width: 200px;
  height: 60px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 4px #FFFF solid;
  box-shadow: 3px 6px 8px 0 #00000087;
}

.arvore .texto2 .btn1 .iconPlantar {
  border: 4px #FFFF solid;
  width: 72px;
  height: 60px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 3px 4px 4px 0 #00000087;
  justify-content: flex-start;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("assets/img/home/icon-arvore-white.svg");
  background-size: 26px;
  background-position: center;
  background-repeat: no-repeat;
}

.arvore .imgemArvore img {
max-width: 100%;
height: auto;
display: block;
}

.texto2 h6 {
  color: #2C473E;;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
  background-color: #6A8E4E38;
  width: 136px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.mapaVerde {
  display: grid;
  grid-template-columns:  1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 60px 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #0000001A;
}

.mapaVerde .textoMapa {
  display: grid;
  gap: 30px;
}

.mapaVerde .textoMapa h6 {
  color: #2C473E;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
  background-color: #6A8E4E38;
  width: 136px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapaVerde .textoMapa h3 {
  font-size: 50px;
  font-weight: 600;
  color: #2C473E;
}

.mapaVerde .textoMapa hr {
  width: 86px;
  height: 5px;
  background-color: #2C473E;
  border-radius: 4px;
}

.mapaVerde .textoMapa p {
  font-family: 'Roboto' sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2C473E;
}

.mapaVerde .textoMapa .btn2 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  padding-right: 10px;
  background: linear-gradient(90deg, #2C473ECC 20%, #6B813A);
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  width: 182px;
  height: 50px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  border: 4px #FFFF solid;
  box-shadow: 3px 6px 8px 0 #00000087;
}

.mapaVerde .textoMapa .btn2 .iconExplorar {
  border: 4px #FFFF solid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 3px 4px 4px 0 #00000087;
  justify-content: flex-start;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("assets/img/home/icon-explorar-mapa.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.mapaVerde .imagemMapa img {
  width: 600px;
}

.Quiz {
  display: grid;
  grid-template-columns:  1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 60px 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 119px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #0000001A;
}

.Quiz .quizTexto {
  display: grid;
  gap: 30px;
}

.Quiz .imagemquiz img {
  width: 650px;
}

.Quiz .quizTexto h6 {
    color: #2C473E;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
  background-color: #6A8E4E38;
  width: 136px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Quiz .quizTexto h3 {
  font-size: 50px;
  font-weight: 600;
  color: #2C473E;
}

.Quiz .quizTexto hr {
  width: 86px;
  height: 5px;
  background-color: #2C473E;
  border-radius: 4px;
}

.Quiz .quizTexto p {
  font-family: 'Roboto' sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2C473E;
}

.Quiz .quizTexto .btn3 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  background: linear-gradient(90deg, #2C473ECC 20%, #6B813A);
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  width: 182px;
  height: 54px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  border: 4px #FFFF solid;
  box-shadow: 3px 6px 8px 0 #00000087;
}

.Quiz .quizTexto .btn3 .iconQuiz {
  border: 4px #FFFF solid;
  width: 57px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 3px 4px 4px 0 #00000087;
  justify-content: flex-start;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("assets/img/home/icon-lampada-quiz.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.ctaPainel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(rgba(44, 71, 62, 0.8), rgba(44, 71, 62, 0.8)), url(assets/img/home/cta-bg-painel-impacto-1440w.webp);
  background-position: center;
}

.ctaImagem img {
  display: none;
}

.ctaTexto {
  position: relative;
  top: 2%;           
  left: -10%;
  margin: 0 auto;
  color: white;
  max-width: 420px;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.45);
}

.ctaTexto h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.ctaTexto p {
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'Roboto', sans-serif;
  opacity: 0.95;
}

.ctaPainel .ctaTexto .btn4 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  background: linear-gradient(90deg, #2C473ECC 20%, #6B813A);
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  width: 187px;
  height: 50px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  border: 4px #FFFF solid;
  box-shadow: 3px 6px 8px 0 #00000087;
}

.ctaPainel .ctaTexto .btn4 .iconPainel {
  border: 4px #FFFF solid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 3px 4px 4px 0 #00000087;
  justify-content: flex-start;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(./assets/img/home/icon-ver-painel.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

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;
}

.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: 769px) {
.contentFooter, .menuFooter {
  flex-direction: column;
}
}

@media (max-width: 800px) {
.Quiz img {
  width: 600px;
}
}

@media (max-width: 834px) {
.Quiz img {
  width: 600px;
}
}

@media (max-width: 428px) {
.sectionUm {
  width: 100%;
}

.sectionUm .texto {
  padding: 0;
}

.sectionUm .texto h2 {
  font-size: 32px;
}

.sectionUm .texto p {
  font-size: 11px;
  padding: 0;
}

.info-cards {
  position: absolute;
  justify-content: center;
  top: 100%;
  right: 50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.textoVerde {
  margin: 400px auto 48px 20px;
}

.textoVerde h3 {
  font-size: 21px;
}

.textoVerde p {
  font-size: 16px;
}

.arvore {
  display: grid;
  grid-template-columns:  1fr;
  justify-items: center; 
  align-items: center;
  text-align: center;
  width: 90%;
}

.arvore .texto2 {
  display: grid;
  gap: 10px;
  text-align: center;
  align-self: center;
  justify-items: center;
}

.arvore .texto2 h3 {
  font-size: 19px;
  flex-wrap: wrap;
}

.arvore .texto2 p {
  font-size: 16px;
}

.mapaVerde {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
}

.mapaVerde .textoMapa {
  order: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mapaVerde .imagemMapa {
  order: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mapaVerde .imagemMapa img {
  width: 400px;
}

.mapaVerde .textoMapa h3 {
  font-size: 20px;
  flex-wrap: wrap;
}

.mapaVerde .textoMapa p {
  font-size: 13px;
  flex-wrap: wrap;
}

.Quiz {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
}

.Quiz .quizTexto {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.Quiz .imagemquiz img {
  width: 350px;
}

.Quiz .quizTexto h3 {
  font-size: 19px;
  
}

.Quiz .quizTexto p {
  font-size: 13px;
  flex-wrap: wrap;
}

.ctaPainel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(rgba(44, 71, 62, 0.8), rgba(44, 71, 62, 0.8)), url(./cta-bg-painel-impacto-1440w.webp);
  background-size: cover;
  background-position: center;
}

.ctaImagem {
  display: none;
}

.ctaTexto {
  position: static;
  transform: none;
  left: 0;
  top: 0;
  margin: 0 auto;
  text-align: center;
}

.ctaTexto h3 {
  font-size: 19px;
}

.ctaTexto p {
  font-size: 16px;
}
}

@media (max-width: 360px) {
.info-cards {
  position: absolute;
  justify-content: center;
  left: auto;
  top: 110%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mapaVerde img {
  width: 300px;
}
}

@media (max-width: 320px) {

.sectionUm {
  width: 100%;
}

.sectionUm .texto {
  padding: 0;
}

.sectionUm .texto h2 {
  font-size: 22px;
}

.sectionUm .texto p {
  font-size: 10px;
  padding: 0;
}

.containerVerde {
  width: 280px;
  height: 38px;
}

.info-cards {
  position: absolute;
  justify-content: center;
  top: 145%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.textoVerde {
  margin: 400px auto 48px 20px;
}

.textoVerde h3 {
  font-size: 20px;
}

.textoVerde p {
  font-size: 15px;
}
}

@media (max-width: 884px) {

.info-cards {
  display: flex;
  position: absolute;
  right: 50px;
  transform: translate(0, -50%);
  gap: 10px;
  justify-content: center;
}
}

@media (max-width: 800px) {

.info-cards {
  display: flex;
  position: absolute;
  left: 1%;
  transform: translate(0, -50%);
  gap: 10px;
  justify-content: center;
}
}

@media (max-width: 884px) {

.info-cards {
  display: flex;
  position: absolute;
  left: auto;
  transform: translate(0, -50%);
  gap: 10px;
  justify-content: center;
}
}

@media (max-width: 680px) {
.card p {
  font-size: 14px;
  color:#1E2A26CC;
  line-height: 1.4;
}
}

@media (max-width: 590px) {
.card p {
  font-size: 12px;
  color:#1E2A26CC;
  line-height: 1.4;
}

.card h3 {
  font-size: 16px;
}
}

@media (max-width: 660px) {
.card p {
  font-size: 12px;
  color:#1E2A26CC;
  line-height: 1.4;
}

.card h3 {
  font-size: 16px;
}
}

@media (max-width: 710px) {
  
.card p {
  font-size: 12px;
  color:#1E2A26CC;
  line-height: 1.4;
}

.card h3 {
  font-size: 16px;
}
}