:root {
  --dark:#2b1f16;
  --accent:#c9a36a;
  --light:#f9f7f4;
}

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--dark);
}

header {
  background: var(--dark);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #000;
  color: white;
}

section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,.1);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .content {
  padding: 1rem;
}

button {
  background: var(--accent);
  border: none;
  padding: .6rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 1.5rem;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  text-decoration: none;
}
