
body { font-family: 'Roboto', sans-serif; background: #f9f9f9; color: #333; margin: 0; }
header, nav, main, footer { padding: 20px; }
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  flex-wrap: wrap;
  position: relative;
}
nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
}
nav a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
.logo {
  height: 100px;
  max-width: 300px;
  object-fit: contain;
}
.conteudo { max-width: 900px; margin: auto; text-align: center; }
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.galeria img {
  width: 200px;
  border-radius: 8px;
}
.icones {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.icones div { text-align: center; width: 120px; }
.icones img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 3px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.botao {
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
.botao.verde { background: #25d366; }
hr {
  border: 0;
  border-top: 2px solid #444;
  margin: 40px auto;
  width: 85%;
}
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  nav ul.aberto {
    display: flex;
  }
}


h1, h2 {
  font-family: 'Courier Prime', monospace;
}
