@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&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Anton+SC&family=Bebas+Neue&family=Faculty+Glyphic&display=swap');

                                                        /* Estilos base */

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

/* Estilos temporários para apresentar a página */
        



body {
    
    line-height: 1.6;
    background-color: #212121;
    color: #2F4F4F;
    margin: 0;
    padding-top: env(safe-area-inset-top); /* Para iOS */
    padding-top: constant(safe-area-inset-top); /* Para versões antigas do iOS */
    padding-top: var(--safe-area-inset-top, 0px); /* fallback para navegadores que não suportam as variaveis acima */
}






 /* MENU */


 header {
  background: linear-gradient(135deg, rgb(47, 48, 48) 40%, #4af0a2);
  padding: 0px 35px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  
  padding: 14px;
  color: #FFF;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-top: 7px;
    margin-bottom: 0px;
    text-decoration: none;

}

.header-container h1 a {

  color: #fff;
  text-decoration: none;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin: 0 7px;
}

header nav ul li a {
  text-decoration: none;
  color: #FFF;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFF;
  cursor: pointer;
}







                                                      /* Seção Hero (Topo do site) */






.hero {
  position: relative;
  width: 100%;
  height: 80vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 50px;
  
}

/* Ajuste das imagens no <picture> */
.hero picture,
.hero picture img {
   position: absolute;
  top: 0;
  left: 0;
  width: 105%; /* ligeiramente maior para permitir movimento */
  height: 105%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.5s ease;

}

@media (hover: hover) {
  .hero:hover picture img {
    transform: scale(1.05) translate(-2%, -2%);
  }

  .hero:hover {
    cursor: pointer;
  }
}

/* Conteúdo centralizado */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 15px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4); /* Fundo escuro translúcido */
  border-radius: 10px;
  animation: fadeIn 1.5s ease-in-out; /* Animação de entrada */
  align-items: center;
  margin-top: 250px;
  

}

/* Títulos e textos */
.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Botão personalizado */
.hero-content .bt0 {
  display: inline-block;
  background-color: #33d9b2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.hero-content .bt0:hover {
  background-color: #1e90ff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Animação de fade-in para o conteúdo */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




                                                  /* SESSÃO PERGUNTAS FREQUENTES */




.faq {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Título da seção */
.faq-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Estilização dos itens FAQ */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Estilização das perguntas */
.faq-question {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question span {
  margin-right: 8px;
  color: #000;
  font-size: 1rem;
}

/* Respostas escondidas inicialmente */
.faq-answer {
  display: none;
  padding: 0 10px 10px 10px;
  font-size: 1rem;
  color: #555;
  animation: fadeIn 0.5s ease-in-out;
}

/* Checkbox para controlar o dropdown */
input[type="checkbox"] {
  display: none;
}

/* Mostrar a resposta quando o checkbox estiver marcado */
input[type="checkbox"]:checked + .faq-question + .faq-answer {
  display: block;
}

input[type="checkbox"]:checked + .faq-question span {
  transform: rotate(90deg);
}

/* Efeito hover na pergunta */
.faq-question:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
}

/* Animação para o conteúdo */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}














 


                                                               /* sessão carrosel */


/* Estilos do carrossel */ 
/* Estilos do carrossel */ 
.carousel-container { 
  display: none;
  width: 100%; 
  max-width: 100%;
   margin: 0 auto; 
   text-align: center;
   /* Centraliza o container */ 
   
   text-align: center; 
  } 

   .carousel-title {
     font-size: 24px;
      margin-bottom: 20px; 
    } .carousel {
      overflow: hidden;
       position: relative; 
       width: 100%; 
      } 
      .carousel-track { 
        display: flex;
         transition: transform 0.5s ease-in-out; 
        } 
    .carousel-item { 
      min-width: 100%;
       text-align: center;
       } 
       
      .carousel-item img { 
        width: 100%; 
        height: 400px;
        
  /* Garantir altura consistente */ 
  
  object-fit: cover;
   border-radius: 10px;
   } 
   .carousel-item h3 { 
    font-size: 20px;
     margin-top: 10px; 
    }
























                                                                      /* Sessão como funciona */






.how-it-works {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: -5px 5px 44px 0px #33d98c, 
5px -5px 44px 2px rgb(71, 104, 81);
}

h2 {
  color: rgb(71, 104, 81);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 30px;
  color: #212121;
}

/* Estilo das Etapas */
.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #33d98c;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.step-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}







                                                        /*  Seção de 3 Recursos - Features Section */






.features {
    text-align: center;
    padding: 50px 20px;
    background: #212121;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  } }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    
}


.feature-item {
    background-image: radial-gradient(circle, rgb(71, 104, 81) 0%, #33d98c 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: black;
}

.feature-item img {
    width: 80px;
    margin-bottom: 15px;
}
.features h2{

    color: #ffffff;
    font-size: 35px;
}

.feature-item h3 {
    color: #FFF;
    font-size: 29px;
}

.feature-item p {
    color: rgb(255, 255, 255);
    font-size: 20px;
}




                                                    /* Botões Principais - login - Cadastre-se  */





.cta {
    text-align: center;
    padding: 18px;
    color: #FFF;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: linear-gradient(132deg, #212121,#6cda5b, #1e5718,#6cda5b, #003200,#33d98c,#ffffff);
  background-size: 400% 400%;
  animation: BackgroundGradient 15s ease infinite;
   
}
 .cta h2 {
  color: white;
  margin-bottom: 9px;
  font-size: 22px;
  padding: 0px;
  margin-top: 0%;
}
.cta h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: Open Sans, sans-serif;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 2em;
  padding: 5px;
}
@keyframes BackgroundGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.cta .btn {
    margin: 10px;
    background-color: #212121;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    
}


.btn b {
    color: #fff;
    border-radius: 10px;
}
    

.botoes{
    margin-top: 10px;
}










.numeros-site { 
  text-align: center;
  margin-bottom: 60px; 
background-color: linear-gradient(135deg, rgb(33 33 33) 60%, #33d98c) ;
  padding: 30px;

  
  
} 

.title { 
  font-size: 2em; 
  margin-bottom: 20px;
  color: white; 

} .stats { 
  display: flex; 
  flex-direction: row; 
  justify-content: space-around; 
  transition: transform 0.5s; 
} 
.stats:hover { 
  transform: translateY(-10px);

} 
.stat-item { 
  margin: 0 20px; 
} 
.stat-item .number { 
  display: block; 
  font-size: 2em; 
  font-weight: bold;
  color: white;
} 
.stat-item .description { 
  font-size: 1.2em; 
  margin-top: 5px;
  color: white;
}






















                                                              /* Sessão Aprender -BLOG */




.aprender-geral {

  background-color: #f9f9f9;
  padding: 50px;
  

}

.section-aprender .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;

}

/* Título principal */
.titulo {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #212121;
}

.descricao{

margin-bottom: 25px;
color: #000000;
font-size: 18px;
}

/* Layout flexível para imagem e conteúdo */
.postagem {
  display: flex;
  flex-direction: row; /* Imagem à esquerda, conteúdo à direita */
  gap: 30px; /* Espaçamento entre os elementos */
  align-items: center;
  margin-bottom: 15px;
}

/* Estilização da imagem */
.imagem-postagem {
  width: 50%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* Conteúdo da postagem */
.conteudo-postagem {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.tags {
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  background-color: #33d9b2;
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 5px;
  text-transform: uppercase;
  font-weight: bold;
}

.titulo-postagem {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.data-postagem {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.botao-ler-mais {
  display: inline-block;
  text-decoration: none;
  background-color: #1c1c1d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  text-align: center;
  max-width: 150px;
  margin-bottom: 10px;
}

.botao-ler-mais:hover {
  background-color: #0077cc;
}



/* links */

#link{

  color: #04daf7;
  text-decoration: none;
}




                                                                        /* Footer */






footer {
    padding: 40px 20px;
    background-color: #212B35; /* Fundo do footer */
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .temas-organicos h3,
  .nossa-missao h3 {
    font-size: 16px;
    color: #A3ADB7;
    margin-bottom: 15px;
  }
  
  .temas-organicos ul {
    list-style: none;
  }
  
  .temas-organicos ul li {
    margin-bottom: 10px;
  }
  
  .temas-organicos ul li a {
    text-decoration: none;
    color: #04f7ba;
  }
  
  .temas-organicos ul li a:hover {
    text-decoration: underline;
  }
  
  .nossa-missao p {
    margin: 15px 0;
    color: #8394a1;
  }
  
  .nossa-missao button {
    padding: 10px 20px;
    border: 1px solid #04f7ba;
    background: none;
    color: #04f7ba;
    font-size: 14px;
    cursor: pointer;
  }
  
  .nossa-missao button:hover {
    background-color: #04daf7;
    color: #212B35;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom p {
    margin: 10px 0;
    color: #A3ADB7;
    font-size: 14px;
  }
  
  .footer-bottom a {
    text-decoration: none;
    color: #04f7ba;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
  }





















/* Estilo geral da seção */
.faq-section {
  padding: 40px 20px;
  background-color: #f5f7fa;
  font-family: 'Arial', sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  color: #2a2a2a;
  align-items: center;
  text-align: center;
}

.faq-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Estilo dos itens da FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #f9f9f9;
  color: #333;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #e9e9e9;
}

.faq-icon {
  font-size: 18px;
  color: #555;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}







.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner a {
  color: #33d9b2;
  text-decoration: underline;
}

.cookie-banner button {
  background: #33d9b2;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.cookie-banner button:hover {
  background: #2098e7;
}

























                                                /* Responsividade */
                                                /* Layout para Smartphone (máximo de 767px) */





@media (max-width: 767px ) {
        .hamburger {
        display: block; /* Exibe o botão no layout mobile */
        font-size: 2rem; /* Aumenta o tamanho do ícone */
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1100; /* Garante que esteja acima do menu */
    }

   
    


    .menu {
       display:block;
    
       position: absolute;
       width: 100%;
       top: 70px;
       right: 0px;
       background-color: #191919;
       height: 0px;
       z-index: 1000;
       transition: .6s;
       visibility: hidden;
       overflow-y: hidden;
      font-family: Georgia, 'Times New Roman', Times, serif;
    }

    .menu.active {
        
        height: calc(100vh - 70px);
        visibility: visible;
        /*overflow-y: auto;*/
    }

    .menu li {
        margin: 15px 0; /* Espaçamento entre os itens */
        text-align: center;
    }

    .menu li a {
        font-size: 1.5rem; /* Aumenta o tamanho da fonte dos links */
        font-weight: bold; /* Torna o texto mais destacado */
        color: #ffffff; /* Cor do texto */
        text-decoration: none; /* Remove o sublinhado */
        padding: 1rem 0;
        margin: 0 1rem ;
        border-bottom: 2px solid rgba(214, 207, 207, 0.4);

    }  

    .menu li a:hover {
        color: #04daf7; /* Altera a cor ao passar o mouse */
    }

    header h1 {
  
  padding: 14px;
  color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;

}

    .header-container h1{
      margin-bottom: 0px;
    }
    .hero {
      height: 76vh;
    }

    .hero-content{
      margin-top: 60px;
      
      
    }

    .hero-content h2 {
      font-size: 27px;
    }

    /* RESPONSIVO SESAAO APRENDER */

.postagem {
  flex-direction: column; /* Ajusta para layout vertical em telas menores */
  gap: 20px;
}

.imagem-postagem,
.conteudo-postagem {
  width: 100%;
}

.titulo {
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 18px;
  font-size: 27px;
}

.titulo-postagem {
  font-size: 1.5rem;
}

.descricao{

  margin-left: 12px;
  margin-right: 14px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 15px;
}

.tags{
  margin-left: 12px;
  margin-right: 12px;
}

.titulo-postagem{
  margin-left: 12px;
  margin-right: 12px;
}

.data-postagem{
  margin-left: 12px;
  margin-right: 12px;
}

.botao-ler-mais{
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 12px;
}


.aprender-geral {

  background-color: #f9f9f9;
  padding: 10px;
  

}


.carousel-title {
  font-size: 18px;
}

.carousel-item h3 {
  font-size: 16px;
}


body {
  
height: auto; 
/* Ajustar a altura para auto no mobile */ 
} 
.carousel-container { 
  width: 100%;
  display: block;
 } 
.carousel-item img { 
  height: auto;
   /* Ajusta a altura da imagem para auto */
   max-height: 300px; /* Altura máxima da imagem no mobile */ }


   .stat-item .number{
    font-size: 40px;
   }

.numeros-site{
  margin-bottom: 0px;
  padding: 10px;
  background-color: linear-gradient(135deg, rgb(33 33 33) 60%, #33d98c) ;
}

.numeros-site .title{

  font-size: 25px;
  margin-top: 20px;
}

  .stats { 
    flex-direction: column; 
    align-items: center; } 

  .stat-item { 
    margin: 10px 0; } 
    
  .stats:hover { 
  
    transform: translateY(-10px); 
    /* Apenas mover para cima no mobile */ }
   
   


   
}





