:root {
  --sand: #E8DDD0;
  --sage: #A3A08B;
  --terracotta: #B7775E;
  --brown: #6A5646;
  --cream: #F7F2EA;
  --graphite: #3E372F;
  --border: rgba(106,86,70,.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--graphite);
  text-align: justify;
  line-height: 1.6;
}
h1, h2, h3, h4, .brand, .brand-foot { font-family: 'Cormorant Garamond', serif; font-weight: 500; text-align: left; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 40px 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(232,221,208,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
.brand { font-size: 1.6rem; letter-spacing: -.01em; }
.nav-links { display: none; gap: 32px; font-size: .9rem; color: var(--brown); }
.nav-links a:hover { color: var(--graphite); }
.nav-icons { display: flex; gap: 16px; color: var(--brown); }
.nav-icons svg { width: 20px; height: 20px; }
@media(min-width: 768px){ .nav-links { display: flex; } }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  background: rgba(232,221,208,.6);
  border-radius: 18px; padding: 36px;
}
@media(min-width: 768px){ .hero { grid-template-columns: 1fr 1fr; padding: 48px; } }
.hero h1 { font-size: 3rem; line-height: 1.05; color: var(--graphite); }
@media(min-width: 768px){ .hero h1 { font-size: 3.6rem; } }
.hero-lead { margin-top: 24px; color: var(--brown); font-size: 1.05rem; max-width: 420px; }
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.12); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 8px; font-size: .9rem; letter-spacing: .02em; cursor: pointer; transition: all .25s; }
.btn-primary { background: var(--sage); color: var(--cream); }
.btn-primary:hover { background: rgba(163,160,139,.9); }
.btn-outline { border: 1px solid rgba(106,86,70,.3); color: var(--graphite); }
.btn-outline:hover { background: var(--cream); }
.btn-cream { background: var(--cream); color: var(--graphite); }
.btn-cream:hover { background: var(--sand); }
.ico { width: 16px; height: 16px; }

/* Benefits */
.benefits { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(min-width: 768px){ .benefits { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  border: 1px solid var(--border); border-radius: 10px;
  background: rgba(247,242,234,.4); color: var(--brown); font-size: .9rem;
}
.benefit svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }

/* Section heading */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.section-head h2 { font-size: 2rem; color: var(--graphite); }
@media(min-width: 768px){ .section-head h2 { font-size: 2.4rem; } }
.see-all { font-size: .9rem; color: var(--terracotta); cursor: pointer; }
.see-all:hover { text-decoration: underline; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media(min-width: 1024px){ .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  transition: box-shadow .25s;
}
.product:hover { box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.product-img-wrap { position: relative; aspect-ratio: 1/1; background: rgba(232,221,208,.5); overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product:hover .product-img-wrap img { transform: scale(1.05); }
.heart-btn {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(247,242,234,.9); border: none;
  display: grid; place-items: center; color: var(--brown); cursor: pointer; transition: color .2s;
}
.heart-btn:hover { color: var(--terracotta); }
.heart-btn svg { width: 16px; height: 16px; }
.product-info { padding: 16px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.product-info h3 { font-family: 'Inter', sans-serif; font-size: .98rem; font-weight: 500; color: var(--graphite); }
.wa-btn {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(163,160,139,.4);
  font-size: .75rem; letter-spacing: .03em; color: var(--graphite);
  transition: all .3s; cursor: pointer;
}
.wa-btn:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); }
.wa-btn svg { width: 14px; height: 14px; }

/* Categorias */
.cats-row { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width: 768px){ .cats-row { grid-template-columns: 2fr 1fr; } }
.cats-box { background: rgba(232,221,208,.5); border-radius: 18px; padding: 32px; }
.cats-box h2 { font-size: 1.9rem; margin-bottom: 28px; color: var(--graphite); }
.cats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; text-align: center; }
@media(min-width: 768px){ .cats-grid { grid-template-columns: repeat(4, 1fr); } }
.cat { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cat-img { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 1px solid var(--border); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat span { font-size: .85rem; color: var(--brown); }
.about-box { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.about-box h2 { font-size: 1.6rem; margin-bottom: 14px; }
.about-box p { font-size: .9rem; color: var(--brown); }

/* CTA */
.cta-box { background: var(--sage); color: var(--cream); border-radius: 18px; padding: 56px 28px; text-align: center; }
.cta-box h2 { font-size: 2.4rem; margin-bottom: 12px; text-align: center; }
.cta-box p { opacity: .9; max-width: 540px; margin: 0 auto; }
.cta-box .btn { margin-top: 26px; }
.cta-box .ico { width: 20px; height: 20px; }

/* Footer */
.site-footer { background: linear-gradient(to bottom, var(--cream), var(--sand)); color: var(--graphite); margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; font-size: .9rem; }
@media(min-width: 768px){ .foot-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-foot { font-size: 1.3rem; margin-bottom: 12px; }
.by { font-family: 'Inter', sans-serif; font-size: .9rem; color: rgba(106,86,70,.7); font-weight: 400; }
.site-footer p, .site-footer li { color: var(--brown); }
.site-footer h4 { margin-bottom: 12px; font-weight: 500; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--graphite); }
.socials { display: flex; gap: 12px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(106,86,70,.3); display: grid; place-items: center; color: var(--brown); transition: background .2s; }
.socials a:hover { background: rgba(247,242,234,.4); }
.socials svg { width: 16px; height: 16px; }
.copy { padding: 20px; text-align: center; font-size: .75rem; color: var(--brown); border-top: 1px solid var(--border); }
.credit { margin-left: 8px; font-size: 10px; opacity: .4; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage); color: var(--cream);
  display: grid; place-items: center; box-shadow: 0 10px 25px rgba(0,0,0,.18);
  transition: transform .25s;
}
.float-wa:hover { transform: scale(1.05); }
.float-wa svg { width: 24px; height: 24px; }

/* Petal trail */
.petal { position: fixed; pointer-events: none; z-index: 9999; border-radius: 80% 10% 80% 10%; opacity: .75; will-change: transform, opacity; transition: transform 1.4s cubic-bezier(.2,.7,.3,1), opacity 1.4s ease-out; }

/* Folhas secas decorativas */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.22;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><g fill='%23A3A08B' fill-opacity='0.75' stroke='%236A5646' stroke-width='0.8' stroke-linecap='round'><path d='M30 90 Q15 60 40 40 Q70 55 60 90 Q45 100 30 90 Z'/><path d='M35 85 L52 50' fill='none'/></g></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><g fill='%23B7775E' fill-opacity='0.65' stroke='%236A5646' stroke-width='0.8' stroke-linecap='round'><path d='M120 130 Q95 110 110 80 Q145 90 140 125 Q132 138 120 130 Z'/><path d='M118 125 L125 88' fill='none'/></g></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='%23A3A08B' fill-opacity='0.65' stroke='%236A5646' stroke-width='0.8' stroke-linecap='round'><path d='M110 40 Q140 55 130 90 Q100 85 95 55 Q100 42 110 40 Z'/><path d='M108 48 L120 82' fill='none'/></g></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'><g fill='%23B7775E' fill-opacity='0.60' stroke='%236A5646' stroke-width='0.8' stroke-linecap='round'><path d='M40 110 Q25 80 50 65 Q80 80 70 110 Q55 120 40 110 Z'/><path d='M45 105 L60 72' fill='none'/></g></svg>");
  background-position: 4% 14%, 92% 22%, 12% 72%, 82% 86%;
  background-repeat: no-repeat;
  background-size: 110px, 140px, 130px, 120px;
}
