:root {
  --accent: #2d6a4f;
  --text: #1b1b1b;
  --muted: #5f5f5f;
  --bg: #ffffff;
  --bg-soft: #f6f5f2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

.demo-banner {
  background: #1b1b1b;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}

.demo-banner strong { color: var(--accent-light, #ffd166); }

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-content .category {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent-light, #ffd166);
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.3rem 0 0.6rem;
}

.hero-content p { max-width: 560px; color: #eee; }

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section.soft { background: var(--bg-soft); max-width: none; }
section.soft > .inner { max-width: 900px; margin: 0 auto; }

h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.2rem;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
}

.list-item .price { color: var(--accent); font-weight: 600; white-space: nowrap; }

.muted { color: var(--muted); font-size: 0.92rem; }

footer {
  background: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}

footer a { color: #fff; }

.whatsapp-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 10;
}

@media (max-width: 600px) {
  .whatsapp-float { font-size: 0.85rem; padding: 0.7rem 1rem; }
}
