body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

header {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

#banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

section {
  padding: 40px 20px;
}

#produtos .carrossel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.item-produto {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.item-produto img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

#empresa ul {
  list-style: none;
  padding: 0;
}

#whatsapp {
  position: fixed;
  bottom: 20px;
  right: 30px;
}

#whatsapp img {
  width: 60px;
  height: 60px;
}

footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.dados-empresa {
  flex: 1 1 300px;
}

form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}
