* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #7a0f14;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
  font-size: 1.5rem;
}
nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  background: linear-gradient(to right, #a61b1b, #7a0f14);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  flex: 1;
}
.produto {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.produto:hover {
  transform: translateY(-5px);
}
.produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.produto .info {
  padding: 1rem;
}
.produto .info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.produto .info p {
  font-size: 0.95rem;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.2em;
}
.produto .info span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #a61b1b;
}
footer {
  background-color: #7a0f14;
  color: white;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
footer h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #f44336;
}
footer p, footer li {
  font-size: 0.9rem;
  line-height: 1.5;
}
footer ul {
  list-style: none;
  padding: 0;
}
