/* Estilo compartilhado pelas paginas-stub (quem somos, parcerias, etc.) — LIGHT THEME estilo PayZu */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
	--bg: #f7f8fa;
	--bg-soft: #f7f8fa;
	--surface: #ffffff;
	--surface-2: #ffffff;
	--border: rgba(0,0,0,0.08);
	--border-strong: rgba(0,0,0,0.14);
	--text: #0a0a0a;
	--muted: #6b7280;
	--accent: #ec008c;
	--accent-soft: rgba(236,0,140,0.10);
	--accent-hover: #d4007e;
}
html { /* compensa o header sticky */
	-webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}
html, body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.55; }
body { display: flex; flex-direction: column; min-height: 100vh; background: var(--bg); overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

.hero { padding: 56px 32px 40px; text-align: center; background: var(--bg); }
.hero .eyebrow { display: inline-flex; align-items: center; padding: 6px 14px; background: #fff; color: var(--text); border: 1px solid var(--border); border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.15; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { color: var(--muted); font-size: 16px; max-width: 680px; margin: 0 auto 24px; }
.hero .cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn { padding: 12px 26px; border-radius: 999px; text-decoration: none; font-weight: 500; font-size: 14px; transition: transform .15s, box-shadow .15s, background .15s; display: inline-block; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(236,0,140,.25); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.main { flex: 1; max-width: 1200px; width: 100%; margin: 0 auto; padding: 32px 32px 80px; background: var(--bg); }
.section { margin-bottom: 56px; }
.section h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; letter-spacing: -0.01em; }
.section h2::before { content: ''; width: 4px; height: 24px; background: var(--accent); border-radius: 2px; }
.section .sub { color: var(--muted); font-size: 14px; max-width: 680px; margin-bottom: 24px; }

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all .2s; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 17px; font-weight: 600; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.card .more { color: var(--accent); font-size: 13px; font-weight: 600; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }

.kvs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.kv { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.kv .num { font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.kv .lbl { font-size: 13px; color: var(--muted); }

.cta-block { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; text-align: center; margin: 40px 0; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.cta-block h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; justify-content: center; }
.cta-block h2::before { display: none; }
.cta-block p { color: var(--muted); margin-bottom: 20px; }

.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.list-clean li { padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; font-size: 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.list-clean li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

@media (max-width: 640px) {
	.hero { padding: 40px 20px 28px; }
	.main { padding: 24px 20px 56px; }
}
