/* GDO — LP e páginas legais. Tokens do design system (documentation/GDO_ Design System Base). */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --green-500: #00c853;
  --green-600: #16a34a;
  --green-700: #0f8038;
  --green-800: #0c6630;
  --green-50: #eafbf1;
  --green-200: #a6ecc2;
  --amber-500: #ffb300;
  --amber-800: #92400e;
  --amber-50: #fff8e6;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --ink-500: #6b7280;
  --ink-200: #e5e7eb;
  --ink-100: #f3f4f6;
  --bg: #f8fafc;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.05), 0 2px 8px rgba(16, 24, 40, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink-900);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 20px; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
header.site img { height: 28px; }
header.site a.cta {
  background: var(--green-600); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 14px; padding: 10px 20px; border-radius: var(--radius-pill);
}
main { padding: 24px 0 64px; }
h1 { font-weight: 800; font-size: 34px; letter-spacing: -0.01em; line-height: 1.2; }
h2 { font-weight: 800; font-size: 22px; margin: 32px 0 10px; }
h3 { font-weight: 800; font-size: 17px; margin: 20px 0 6px; }
p, li { color: var(--ink-700); margin: 8px 0; }
ul { padding-left: 22px; }
a { color: var(--green-700); font-weight: 700; }
.muted { color: var(--ink-500); font-size: 14px; }
.card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 24px; margin: 16px 0;
}
.hero { text-align: center; padding: 48px 0 24px; }
.hero .badge {
  display: inline-block; background: var(--amber-50); color: var(--amber-800);
  border: 1px solid #ffe08a; font-weight: 800; font-size: 13px;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.hero p.sub { font-size: 18px; color: var(--ink-600); max-width: 560px; margin: 14px auto 26px; }
.btn-store {
  display: inline-block; background: var(--green-600); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 17px; padding: 16px 34px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(15, 128, 56, 0.28);
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
.steps .card { text-align: center; margin: 0; }
.steps .n {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-50);
  border: 1px solid var(--green-200); color: var(--green-700); font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
footer.site {
  border-top: 1px solid var(--ink-200); padding: 28px 0 40px; margin-top: 40px;
  font-size: 14px; color: var(--ink-500);
}
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }
footer.site a { font-weight: 700; }
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 27px; }
}
