body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #fff8f0;
  color: #333;
}
header {
  background: linear-gradient(90deg, #fff8f0 0%, #ffe0b2 100%);
  padding: 60px 0 40px 0; /* Dobrei o padding para harmonizar com o banner maior */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 16px rgba(245,124,0,0.08);
}

header img {
  height: 700px;    /* 5x maior que 140px = 700px */
  max-width: 95vw;  /* Nunca passa da largura da tela */
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(245,124,0,0.10);
  background: #fff;
  padding: 6px 28px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f57c00;
  padding: 15px 0;
  gap: 15px;
}
nav a {
  color: white;
  margin: 5px 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, color 0.3s;
}
nav a:hover {
  color: #ffd699;
  transform: scale(1.1);
}
section { text-align: center; padding: 60px 20px; }
section h2 { font-size: 36px; margin-bottom: 20px; color: #f57c00; }
section p { font-size: 18px; max-width: 800px; margin: 0 auto 30px; line-height: 1.7; color: #555; }
.button {
  background-color: #f57c00;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}
.button:hover {
  background-color: #e66b00;
  transform: scale(1.05);
}
.pet-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.pet-gallery img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.pet-gallery img:hover {
  transform: scale(1.05);
}
.product-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.product-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s;
  padding-bottom: 15px;
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 20px;
  margin: 15px;
  color: #f57c00;
}
.product-card p {
  margin: 0 15px 10px;
  color: #666;
  font-size: 16px;
}
.product-card .rating {
  color: #ffaa00;
  margin: 0 15px;
  font-size: 14px;
}
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}

/* Responsividade para header e sections em telas pequenas */
@media (max-width: 600px) {
  header img {
    height: 120px;
    padding: 4px 8px;
  }
  section {
    padding: 30px 5px;
  }
}