:root {
  --primary: #88CA73;
  --dark: #2D3238;
  --bg: #F7FAF8;
  --text: #1f2937;
  --muted: #5B6672;
  --card: #ffffff;
  --ring: rgba(136, 202, 115, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  height: 44px;
  width: auto;
  display: block;
}

.nav-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero {
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(136,202,115,.35), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(45,50,56,.25), transparent 55%),
    linear-gradient(160deg, #ffffff 0%, rgba(136,202,115,.10) 45%, rgba(45,50,56,.06) 100%);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3rem;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 1rem 0 .6rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 760px;
  margin: 0.75rem auto 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.badge {
  font-size: .85rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.7);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
}

.section-soft {
  background: rgba(255,255,255,.6);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}

.muted { color: var(--muted); }
.small { font-size: .95rem; }
.tiny { font-size: .85rem; }

.features {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 1.2rem 1.1rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.card h3 {
  margin: 0 0 .4rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  text-align: left;
  align-items: start;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .nav { justify-content: center; }
  .nav-actions { justify-content: center; }
}

.panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.list {
  margin: .75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: #0b1a10;
  box-shadow: 0 10px 24px var(--ring);
}

.btn-primary:hover { box-shadow: 0 14px 28px var(--ring); }

.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 26px rgba(45,50,56,.25);
}

.btn-ghost {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
  color: var(--dark);
}

.btn-lg { padding: .85rem 1.25rem; border-radius: 12px; }
.btn-block { width: 100%; }

.interest {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.footer {
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 1.25rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo { height: 28px; width: auto; }
.footer-right { display: flex; gap: .6rem; align-items: center; color: var(--muted); }
.footer-right a { color: var(--muted); }
.dot { opacity: .5; }

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--primary);
  color: #0b1a10;
  border-radius: 999px;
  padding: .8rem 1rem;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.whatsapp-fab:hover {
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
