 body {
      font-family: 'Segoe UI', sans-serif;
    }

 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #20b398; /* Cor verde */
  position: relative; /* Adicione esta linha */
}


    .navbar .logo img {
      height: 50px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      z-index: 1001; /* Adicione esta linha para garantir que o botão fique acima do menu */
    }

    .menu {
      display: flex;
      gap: 1rem;
      list-style: none;
      margin: 0;
      padding: 0;
      z-index: 1000; /* Adicione esta linha para garantir que o menu fique acima de outros elementos */
    }

    .menu li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }
    .menu li a:hover {
  color: #1eec96; /* Exemplo: amarelo ouro */
  transition: color 0.3s ease;
}


    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #004d40;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 1rem;
      }

      .menu.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    .about-section {
      padding: 60px 20px;
      background-color: #f5f5f5;
    }

    .about-section h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
      color: #3f8a4f;
    }

    .about-section h2 {
      font-size: 1.3rem;
      text-align: center;
      margin-bottom: 40px;
      color: #040553;
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }

    .content .text {
      flex: 1 1 50%;
      font-size: 1.1rem;
      color: #5a5858;
    }

    .content .video {
      flex: 1 1 45%;
    }

    .content .video video {
      width: 100%;
      border-radius: 10px;
    }

    .valores {
      padding: 60px 20px;
      background-color: white;
    }

    .card-hover:hover {
      transform: translateY(-5px);
      transition: transform 0.3s ease;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }

    footer {
      background-color: #20b398; /* Cor verde */
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    footer a {
      color: white;
      margin: 0 10px;
    }
    .historia-section {
  padding: 60px 20px;
  background-color: #e8f5e9;
}

.historia-section h2 {
  font-weight: bold;
  color: #004d40;
  margin-bottom: 40px;
}

.historia-section p {
  color: #333;
  font-size: 1.05rem;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

