/* ── ZAT SISTEMAS — Global CSS ─────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #005CE8;
  --blue2:   #0049C0;
  --blue3:   #EBF2FF;
  --blue4:   #C6DAFB;
  --ink:     #0A0A0F;
  --ink2:    #3A3A4A;
  --ink3:    #767688;
  --rule:    #E4E4EE;
  --bg:      #F6F7FA;
  --white:   #FFFFFF;
  --green:   #097A3E;
  --green2:  #E6F4EE;
  --pink:    #F5004A;
  --pink2:   #FFF0F4;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── HEADER / NAV ─────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.header-top {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.zat-logo { display: flex; align-items: center; text-decoration: none; }
.zat-logo svg { width: 96px; height: 45px; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ink2);
  padding: 8px 14px; border-radius: 7px; transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--bg); color: var(--ink); }
.nav-links a.active { color: var(--blue); }
.nav-links .btn-account {
  background: var(--blue); color: #fff !important;
  padding: 9px 20px; border-radius: 7px; font-weight: 600;
  transition: background .15s;
}
.nav-links .btn-account:hover { background: var(--blue2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; display: block; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  margin-top: 72px;
  background: linear-gradient(160deg, #f0f5ff 0%, #e8effc 40%, #dce8fb 100%);
  padding: 80px 40px 80px;
}
.hero-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.hero-h1 {
  font-size: clamp(34px, 3.8vw, 54px); font-weight: 700;
  letter-spacing: -.045em; line-height: 1.06; color: var(--ink); margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; font-weight: 300; color: var(--ink3); }
.hero-p { font-size: 16.5px; color: var(--ink2); line-height: 1.75; max-width: 440px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--rule); color: var(--ink2);
  padding: 13px 22px; border-radius: 8px; font-size: 15px; font-weight: 500;
  transition: border-color .15s, color .15s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

/* Hero illustration — dashboard mockup */
.hero-illustration {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-scene {
  background: var(--white); border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 64px rgba(0,92,232,.1), 0 0 0 1px rgba(0,0,0,.05);
  width: 100%; max-width: 420px;
}
.scene-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--rule);
}
.scene-topbar-left { font-size: 14px; font-weight: 700; color: var(--ink); }
.scene-topbar-right { font-size: 11px; color: var(--ink3); background: var(--bg); padding: 4px 10px; border-radius: 20px; }
.scene-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px;
}
.scene-stat-card {
  background: var(--bg); border-radius: 12px; padding: 14px 16px;
}
.scene-stat-card.blue { background: var(--blue3); }
.scene-stat-label { font-size: 10px; color: var(--ink3); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 6px; }
.scene-stat-label.blue { color: var(--blue2); }
.scene-stat-value { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.04em; }
.scene-stat-value.blue { color: var(--blue); }
.scene-stat-hint { font-size: 10px; color: var(--ink3); margin-top: 2px; }
.scene-stat-hint.green { color: var(--green); }
.scene-agenda { background: var(--bg); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.scene-agenda-h { font-size: 11px; font-weight: 700; color: var(--ink2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.agenda-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--rule); }
.agenda-item:last-child { border-bottom: none; }
.agenda-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.agenda-dot.blue { background: var(--blue); }
.agenda-dot.pink { background: var(--pink); }
.agenda-dot.green { background: var(--green); }
.agenda-name { font-size: 12px; font-weight: 500; color: var(--ink); flex: 1; }
.agenda-time { font-size: 11px; color: var(--ink3); }
.agenda-proc { font-size: 10px; color: var(--ink3); }
.scene-badge {
  position: absolute; background: #fff; border: 1px solid var(--rule);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.scene-badge.left { left: -36px; top: 20%; }
.scene-badge.right { right: -28px; bottom: 20%; }
.sb-l { font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); margin-bottom: 3px; }
.sb-v { font-size: 17px; font-weight: 700; letter-spacing: -.03em; }
.sb-v.g { color: var(--green); }
.sb-v.b { color: var(--blue); }

/* ── LOGOS / SOCIAL PROOF ─────────────────────────── */
.proof-section { background: var(--white); padding: 48px 40px; border-bottom: 1px solid var(--rule); }
.proof-inner { max-width: 1320px; margin: 0 auto; }
.proof-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink3); text-align: center; margin-bottom: 28px; }
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; }
.proof-stat { background: #fff; padding: 28px 24px; text-align: center; }
.proof-stat-val { font-size: 36px; font-weight: 700; letter-spacing: -.05em; color: var(--blue); margin-bottom: 4px; }
.proof-stat-desc { font-size: 13px; color: var(--ink3); }

/* ── FUNCIONALIDADES ──────────────────────────────── */
.func-section { background: var(--bg); padding: 88px 40px; }
.func-inner { max-width: 1320px; margin: 0 auto; }
.func-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.func-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.func-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: 16px;
  padding: 32px; transition: border-color .15s, box-shadow .15s;
}
.func-card:hover { border-color: var(--blue4); box-shadow: 0 8px 32px rgba(0,92,232,.07); }
.func-icon {
  width: 48px; height: 48px; background: var(--blue3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.func-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.func-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -.02em; }
.func-desc { font-size: 13.5px; color: var(--ink3); line-height: 1.7; }
.func-tag { display: inline-flex; margin-top: 14px; font-size: 11px; font-weight: 600; color: var(--blue); background: var(--blue3); padding: 4px 10px; border-radius: 20px; letter-spacing: .04em; }

/* ── COMO FUNCIONA ────────────────────────────────── */
.como-section { background: var(--white); padding: 88px 40px; border-top: 1px solid var(--rule); }
.como-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.como-steps { display: flex; flex-direction: column; gap: 0; }
.como-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.como-step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; margin-top: 2px;
}
.step-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.step-desc { font-size: 13.5px; color: var(--ink3); line-height: 1.65; }
.como-screen {
  background: var(--bg); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
}
.como-screen-bar { background: var(--white); border-bottom: 1px solid var(--rule); padding: 14px 20px; display: flex; align-items: center; gap: 8px; }
.csb-dot { width: 10px; height: 10px; border-radius: 50%; }
.csb-dot.r { background: #FF5F57; }
.csb-dot.y { background: #FEBC2E; }
.csb-dot.g { background: #28C840; }
.como-screen-body { padding: 24px; }
.csb-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.csb-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.csb-badge { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.csb-badge.green { background: var(--green2); color: var(--green); }
.csb-table { width: 100%; }
.csb-th { display: grid; grid-template-columns: 2fr 1.2fr 1fr; gap: 8px; padding: 8px 12px; background: var(--bg); border-radius: 8px; margin-bottom: 6px; }
.csb-th span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink3); }
.csb-tr { display: grid; grid-template-columns: 2fr 1.2fr 1fr; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--rule); align-items: center; }
.csb-tr:last-child { border-bottom: none; }
.csb-tr span { font-size: 12.5px; color: var(--ink2); }
.csb-tr span.bold { font-weight: 600; color: var(--ink); }
.csb-dot-s { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }

/* ── PLANOS / PRICING ─────────────────────────────── */
.planos-section { background: var(--bg); padding: 88px 40px; border-top: 1px solid var(--rule); }
.planos-inner { max-width: 1320px; margin: 0 auto; }
.planos-head { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plano-card {
  background: var(--white); border: 1.5px solid var(--rule); border-radius: 20px;
  padding: 36px 32px; position: relative;
  transition: border-color .15s, box-shadow .15s;
}
.plano-card.destaque { border-color: var(--blue); box-shadow: 0 12px 48px rgba(0,92,232,.1); }
.plano-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 18px; border-radius: 20px;
  white-space: nowrap;
}
.plano-nome { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); margin-bottom: 8px; }
.plano-preco { margin-bottom: 6px; }
.plano-preco-de { font-size: 13px; color: var(--ink3); text-decoration: line-through; margin-bottom: 2px; }
.plano-preco-val { display: flex; align-items: baseline; gap: 4px; }
.plano-preco-val .cifrao { font-size: 18px; font-weight: 600; color: var(--ink2); }
.plano-preco-val .valor { font-size: 44px; font-weight: 700; letter-spacing: -.05em; color: var(--ink); }
.plano-preco-val .periodo { font-size: 14px; color: var(--ink3); }
.plano-desc { font-size: 13.5px; color: var(--ink3); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--rule); }
.plano-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plano-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink2); line-height: 1.55; }
.plano-features li .check { width: 18px; height: 18px; background: var(--green2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.plano-features li .check svg { width: 10px; height: 10px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.plano-features li .off { width: 18px; height: 18px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.plano-features li .off svg { width: 10px; height: 10px; stroke: var(--ink3); fill: none; stroke-width: 2; }
.plano-features li.inactive { color: var(--ink3); }
.btn-plano {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600;
  transition: background .15s, transform .1s;
}
.btn-plano.primary { background: var(--blue); color: #fff; }
.btn-plano.primary:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-plano.outline { border: 1.5px solid var(--rule); color: var(--ink2); }
.btn-plano.outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── DEPOIMENTOS ──────────────────────────────────── */
.depo-section { background: var(--white); padding: 88px 40px; border-top: 1px solid var(--rule); }
.depo-inner { max-width: 1320px; margin: 0 auto; }
.depo-head { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depo-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 16px; padding: 28px; }
.depo-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.depo-star { color: #F5A623; font-size: 15px; }
.depo-text { font-size: 14px; color: var(--ink2); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue3); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--blue); flex-shrink: 0;
}
.depo-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.depo-role { font-size: 12px; color: var(--ink3); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-section { background: var(--bg); padding: 88px 40px; border-top: 1px solid var(--rule); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--ink);
  text-align: left; cursor: pointer; background: none; border: none; font-family: inherit;
  gap: 16px;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--ink3); transition: transform .2s; }
.faq-icon.open { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--ink2); line-height: 1.8; padding: 0 0 20px; display: none; }
.faq-a.open { display: block; }

/* ── CTA FINAL ────────────────────────────────────── */
.cta-section { background: var(--blue); padding: 88px 40px; }
.cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.cta-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; letter-spacing: -.04em; line-height: 1.1; color: #fff; margin-bottom: 16px; }
.cta-title em { font-style: italic; font-weight: 300; opacity: .6; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--blue); padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; transition: transform .1s, box-shadow .15s; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); padding: 13px 22px; border-radius: 8px; font-size: 15px; font-weight: 500; transition: border-color .15s, color .15s; }
.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* ── FOOTER ───────────────────────────────────────── */
.site-footer { background: #07070F; border-top: 1px solid #10101C; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 64px 40px 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1E1E2E; margin-bottom: 28px; }
.ft-brand-logo { display: flex; align-items: center; margin-bottom: 16px; }
.ft-brand-logo svg { width: 96px; height: 45px; }
.ft-about { font-size: 13px; color: #7A7A96; line-height: 1.7; max-width: 220px; }
.ft-col-h { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #4A4A62; margin-bottom: 16px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 13px; color: #6A6A86; transition: color .15s; }
.ft-links a:hover { color: #A0A0BC; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: 12px; color: #3A3A52; }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 12px; color: #3A3A52; transition: color .15s; }
.ft-legal a:hover { color: #6A6A86; }
.ft-cnpj { font-size: 11.5px; color: #3A3A52; margin-top: 6px; }

/* ── PÁGINAS INTERNAS ─────────────────────────────── */
.page-hero { margin-top: 72px; background: var(--bg); border-bottom: 1px solid var(--rule); padding: 64px 40px 56px; }
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink3); margin-bottom: 20px; }
.breadcrumb a { color: var(--blue); }
.page-title { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -.04em; line-height: 1.1; color: var(--ink); margin-bottom: 14px; }
.page-sub { font-size: 16px; color: var(--ink2); line-height: 1.7; max-width: 560px; }
.page-content { max-width: 1320px; margin: 0 auto; padding: 64px 40px; }
.page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.content-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 14px; padding: 32px; margin-bottom: 24px; }
.content-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -.02em; }
.content-card p { font-size: 14px; color: var(--ink2); line-height: 1.75; }
.content-card p + p { margin-top: 12px; }
.highlight-box { background: var(--blue3); border: 1px solid var(--blue4); border-radius: 14px; padding: 28px 32px; margin-bottom: 24px; }
.highlight-box h3 { font-size: 17px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.highlight-box p { font-size: 14px; color: var(--ink2); line-height: 1.7; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink2); line-height: 1.6; }
.info-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex-shrink: 0; }

/* CONTATO / FORMULÁRIO */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--ink2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--rule);
  border-radius: 8px; font-size: 14px; color: var(--ink); background: #fff;
  font-family: inherit; transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── RESPONSIVO ───────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-inner, .como-inner, .page-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .func-grid, .planos-grid, .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .scene-badge { display: none; }
}
@media (max-width: 768px) {
  .header-top { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--rule); padding: 16px 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero, .func-section, .como-section, .planos-section, .depo-section, .faq-section, .cta-section, .proof-section, .page-hero, .page-content { padding-left: 20px; padding-right: 20px; }
  .func-grid, .planos-grid, .depo-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 48px 20px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }
