 * {
      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(220px, 1fr));
   gap: 14px;
 }

 .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;
  }

  /* MENU MOBILE */
  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%;
  }
}