:root {
  --bg: #ffffff;
  --ink: #2a1e12;
  --muted: #7a6a56;
  --accent: #d97706;
  --accent-2: #b45309;
  --gold: #f59e0b;
  --soft: #fdf3e3;
  --dark: #241a10;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
h1, h2, h3, .brand { font-family: 'DM Serif Display', serif; }
.container { width: min(1120px, 90%); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-bottom: 1px solid #f3e8d6; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 16px; }
.brand { font-size: 1.4rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.brand span { color: var(--accent); }
.nav { display: flex; gap: 26px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.header-wa { background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: .9rem; }
.header-wa:hover { background: var(--accent-2); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

.hero { background: linear-gradient(135deg, #fdf3e3, #fae6c8); padding: 90px 0 70px; text-align: center; }
.badge { display: inline-block; background: #fff; color: var(--accent-2); padding: 6px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); margin: 18px 0 12px; }
.hero p { max-width: 640px; margin: 0 auto 24px; color: var(--muted); font-size: 1.05rem; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: .2s; }
.btn-wa { background: var(--accent); color: #fff; }
.btn-wa:hover { background: var(--accent-2); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--gold); }
.btn-ghost:hover { background: var(--soft); }

.section { padding: 70px 0; }
.section.alt { background: var(--soft); }
.section-ey { text-transform: uppercase; letter-spacing: .13em; color: var(--accent-2); font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.lede { color: var(--muted); max-width: 560px; margin-bottom: 32px; }

.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: #fff; border: 1px solid #f3e8d6; border-radius: 16px; padding: 26px; box-shadow: 0 6px 24px rgba(0,0,0,.05); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .95rem; }

.cta { background: var(--dark); color: #fff; text-align: center; padding: 70px 0; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta p { margin: 10px auto 24px; max-width: 520px; opacity: .8; }
.cta .btn-wa { background: var(--accent); }
.cta .btn-wa:hover { background: var(--accent-2); }

.footer { background: var(--dark); color: #fff; padding: 50px 0 30px; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer h3, .footer h4 { font-family: 'DM Serif Display', serif; margin-bottom: 10px; font-size: 1.3rem; }
.footer p { color: #b39b7a; font-size: .95rem; }
.footer a { color: var(--gold); text-decoration: none; }
.disclaimer { text-align: center; margin-top: 30px; padding-top: 18px; border-top: 1px solid #3a2d1d; font-size: .8rem; color: #8a765c; }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 8%; border-bottom: 1px solid #f3e8d6; }
  .nav.open { display: flex; }
  .header-wa { font-size: .8rem; padding: 8px 12px; }
}
