:root {
  --gold: #D4AF37;
  --dark: #1a1a1a;
  --white: #ffffff;
  --card: #2a2a2a;
  --muted: rgba(255,255,255,0.75);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--white);
}

h1, h2, .logo {
  font-family: 'Playfair Display', serif;
}

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: rgba(0,0,0,0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

.logo {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 26px;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.nav-links li a:hover {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  margin: 5px 0;
  border-radius: 999px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  width: min(980px, 92%);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 14px;
  line-height: 1.1;
}

.hero-content span { color: var(--gold); }

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 16px 26px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  transition: transform 0.2s, opacity 0.2s;
}

.cta-button:hover { transform: translateY(-2px); }

.cta-button.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.6);
}

.cta-button.ghost:hover {
  opacity: 0.9;
}

/* SECTIONS */
.categories, .about, .contact {
  padding: 96px 5%;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 40px;
}

.section-title.left { text-align: left; margin-bottom: 18px; }

.muted { text-align: center; color: var(--muted); margin-top: -24px; }

/* CATEGORY CARDS */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.category-card {
  background: var(--card);
  border: 1px solid #444;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 18px;
  transition: 0.25s;
}

.card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}

.category-card h3 {
  letter-spacing: 0.6px;
}

.category-card p {
  margin-top: 8px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ABOUT */
.about {
  background: #111;
}

.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: start;
}

.about p { color: var(--muted); line-height: 1.8; }

.bullets {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  padding: 18px;
}

.about-card-title {
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-link {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 10px;
}

.about-link:hover { border-color: rgba(212,175,55,0.5); }

.mini { margin-top: 12px; color: var(--muted); font-size: 0.9rem; }

/* CONTACT */
.contact {
  text-align: center;
}

#whatsappForm {
  width: min(620px, 92%);
  margin: 26px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#whatsappForm input, #whatsappForm select {
  padding: 14px 14px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
}

#whatsappForm input::placeholder { color: rgba(255,255,255,0.6); }

#whatsappForm select option { color: #111; }

.form-btn {
  padding: 16px;
  background: #25D366;
  color: white;
  border: none;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 12px;
}

.form-btn:hover { opacity: 0.92; }

.contact-footer {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.pill:hover { border-color: rgba(212,175,55,0.55); }

/* FOOTER */
.footer {
  padding: 26px 5%;
  border-top: 1px solid rgba(212,175,55,0.25);
  text-align: center;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.98);
    padding: 18px 5%;
    gap: 14px;
    border-bottom: 2px solid rgba(212,175,55,0.35);
  }

  .nav-links.active { display: flex; }

  .hamburger { display: block; }
}
