/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte padrão */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Header e Navbar */
header {
  background-color: #3b4a3f;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: #3b4a3f;
  height: 8vh;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #00c851;
  display: flex;
  align-items: center;
}

.logo img {
  margin-left: 8px;
  width: 30px;
  height: 30px;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list a {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-list a:hover {
  background-color: #00c851;
}

/* Main section */
main {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}

h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3b4a3f;
}

.informacoes-produtos {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  color: #555;
}

.informacoes-produtos h4 {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #00c851;
}

.informacoes-produtos p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 10px 0;
}

/* Nova seção de galeria de produtos */
.galeria-produtos {
  margin-top: 40px;
}

.produtos-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.produto-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.produto-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.produto-card h5 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #3b4a3f;
}

.produto-card p {
  font-size: 0.9rem;
  color: #555;
}

.produto-card a {
  display: inline-block;
  margin-top: 10px;
  color: #00c851;
  text-decoration: none;
}

.produto-card a:hover {
  text-decoration: underline;
}

/* Rodapé */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  margin-top: 210px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-info h4,
.footer-social h4,
.footer-location h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c851;
}

.footer-info a {
  color: #fff; /* Cor branca para os links de email e telefone */
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-location p {
  color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .nav-list {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-list li {
    margin: 10px 0;
  }

  .produtos-container {
    flex-direction: column;
    align-items: center;
  }

  .produto-card {
    width: 90%;
  }
}
