@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&display=swap');

:root {
  --cor-de-fundo-titulo-principal: #F4D03F;
  --background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
  --verde-claro: rgb(0, 255, 0);
  --branco: white;
  --preto: black;
  --botao-ativo: rgb(0, 88, 0);
  --botao-inativo: rgb(0, 51, 0);
  --texto-fundo: rgb(0, 28, 0);
}

html,
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--preto);
  background: rgb(254, 255, 216);
  background: linear-gradient(90deg, rgba(254, 255, 216, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(254, 255, 216, 1) 100%);
}

header {
  color: black;
  background: rgb(254, 255, 216);
  background: linear-gradient(90deg, rgba(254, 255, 216, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(254, 255, 216, 1) 100%);
  padding: 10px 0px;
}

.caixa {
  position: relative;
  margin: 0 auto;
  flex-wrap: wrap;
}

.caixa h1 {
  font-size: 25px;
  color: rgb(0, 69, 0);
  padding-left: 85px;
  padding-bottom: 29px;
}

.caixa ul {
  padding-right: 85px;
}

nav {
  position: absolute;
  top: 20px;
  right: 0;
}

nav li {
  display: inline;
  margin: 0 0 0 15px;
}

nav a {
  color: black;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}

nav a:hover {
  color: rgb(138, 59, 125);
  text-decoration: underline;
}

h1 {
  opacity: 0;
  /* Inicialmente invisível */
  transform: translateY(-50px);
  /* Posição inicial acima */
  animation: titleEntrance 1s forwards;
  /* Animação de entrada */
}

/* Animação de entrada */
@keyframes titleEntrance {
  to {
    opacity: 1;
    /* Torna o título visível */
    transform: translateY(0);
    /* Retorna à posição original */
  }
}

h2 {
  text-align: center;
  padding: 16px 0;
  font-size: 32px;
  font-family: "Chakra Petch", sans-serif;
}

.titulo-principal {
  font-size: 23px;
  color: white;
  background-color: var(--cor-de-fundo-titulo-principal);
  background-image: var(--background-image);
  flex-wrap: wrap;
  text-align: center;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titulo-principal h1 {
  padding-top: 190px;
  padding-bottom: 30px;
  text-shadow: #FC0 1px 0 10px;
}

.apresentacao h2 {
  text-align: right;
  padding-right: 10px;
  font-size: 22px;
  padding: 1px;
}

.local {
  padding-top: 30px;
  padding-bottom: 100px;
  text-align: center;
  font-size: 14px;
}

.titulo,
.efeito-no-conteudo,
.efeito-na-imagem1,
.efeito-na-imagem2,
.efeito-na-imagem3,
.efeito-na-imagem4,
.esquerda,
.direita {
  visibility: hidden;
}

.Introducao {
  padding: 50px 20px;
  text-align: center;
}

.Introducao li {
  font-size: 20px;
  padding: 15px 80px;
  font-family: "Chakra Petch", sans-serif;
}

.Introducao img {
  max-width: 400px;
  max-height: 350px;
  margin: auto;
}

.texto-verde {
  color: #306034;
}

.gifs {
  display: flex;
  /* Coloca os GIFs na mesma linha */
  justify-content: center;
  /* Alinha os GIFs ao centro */
  gap: 10px;
  /* Espaço entre os GIFs */
}

.gif {
  margin: 0 5px;
  /* Espaço entre os GIFs */
  height: auto;
  /* Mantém a proporção */
}

.R {
  padding: 20px 0;
  text-align: center;
  font-family: "Chakra Petch", sans-serif;
}

.R p {
  font-size: 18px;
}

.botoes {
  text-align: center;
  padding: 10px;
}

.botao {
  font-size: 18px;
  font-family: "Chakra Petch", sans-serif;
  background-image: linear-gradient(to right, #348F50 0%, #56d3a5 51%, #348F50 100%);
  margin: 10px;
  padding: 5px 5px;
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  box-shadow: 0 0 10px #eee;
  border-radius: 10px;
  border: white;
}

.botao:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: black;
  text-decoration: none;
}

.agenda2030 {
  font-family: "Chakra Petch", sans-serif;
  background-color: var(--preto);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0px;
}

.titulo-agenda {
  font-family: "Chakra Petch", sans-serif;
  color: var(--branco);
  text-align: center;
  width: 100%;
  font-size: 32px;
}

.titulo-agenda span {
  color: var(--verde-claro);
}

.botao-agenda {
  font-family: "Chakra Petch", sans-serif;
  background-color: var(--botao-inativo);
  color: var(--branco);
  display: flex;
  justify-content: center;
  padding: 1em;
  font-size: 18px;
  align-items: center;
  width: 100%;
  border-bottom: 4px solid var(--botao-ativo);
  border-left: 2px solid var(--botao-ativo);
  border-right: 2px solid var(--botao-ativo);
  border-top: none;
}

.botao-agenda:first-child {
  border-radius: 40px 40px 0 0;
}

.botoes-agenda {
  display: block;
}

.botao-agenda.ativo {
  background-color: var(--botao-ativo);
  border-bottom: 4px solid var(--verde-claro);
}

.abas-textos {
  background-color: var(--texto-fundo);
  color: var(--branco);
  padding: 40px;
  border-radius: 0 0 40px 40px;
}

.aba-conteudo.ativo {
  display: block;
}

.aba-conteudo {
  display: none;
}

.aba-couteudo-titulo-principal {
  font-size: 28px;
  text-align: center;
}

.aba-couteudo-titulo-secundario {
  font-size: 24px;
  text-align: center;
  color: var(--verde-claro);
}

.contador {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contador-digito {
  padding: 0 16px;
  text-align: center;
  min-width: 100px;
}

.contador-digito-numero {
  font-size: 80px;
  margin: 0;
}

.contador-digito-texto {
  color: var(--verde-claro);
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .botoes-agenda {
    display: flex;
  }

  .botao-agenda:first-child {
    border-radius: 40px 0 0 0;
  }

  .botao-agenda:last-child {
    border-radius: 0 40px 0 0;
  }
}

.Objetivos {
  padding: 50px;
}

.Objetivos p {
  text-indent: 1em;
  font-size: 22px;
  text-align: center;
}

.Objetivos li {
  font-size: 22px;
  font-family: "Chakra Petch", sans-serif;
}

.Metodologia {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: "Chakra Petch", sans-serif;
  padding: 30px 0;
  background-color: #FA8BFF;
  background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
}

.img-metodologia {
  max-width: 300px;
  margin-right: 20px;
  /* Espaço entre a imagem e a lista */
}

.conteudo-metodologia {
  display: flex;
  /* Flexbox aplicado aqui para alinhar conteúdo */
  justify-content: space-between;
  /* Espaço entre a lista e a imagem */
  align-items: flex-start;
  /* Alinhamento no topo */
  margin-bottom: 30px;
  /* Espaçamento entre blocos de conteúdo */
  padding: 20px;
}

hr {
  border: none;
  height: 2px;
  background-color: #333;
  margin: 20px 0;
}

.Metodologia ul {
  text-align: left;
  /* Alinhar o texto da lista à esquerda */
  padding: 0;
  margin: 0;
  list-style: none;
}

.Metodologia li {
  font-size: 18px;
  margin-bottom: 10px;
}

.jogo-fisico,
.jogo-digital,
.site {
  display: flex;
  flex-direction: row;
  /* Garantir que a imagem e o texto fiquem lado a lado */
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  /* Garantir que o conteúdo use toda a largura disponível */
}

.Resultados {
  padding: 60px 0;
  width: 100%;
  /* A largura da div se ajustará ao tamanho da tela */
  font-family: "Chakra Petch", sans-serif;
}

.Resultados li {
  font-size: 20px;
  padding: 5px;
}

.Resultados a {
  color: rgb(19, 93, 0);
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  padding: 15px;
}

.titulo-grafico {
  padding: 15px;
}

.estatisticas {
  font-size: 20px;
  display: flex;
  justify-content: center;
  /* Centraliza horizontalmente */
  align-items: center;
  /* Centraliza verticalmente */
  height: 40vh;
  /* Opcional, ajusta a altura da div */
  padding: 0px;
}

#meuGrafico {
  max-width: 350px;
  /* Largura do gráfico */
  max-height: 250px;
  /* Altura do gráfico */
}

.imagens-conclusão img {
  display: block;
  padding: 1px;
  max-width: 300px;
  max-height: 450px;
}

.imagens-conclusao {
  font-size: 18px;
  padding: 50px;
}

.imagens-conclusao img {
  max-width: 400px;
  max-height: 350px;
  margin: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Alinhar verticalmente */
  gap: 0px;
  /* Espaçamento entre texto e imagem */
  padding: 0px;
}

blockquote {
  padding: 0px;
}

.carousel-container {
  position: relative;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  font-size: 70px;
  color: black;
  padding: 16px;
  cursor: pointer;
  transform: translateY(-50%);
  user-select: none;
}

.carousel-controls.left {
  left: 0px;
  padding: 0px 0px;
}

.carousel-controls.right {
  right: 0px;
  padding: 0px 0px;
}

blockquote {
  display: none;
  text-align: center;
}

blockquote.active {
  display: block;
}

.content img {
  max-width: 100%;
  height: auto;
}

figcaption {
  font-style: italic;
  font-family: "Chakra Petch", sans-serif;
  margin-top: 8px;
  font-size: 16px;
  text-align: center;
}

.conclusao {
  padding: 50px;
  font-family: "Chakra Petch", sans-serif;
}

.acessar-jogo {
  background-image: url(fotos/Fundo\ Jogo.jpg);
  background-size: cover;
  /* Ajusta a imagem para cobrir toda a div */
  background-position: center;
  /* Centraliza a imagem */
  background-repeat: no-repeat;
  /* Evita a repetição da imagem */
  color: white;
  /* Define a cor do texto */
  text-align: center;
  /* Centraliza o texto */
  padding: 10px;
  /* Adiciona espaço ao redor do texto */
  height: 800px;
  /* Define a altura da div */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-family: "Merriweather", serif;
  font-weight: 600;
  font-style: normal;
}

.acessar-jogo ul {
  font-size: 25px;
  color: white;
  padding-top: 400px;
}

.acessar-jogo h2 {
  font-size: 50px;
  font-family: "Merriweather", serif;
}

.acessar-jogo a {
  color: var(--verde-claro);
}

.qr-code {
  background-color: #306034;
  background-image: linear-gradient(0deg, #306034 3%, #73f576 50%, #68ebf5 100%);
  text-align: center;
  color: black;
  height: 450px;
  /* Define a altura da div */
  padding: 10px;
}

.img-qr-code {
  max-width: 250px;
  max-height: 400px;
}

.rodape {
  font-size: 18px;
  padding: 40px 0;
  text-align: center;
  background: rgb(48, 96, 52);
  color: white;
}

.copyright {
  color: #FFFFFF;
  font-size: 13px;
  margin: 20px 0 0;
  padding: 10px;
}

/* ESTILIZAÇÃO DO MENU-MOBILE */
.caixa-mobile {
  background-color: rgba(0, 53, 0, 0.711);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 70px;
  left: 0px;
  width: 100%;
  height: 0;
  z-index: 10;
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
}

.caixa-mobile nav a {
  color: white;
  display: block;
  padding: 20px 30px;
  width: 100%;
}

.caixa-mobile nav a:hover {
  background-color: rgb(134, 134, 0);
}

#botao-menu {
  background: transparent;
  width: 50px;
  height: 50px;
  outline: none;
  cursor: pointer;
  border: 5px solid var(--botao-inativo);
  border-radius: 2px;
  transition: 0.2s;
  display: none;
}

.linha {
  position: relative;
  width: 20px;
  height: 3px;
  background-color: var(--botao-inativo);
  display: block;
  margin: 5px auto;
  transform-origin: center;
  transition: 0.2s;
}

#botao-menu.ativar {
  border: 5px solid red;
}

#botao-menu.ativar .linha:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
  background-color: red;
}

#botao-menu.ativar .linha:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
  background-color: red;
}

#botao-menu.ativar .linha:nth-child(2) {
  width: 0;
}

@media screen and (max-width: 1020px) {

  /* DEIXANDO EM COLUNAS */
  .gifs,
  .jogo-fisico,
  .jogo-digital,
  .site,
  .estatisticas {
    flex-direction: column;
  }

  /* TITULO PRINCIPAL*/
  .titulo-principal h1 {
    font-size: 25px;
    padding-bottom: 50px;
    padding-top: 90px;
  }

  /* SEGUNDO TÍTULO */
  .apresentacao h2 {
    text-align: right;
    padding-right: 20px;
    font-size: 18px;
    padding: 1px;
  }

  .local {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 15px;
  }

  .imagens-conclusao h2 {
    font-size: 24px;
  }

  /* IMAGENS */
  .Introducao img {
    width: 100%;
  }

  .imagens-conclusão img {
    padding: 10px;
  }

  figure {
    text-align: center;
  }

  figcaption {
    font-size: 14px;
  }

  /*AGENDA 2030*/
  .titulo-agenda {
    font-size: 25px;
  }

  .botao-agenda {
    font-size: 18px;
    width: 100%;
  }

  .aba-couteudo-titulo-principal {
    font-size: 22px;
  }

  .aba-couteudo-titulo-secundario {
    font-size: 20px;
  }

  .contador-digito-numero {
    font-size: 50px;
  }

  .contador-digito-texto {
    font-size: 16px;
  }

  /* ESTATISTICAS */
  .estatisticas {
    font-size: 20px;
    height: 70vh;
    /* Opcional, ajusta a altura da div */
  }

  .estatisticas li {
    font-size: 16px;
  }

  #meuGrafico {
    max-width: 320px;
    /* Largura do gráfico */
    max-height: 220px;
    /* Altura do gráfico */
  }

  /* MENU */
  .caixa {
    display: none;
  }

  .caixa-mobile.abrir {
    visibility: visible;
    height: calc(100vh - 50px);
  }

  #botao-menu {
    display: block;
  }

  .caixa-mobile nav {
    position: absolute;
    top: 20px;
    left: 0;
  }

  /* PARÁGRAFOS */
  .Introducao li {
    font-size: 18px;
    padding: 20px 10px;
    text-align: justify;
  }

  .R p {
    padding: 10px 40px;
    text-align: justify;
  }

  .Objetivos {
    padding: 30px 40px;
  }

  .Objetivos li {
    font-size: 19px;
    text-align: justify;
  }

  .Objetivos p {
    font-size: 19px;
    text-align: justify;
  }

  .conclusao li {
    font-size: 18px;
    text-align: justify;
  }

  /* ACESSAR JOGO */
  .acessar-jogo {
    height: 800px;
    /* Define a altura da div */
    font-family: "Chakra Petch", sans-serif;
  }

  .acessar-jogo h2 {
    font-size: 35px;
  }

  .acessar-jogo li {
    font-size: 20px;
  }

  .qr-code h2 {
    font-size: 30px;
  }

}