:root {
  --bg: #ffffff;
  --ink: #24140f;
  --muted: #6b5d56;
  --accent: #c23a6b;
  --accent-2: #8e2450;
  --soft: #fdf2f6;
  --gold: #d8a25a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, .brand { font-family: 'Syne', sans-serif; }

.container { width: min(1120px, 90%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { font-size: 1.15rem; font-weight: 800; color: var(--ink); text-decoration: none; }
.brand span { color: var(--accent); }
.nav { display: flex; gap: 24px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.header-wa {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 10px 16px; 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 */
.hero {
  background: linear-gradient(135deg, #fff5f9, #ffe9f2);
  padding: 90px 0 70px;
  text-align: center;
}
.badge {
  display: inline-block; background: #fff; color: var(--accent);
  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.2rem, 6vw, 3.6rem); font-weight: 800; 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 26px; 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); }

/* Sections */
.section { padding: 70px 0; }
.section.alt { background: var(--soft); }
.section-ey {
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
  font-weight: 600; font-size: .85rem; margin-bottom: 6px;
}
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; 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 #f0e4ea; border-radius: 16px;
  padding: 26px; box-shadow: 0 6px 24px rgba(0,0,0,.04);
}
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .95rem; }

/* CTA */
.cta { background: var(--accent); color: #fff; text-align: center; padding: 70px 0; }
.cta h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta p { margin: 10px auto 24px; max-width: 520px; opacity: .9; }
.cta .btn-wa { background: #fff; color: var(--accent); }
.cta .btn-wa:hover { background: var(--gold); color: var(--ink); }

/* Footer */
.footer { background: var(--ink); 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: 'Syne', sans-serif; margin-bottom: 10px; }
.footer p { color: #b9a89f; font-size: .95rem; }
.footer a { color: var(--gold); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.disclaimer {
  text-align: center; margin-top: 30px; padding-top: 18px;
  border-top: 1px solid #3a2a22; font-size: .8rem; color: #8b7a71;
}

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