/* =========================================================================
   CondoGestor — landing page
   Paleta oficial (doc/condogestor-paleta-cores.json)
   ========================================================================= */

:root {
  --blue-50:  #E8F0FF;
  --blue-100: #C6D8FF;
  --blue-500: #0052CC;
  --blue-600: #004AB8;
  --blue-700: #003E99;
  --navy:     #002F6C;
  --navy-900: #001F4D;
  --green-100:#CBEAD5;
  --green-500:#2E9F51;
  --green-600:#298F49;
  --purple-100:#DDD4F5;
  --purple-500:#7B61D1;
  --amber-500:#F4B223;

  --ink:      #1F2937;
  --muted:    #6B7280;
  --line:     #E5E7EB;
  --line-2:   #D1D5DB;
  --bg:       #F5F7FA;
  --bg-alt:   #FFFFFF;
  --surface:  #FFFFFF;

  --radius:   16px;
  --radius-sm:10px;
  --shadow-sm: 0 1px 2px rgba(17,24,39,.06), 0 1px 3px rgba(17,24,39,.05);
  --shadow-md: 0 10px 30px rgba(17,24,39,.08);
  --shadow-lg: 0 30px 60px -20px rgba(0,47,108,.30);
  --ring: 0 0 0 4px rgba(0,82,204,.18);

  --maxw: 1140px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* ---------- Botões ---------- */
.btn {
  --bg-btn: var(--blue-500);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: 0 12px 24px -10px rgba(0,82,108,.5); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--blue-700); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-500); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark { color: var(--blue-500); display: inline-flex; }
.brand-name { font-size: 19px; letter-spacing: -0.03em; color: var(--navy); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.btn) { font-weight: 500; color: var(--muted); font-size: 15px; }
.site-nav > a:not(.btn):hover { color: var(--ink); }
.nav-cta { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 80% at 85% 0%, rgba(0,82,204,.10), transparent 60%),
    radial-gradient(45% 60% at 5% 20%, rgba(123,97,209,.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg));
  padding: 76px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }

.eyebrow {
  display: inline-block; margin: 0 0 14px; max-width: 100%;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.3; color: var(--blue-600);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 6px 12px; border-radius: 999px;
}
.hero h1 { font-size: clamp(1.9rem, 6.4vw, 3.4rem); font-weight: 800; color: var(--navy); overflow-wrap: break-word; }
.hero h1 .hl {
  color: var(--blue-500);
  background: linear-gradient(180deg, transparent 66%, rgba(0,82,204,.14) 0);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); margin: 20px 0 30px; max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0;
  margin: 32px 0 0; font-size: 14px; color: var(--muted); font-weight: 500;
}
.hero-trust li { position: relative; padding-left: 22px; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 14px; height: 14px; transform: translateY(-50%);
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Mockup ---------- */
.hero-visual { position: relative; }
.mock {
  border-radius: 18px; overflow: hidden; background: #fff; max-width: 100%;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}
.mock * { min-width: 0; }
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #F1F3F7; border-bottom: 1px solid var(--line); }
.mock-bar > span { width: 10px; height: 10px; border-radius: 50%; background: #CBD2DE; }
.mock-bar > span:nth-child(1) { background: #F87171; }
.mock-bar > span:nth-child(2) { background: #FBBF24; }
.mock-bar > span:nth-child(3) { background: #34D399; }
.mock-url { margin-left: 10px; font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.mock-body { display: grid; grid-template-columns: 150px 1fr; min-height: 360px; }
.mock-side { background: linear-gradient(180deg, var(--navy), var(--navy-900)); color: #fff; padding: 16px 12px; }
.mock-logo { font-weight: 800; font-size: 13px; letter-spacing: -.02em; margin-bottom: 16px; opacity: .95; }
.mock-nav { display: grid; gap: 3px; }
.mock-nav > div { font-size: 12px; padding: 8px 10px; border-radius: 8px; color: rgba(255,255,255,.72); }
.mock-nav > div.on { background: rgba(255,255,255,.14); color: #fff; font-weight: 600; }

.mock-main { padding: 18px; background: var(--bg); }
.mock-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-h strong { font-size: 14px; color: var(--ink); display: block; }
.mock-h small { font-size: 11px; color: var(--muted); }
.mock-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue-500); color: #fff;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.mock-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.kpi-n { font-size: 20px; font-weight: 800; color: var(--navy); display: block; }
.kpi-l { font-size: 10.5px; color: var(--muted); }
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.mock-card-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mock-card-h strong { font-size: 12.5px; }
.tag { font-size: 9.5px; font-weight: 700; color: var(--green-600); background: var(--green-100); padding: 3px 8px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.mock-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink); padding: 8px 0; border-top: 1px solid var(--line); }
.mock-row:first-of-type { border-top: 0; }
.mock-row .mono { margin-left: auto; font-size: 10.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot-a { background: var(--amber-500); }
.dot-b { background: var(--blue-500); }
.dot-c { background: var(--purple-500); }

.mock-badge {
  position: absolute; left: -18px; bottom: 34px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-600); font-weight: 700; font-size: 13px;
  padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-md);
}

/* ---------- Stripe ---------- */
.stripe { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stripe-inner { padding: 26px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.stripe-inner p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 500; }
.stripe-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 16px; color: var(--navy); font-weight: 700; letter-spacing: -.01em; }
.stripe-items i { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }

/* ---------- Seções ---------- */
.section { padding: 88px 0; }
.section-alt { background: #fff; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; color: var(--navy); margin-top: 10px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 16px 0 0; }

/* Cenário */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.pain h3 { font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.pain h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--amber-500); flex: none;
}
.pain p { margin: 10px 0 0; color: var(--muted); font-size: .96rem; }

/* Solução */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.section-alt .value { background: #fff; }
.value-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.value-ico svg { width: 24px; height: 24px; }
.i-blue { background: var(--blue-50); color: var(--blue-600); }
.i-green { background: var(--green-100); color: var(--green-600); }
.i-purple { background: var(--purple-100); color: var(--purple-500); }
.i-navy { background: #E2E8F5; color: var(--navy); }
.value h3 { font-size: 1.08rem; color: var(--navy); }
.value p { margin: 10px 0 0; color: var(--muted); font-size: .95rem; }

/* Módulos */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mod:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.mod-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); color: #fff; }
.mod-ico svg { width: 26px; height: 26px; }
.mod h3 { font-size: 1.15rem; color: var(--navy); }
.mod p { margin: 12px 0 0; color: var(--muted); font-size: .96rem; }

/* Notificações WhatsApp */
.wa-section {
  background:
    radial-gradient(55% 70% at 88% 0%, rgba(46,159,81,.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg));
}
.eyebrow-wa { color: var(--green-600); background: var(--green-100); border-color: #A9DBBB; }
.wa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wa-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.wa-ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600)); color: #fff;
}
.wa-ico svg { width: 26px; height: 26px; }
.wa-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); background: #F1F3F7; border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.wa-badge.on { color: var(--green-600); background: var(--green-100); border-color: #A9DBBB; }
.wa-card h3 { font-size: 1.12rem; color: var(--navy); }
.wa-card p { margin: 12px 0 0; color: var(--muted); font-size: .96rem; }
.wa-note {
  text-align: center; margin: 34px auto 0; max-width: 640px; color: var(--muted);
  font-size: .95rem; background: var(--green-100); border: 1px solid #A9DBBB;
  border-radius: 12px; padding: 16px 20px;
}

/* Personas */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.persona { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.persona-featured {
  background: linear-gradient(180deg, var(--navy), var(--navy-900)); color: #fff; border-color: var(--navy);
  box-shadow: var(--shadow-lg); transform: translateY(-8px);
}
.persona-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-50); padding: 6px 12px; border-radius: 999px;
}
.persona-featured .persona-tag { color: #fff; background: rgba(255,255,255,.16); }
.persona ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.persona li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink); }
.persona-featured li { color: rgba(255,255,255,.9); }
.persona li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.persona-featured li::before { background: #6EE7A8; }
.persona-note {
  text-align: center; margin: 34px auto 0; max-width: 620px; color: var(--muted);
  font-size: .95rem; background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: 12px; padding: 16px 20px;
}
.persona-note em { color: var(--blue-700); font-style: normal; font-weight: 700; }

/* Segurança */
.sec-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.sec-head-left { text-align: left; margin: 0; }
.sec-head-left .section-sub { margin-top: 14px; }
.sec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.sec-list li {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px;
  font-size: .95rem; color: var(--muted); position: relative; padding-left: 52px;
}
.section .sec-list li { background: var(--bg); }
.sec-list li strong { display: block; color: var(--ink); margin-bottom: 3px; font-size: 1rem; }
.sec-list li::before {
  content: ""; position: absolute; left: 18px; top: 20px; width: 18px; height: 18px;
  background: var(--blue-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1 3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1 3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Planos */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); position: relative;
}
.plan-highlight { border: 2px solid var(--blue-500); box-shadow: var(--shadow-md); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-500); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: .02em; white-space: nowrap;
}
.plan h3 { font-size: 1.35rem; color: var(--navy); }
.plan-desc { color: var(--muted); font-size: .94rem; margin: 10px 0 20px; min-height: 3.6em; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.plan-feats li { position: relative; padding-left: 28px; font-size: .95rem; }
.plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
}
.plan-feats li.yes { color: var(--ink); }
.plan-feats li.yes::before {
  background: var(--green-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232E9F51' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.plan-feats li.no { color: var(--line-2); }
.plan-feats li.no::before {
  background: #F1F3F7
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239CA3AF' d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7l1.4-1.4L10.6 10.6l6.3-6.3z'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 22px; }

/* Roadmap */
.road { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: r; }
.road li { position: relative; padding-top: 30px; }
.road li::before {
  content: ""; position: absolute; left: 0; top: 6px; right: 0; height: 2px;
  background: var(--line-2);
}
.road-dot {
  position: absolute; left: 0; top: 0; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line-2); z-index: 1;
}
.road-dot.done { background: var(--green-500); border-color: var(--green-500); }
.road-dot.next { background: var(--blue-500); border-color: var(--blue-500); }
.road h3 { font-size: 1.05rem; color: var(--navy); }
.road p { margin: 8px 0 0; color: var(--muted); font-size: .94rem; }

/* CTA */
.cta {
  background:
    radial-gradient(50% 120% at 20% 0%, rgba(123,97,209,.28), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-900));
  color: #fff; padding: 84px 0;
}
.cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; }
.cta p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 18px auto 30px; max-width: 52ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-fine { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 18px; }

/* Footer */
.site-footer { background: #0B1220; color: rgba(255,255,255,.7); padding: 44px 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px 40px; align-items: start; }
.footer-brand .brand-name { color: #fff; font-size: 18px; font-weight: 800; }
.footer-brand p { margin: 8px 0 0; font-size: .92rem; max-width: 34ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin: 8px 0 0; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 560px; }
  .mock { transform: none; }
  .mock-badge { left: 12px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .mod-grid, .wa-grid, .persona-grid, .plan-grid, .road { grid-template-columns: repeat(2, 1fr); }
  .sec-grid { grid-template-columns: 1fr; gap: 32px; }
  .road li::before { display: none; }
}

@media (max-width: 880px) {
  .site-nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow-md);
  }
  .site-nav.open { transform: none; }
  .site-nav > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-cta { margin-top: 10px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 38px; }
  .pain-grid, .mod-grid, .wa-grid, .persona-grid, .plan-grid, .value-grid, .road { grid-template-columns: 1fr; }
  .persona-featured { transform: none; }
  .stripe-inner { justify-content: center; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 66px; }

  .mock-body { grid-template-columns: 108px 1fr; min-height: 0; }
  .mock-side { padding: 12px 9px; }
  .mock-nav > div { font-size: 11px; padding: 6px 8px; }
  .mock-main { padding: 12px; }
  .mock-kpis { gap: 6px; }
  .kpi { padding: 9px; }
  .kpi-n { font-size: 16px; }
  .mock-h strong { font-size: 12.5px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .mod { transition: none; }
}
