:root {
  --maroon: #6b1d22;
  --brown: #3d2218;
  --cream: #f6efe6;
  --cream-2: #efe4d4;
  --gold: #c49b5c;
  --text: #2b1812;
  --muted: #7a675c;
  --white: #fffdf9;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 239, 230, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #eadbc8;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #140c0a;
  border-radius: 50%;
  padding: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: .88rem;
  padding: 8px 10px;
  color: var(--brown);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.btn-maroon,
.nav a.btn-maroon {
  background: var(--maroon);
  color: #fff;
}
.btn-gold { background: var(--gold); color: var(--brown); }
.btn-ghost {
  background: #fff;
  color: var(--brown);
  border: 1.5px solid #eadbc8;
}
.btn-wa { background: #25d366; color: #fff; }

.hero {
  padding: 28px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.kicker {
  color: var(--maroon);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
  margin: 0 0 10px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 14px;
}
.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
  max-width: 46ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-photo {
  position: relative;
}
.hero-photo img.main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(61, 34, 24, .18);
}
.badge-float {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: #140c0a;
  border-radius: 50%;
  border: 4px solid var(--cream);
  padding: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}

.section { padding: 56px 0; }
.section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 10px;
}
.lead { color: var(--muted); max-width: 52ch; margin: 0 0 28px; }

.sobre {
  background: #fffdf9;
}
.sobre-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.sobre img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill {
  background: var(--cream-2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 800;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(61, 34, 24, .08);
}
.card img { height: 180px; width: 100%; object-fit: cover; }
.card .body { padding: 16px; }
.card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .88rem; }
.price { margin-top: 10px; font-weight: 800; color: var(--maroon); }

.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.passo {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #eadbc8;
}
.num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}
.passo h3 { margin: 0 0 6px; }
.passo p { margin: 0; color: var(--muted); }

.cta {
  background: var(--brown);
  color: #f6efe6;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta h2 { margin: 0 0 8px; color: #fff; }
.cta p { margin: 0; color: #e4d2b8; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.rodape {
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: .88rem;
}
.rodape-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.rodape a { font-weight: 800; text-decoration: none; color: var(--maroon); }

@media (max-width: 860px) {
  .nav a:not(.btn) { display: none; }
  .hero-grid, .sobre-grid, .cards, .passos { grid-template-columns: 1fr; }
  .hero-photo img.main, .sobre img { height: 280px; }
  .badge-float { width: 86px; height: 86px; left: 12px; bottom: 12px; }
  .cta { flex-direction: column; align-items: flex-start; padding: 24px; }
}
