*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a0e1a;
  --navy2: #111624;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --white: #f5f0e8;
  --muted: #9a8f7a;
  --card-bg: #131929;
  --card-border: rgba(201,168,76,0.18);
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

/* HERO */
.hero {
  background: linear-gradient(160deg, #0d1220 0%, #1a1230 50%, #0d1220 100%);
  border-bottom: 1px solid var(--card-border);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.logo-crown {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  line-height: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.tagline {
  margin-top: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* GRID */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

/* CARD */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.45);
}

.card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0c1020;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.card:hover .card-img img { transform: scale(1.04); }

.card-info {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.card-preco {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold2);
  letter-spacing: 0.02em;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 16px;
  background: #1a5c38;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover { background: #1e6e43; }

.vazio {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: var(--navy2);
  border-top: 1px solid var(--card-border);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-wpp-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #128C7E;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.btn-wpp-footer:hover { background: #075E54; transform: translateY(-2px); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 500px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-nome { font-size: 0.95rem; }
  .card-preco { font-size: 0.95rem; }
  .btn-whatsapp { font-size: 0.75rem; padding: 8px 10px; }
}
