
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background: #4f8a67;
      color: #333;
      line-height: 1.6;
    }

    header {
      background-color: #29a849;
      color: rgb(99, 93, 93);
      padding: 30px ;
      position: relative;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo img {
      height: 50px;
    }

    .menu-toggle {
      font-size: 1.8rem;
      cursor: pointer;
      display: none;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .menu li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    .menu li a:hover {
      color: #07f3a4;
    }

    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background: #004d40;
        width: 100%;
        padding: 10px 0;
      }

      .menu.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    .container {
      padding: 40px 20px;
      max-width: 800px;
      margin: auto;
      background: white;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      animation: fadeIn 1s ease-in;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    h1, h2 {
      text-align: center;
      color: #00695c;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    label {
      font-weight: bold;
    }

    input, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      transition: border 0.3s;
    }

    input:focus, textarea:focus {
      border-color: #00695c;
      outline: none;
    }

    button {
      padding: 12px;
      background: #00695c;
      color: rgb(11, 2, 54);
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #004d40;
    }

    whatsapp-contact {
  margin-top: 20px;
}




/* Rodapé principal */
.footer {
  background: #29a849;
  padding: 30px 20px;
  color: #111010;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-content > div {
  flex: 1 1 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s;

  
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 20px;
}

.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content ul li a {
  text-decoration: none;
  color: #333;
  display: flex;
  margin-bottom: 10px;
  align-items: center;


}

.footer-copy {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content > div {
    width: 100%;
  }
}

