:root {
  --bg: #ffffff;
  --ink: #1f1a1a;
  --muted: #6a5f5a;
  --accent: #c0392b;
  --accent-2: #a03126;
  --gold: #e3a92e;
  --soft: #fbf1ec;
  --dark: #221515;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Karla', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
h1, h2, h3, .brand { font-family: 'Abril Fatface', serif; font-weight: 400; }
.container { width: min(1120px, 90%); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); border-bottom: 1px solid #f3e3db; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 16px; }
.brand { font-size: 1.4rem; color: var(--ink); text-decoration: none; letter-spacing: .02em; }
.brand span { color: var(--accent); }
.nav { display: flex; gap: 26px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 700; }
.nav a:hover { color: var(--accent); }
.header-wa { background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 8px; text-decoration: none; font-weight: 700; 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, #fbf1ec, #f4ddcf); padding: 90px 0 70px; text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.badge { display: inline-block; background: var(--dark); color: var(--gold); padding: 6px 14px; border-radius: 8px; font-size: .85rem; font-weight: 700; letter-spacing: .05em; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 3.7rem); margin: 18px 0 12px; }
.hero p { max-width: 640px; color: var(--muted); font-size: 1.05rem; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 700; 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); font-weight: 700; 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 #f3e3db; border-radius: 14px; 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.3rem; 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.7rem); }
.cta p { margin: 10px auto 24px; max-width: 520px; opacity: .8; }

.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: 'Abril Fatface', serif; margin-bottom: 10px; font-size: 1.25rem; }
.footer p { color: #d9bdb2; 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 #3a2420; font-size: .8rem; color: #b08f84; }

@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 #f3e3db; }
  .nav.open { display: flex; }
  .header-wa { font-size: .8rem; padding: 8px 12px; }
}
