:root {
  --ink: #1a1f16;
  --cream: #f3efe6;
  --sage: #3d5a45;
  --terra: #c45c26;
  --paper: #fffdf8;
  --muted: #5c6558;
  --line: rgba(26, 31, 22, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(61, 90, 69, 0.12), transparent 60%),
    linear-gradient(180deg, #ebe4d6 0%, var(--cream) 40%, #e7e0d2 100%);
  min-height: 100vh;
}

a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--terra); }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(243, 239, 230, 0.88);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}
.brand img { border-radius: 10px; }
.site-header nav { display: flex; gap: 1.25rem; flex-wrap: wrap; font-weight: 600; font-size: 0.95rem; }

.site-footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 253, 248, 0.7);
}

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #2a3228 center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,22,0.15) 0%, rgba(26,31,22,0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.5rem 3rem;
  max-width: 720px;
  color: #fffdf8;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.hero p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  max-width: 36rem;
  opacity: 0.95;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { color: #fff; background: #a94b1d; }
.btn-ghost { background: rgba(255,253,248,0.12); color: #fff; border-color: rgba(255,253,248,0.35); }
.btn-ghost:hover { color: #fff; background: rgba(255,253,248,0.22); }
.btn-outline { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: #fff; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #1ebe57;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}
.wa-icon { flex-shrink: 0; display: block; }
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #128C7E;
}
.nav-wa:hover { color: #075E54; }
.nav-wa .wa-icon { width: 16px; height: 16px; }

.section { padding: 3rem 1.5rem; max-width: 1120px; margin: 0 auto; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
}
.section .lede { color: var(--muted); margin: 0 0 1.75rem; max-width: 40rem; }

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

.card-link {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 31, 22, 0.12);
  color: inherit;
}
.card-link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #d9d2c4;
}
.card-body { padding: 1rem 1.1rem 1.25rem; }
.card-body h3 { margin: 0 0 0.35rem; font-family: var(--font-display); font-size: 1.25rem; }
.card-meta { color: var(--muted); font-size: 0.9rem; margin: 0; }
.price { font-weight: 700; color: var(--terra); margin-top: 0.5rem; }
.price-compare {
  margin: 0;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1rem;
}
.section-mini {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}
.benefit-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
}
.benefit-list li { margin: 0.35rem 0; }
.social-proof {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--terra);
  background: rgba(255,253,248,0.8);
  color: var(--muted);
  font-style: italic;
}
.pack-upsell {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.pack-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .pack-hero { grid-template-columns: 1fr; }
}
.pack-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}
.pack-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem;
}
.pack-aside .price-lg {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terra);
  margin: 0 0 1rem;
}
.pack-aside form { display: grid; gap: 0.75rem; margin-top: 1rem; }
.pack-aside input, .pack-aside textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}
.recipe-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.recipe-detail img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 1rem 0 1.5rem;
}
.prose :where(ul, ol) { padding-left: 1.2rem; }
.prose :where(p, li) { line-height: 1.6; }
.status {
  background: #e7f0e4;
  color: #2f4a34;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #c7d9c2;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner, .section, .pack-hero { animation: rise .7s ease both; }
.grid .card-link { animation: rise .6s ease both; }
.grid .card-link:nth-child(2) { animation-delay: .05s; }
.grid .card-link:nth-child(3) { animation-delay: .1s; }
.grid .card-link:nth-child(4) { animation-delay: .15s; }
