 :root {
      --azul: #2a5d7c;
      --verde: #6ca035;
      --cinza: #333;
      --branco: #fff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--branco);
      color: var(--cinza);
      line-height: 1.6;
    }

    header {
      background-color: white;
      color: #333;
      display: grid;
      justify-content: center;
      align-items: center;
      padding: 1rem 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .logo-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .logo-container img {
      height: 80px;
      margin-right: 0.5rem;
    }

    .logo-container h2 {
      font-size: 1.6rem;
      color: #333;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    nav ul li a {
      color: #333;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: var(--verde);
    }

    main {
      padding: 4rem 2rem;
      background-color: #f0f4f8;
    }

    .intro {
      max-width: 800px;
      margin: 0 auto 3rem auto;
      background: var(--branco);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: center;
    }

    .intro h1 {
      color: var(--azul);
      margin-bottom: 1rem;
    }

    .video-container {
      display: flex;
      justify-content: center;
      margin: 3rem 0;
    }

    .video-container iframe {
      width: 100%;
      max-width: 800px;
      height: 450px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .servicos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      max-width: 1080px;
      margin-left: auto;
      margin-right: auto;
    }

    .servico {
      background-color: var(--branco);
      border-left: 5px solid var(--azul);
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 1px 6px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .servico:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .servico h3 {
      margin-bottom: 0.5rem;
      color: var(--azul);
    }

    footer {
      background-color: var(--verde);
      color: var(--branco);
      text-align: center;
      padding: 1.5rem;
      margin-top: 4rem;
    }





.equipe-container {
  background-color: white;
  padding: 20px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.equipe-container h2 {
  color: #005f87;
  font-size: 2em;
  margin-bottom: 10px;
}

.equipe-container p {
  color: #333;
  font-size: 1em;
  margin-bottom: 40px;
}

.membros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-membro {
  background-color: #fff;
  border: 2px solid #005f87;
  border-radius: 15px;
  padding: 20px;
  width: 160px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card-membro img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #005f87;
  margin-bottom: 10px;
}

.card-membro h3 {
  margin: 5px 0;
  font-size: 1.1em;
  color: #000;
}

.card-membro p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}








.btn-container {
  display: flex;
  margin-top: 50px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.whatsapp {
  background-color: #25d366;
}

.whatsapp:hover {
  background-color: #1ebe57;
}

.instagram {
  background-color: #e1306c;
}

.instagram:hover {
  background-color: #c22b5f;
}




.projetos{
  text-align: center;
  margin-top: 50px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.bb{
  margin-top: 15px;
}
.botao  {
  text-decoration: none;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  color: rgb(255, 255, 255);
  background-color: #005f87;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}


.contato{
  text-align: center;
  margin-top: 50px;
  background-color: rgb(241, 241, 241);
}

 


    @media (max-width: 768px) {
   


        .btn {
    font-size: 16px;
    padding: 10px 16px;
  }


  
    nav ul li a {
      color: #333;
      text-decoration: none;
      font-weight: bold;
      font-size: 12px;
      transition: color 0.3s;
    }

    }