* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background: #222;
  color: #fff;
  padding: 15px;
  text-align: center;
}

header nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

header nav a.active,
header nav a:hover {
  text-decoration: underline;
}

.hero {
  background: #f4f4f4;
  text-align: center;
  padding: 50px 20px;
}

.products {
  padding: 40px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  background: #fff;
}

.product img {
  max-width: 100%;
  border-radius: 5px;
}

.content {
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

form input, form textarea, form button {
  padding: 10px;
  font-size: 1rem;
}

form button {
  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
}
.social-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.social-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn:hover {
  opacity: 0.85;
}


footer {
  text-align: center;
  padding: 15px;
  background: #222;
  color: #fff;
  margin-top: 40px;
}
