 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;

 }

 html,
 body {
   width: 100%;
   height: 100%;
   overflow-x: hidden;
   background-color: #f4f4f4;
   color: #333;
 }


 header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background: rgba(46, 125, 50, 0.9);
   color: #fff;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 50px;
   z-index: 1000;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(10px);
 }

 header h1 {
   font-size: 1.8em;
   font-weight: bold;
   color: #ffeb3b;
   letter-spacing: 1px;
   font-family: "Alfa Slab One", serif;
   font-weight: 400;
   font-style: normal;
 }

 nav a {
   color: #fff;
   text-decoration: none;
   margin: 0 15px;
   font-weight: 500;
   transition: color 0.3s;
   font-family: "Fugaz One", sans-serif;
   font-weight: 400;
   font-style: normal;
 }

 nav a:hover {
   color: #ffeb3b;
 }

 main {
   padding: 100px 18px 80px;
   max-width: 1200px;
   margin: 0 auto;
 }

 .section {
   background: #fff;
   border-radius: 12px;
   padding: 18px;
   margin: 18px 0;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }

 .section h2 {
   color: #2E7D32;
   text-align: center;
   margin-bottom: 6px;
   font-family: "Alfa Slab One", serif;
   font-weight: 400;
   font-style: normal;
   font-size: 30px;
 }

 .culturas-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   justify-content: center;
   margin-bottom: 14px;
   color: #225522;

   font-family: "Quantico", sans-serif;
   font-weight: 400;
   font-style: normal;


 }

 .culturas-list .chip {
   background: #f1fbf1;
   padding: 8px 12px;
   border-radius: 999px;
   font-weight: 600;
 }

 .culture-block {
   margin: 18px 0;
   padding: 14px;
   border-radius: 10px;
   background: linear-gradient(180deg, #fff, #f7fff7);
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
 }

 .culture-block h3 {
   color: #1B5E20;
   margin-bottom: 10px;
   font-family: "Alfa Slab One", serif;
   font-weight: 400;
   font-style: normal;
   font-size: 25px;
 }


 .cards-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 25px;
   padding: 20px;
 }

 .card-praga {
   width: 100%;
   background: #ffffff;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   cursor: pointer;
   transition: transform 0.2s ease;
 }

 .card-praga:hover {
   transform: scale(1.02);
 }

 .card-praga img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }

 .card-praga h4 {
   font-size: 1.1rem;
   padding: 12px;
   margin: 0;
   background: #f4f4f4;
   text-align: center;
 }

 .descricao-praga {
   max-height: 0;
   opacity: 0;
   overflow: hidden;
   padding: 0 !important;
   transition: max-height 0.4s ease, opacity 0.25s ease;
 }


 .card-praga.ativo .descricao-praga {
   max-height: 600px;
   opacity: 1;
   padding: 15px !important;
 }



 @keyframes aparecer {
   from {
     opacity: 0;
     transform: translateY(-5px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }


 .card {
   background: #fff;
   border-left: 6px solid #2E7D32;
   padding: 12px;
   border-radius: 10px;
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
   display: flex;
   flex-direction: column;
   min-height: 140px;
 }

 .cards-container img {
   width: 100%;
   height: 180px;
   object-fit: contain;
   border-radius: 10px;
   margin-bottom: 10px;
 }


 .card h4 {
   font-size: 1rem;
   color: #134d2c;
   margin-bottom: 6px;
   font-family: "Alfa Slab One", serif;
   font-weight: 200;
   font-style: normal;
 }

 .card p {
   font-size: 0.88rem;
   color: #333;
   line-height: 1.3;
   flex: 1;

   font-family: "Quantico", sans-serif;
   font-weight: 400;
   font-style: normal;

 }

 footer {
   margin-top: 30px;
   background: #1B5E20;
   color: #fff;
   padding: 16px;
   text-align: center;
   font-weight: 700;



   font-family: "Fugaz One", sans-serif;
   font-weight: 400;
   font-style: normal;



 }

 footer a {
   color: #fff;
   text-decoration: none;
 }

 @media (max-width: 520px) {
   header h1 {
     font-size: 1rem;
   }

   .cards-container {
     gap: 10px;
   }
 }

 .menu-btn {
   display: none;
   font-size: 30px;
   cursor: pointer;
   color: #ffeb3b;
 }


 @media (max-width: 768px) {


   header {
     flex-direction: row;
     justify-content: space-between;
     padding: 15px 20px;
   }

   header h1 {
     font-size: 1.5em;
   }


   nav {
     position: absolute;
     top: 70px;
     right: 0;
     background: rgba(46, 125, 50, 0.95);
     width: 100%;
     text-align: center;
     display: none;
     flex-direction: column;
     padding: 20px 0;
     margin-top: 0;
   }

   nav a {
     display: block;
     margin: 15px 0;
     font-size: 20px;
   }

   .menu-btn {
     display: block;
   }

   nav.ativo {
     display: flex;
   }


   .carrossel {
     height: 70vh;
   }

   .texto h2 {
     font-size: 1.8em;
   }

   .texto p {
     font-size: 1em;
   }


   .cards {
     flex-direction: column;
     align-items: center;
   }

   .card {
     width: 90%;
   }
 }


.imgaberta {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.imgaberta img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.3s ease;
}

.fechar {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.card img {
  cursor: pointer;
}
