:root {
  --bg: #f5f7fb; --bg-soft: #eef1f8; --card: #fff; --line: #e4e9f2; --line-soft: #edf0f6;
  --ink: #0e1430; --text: #1b2347; --muted: #5f6c88; --muted-2: #95a0b8;
  --navy: #101840; --brand: #fb8b1e; --brand-deep: #e9700a; --green: #12a067;
  --grad: linear-gradient(135deg, #ffb020 0%, #fb7e16 100%);
  --grad-2: linear-gradient(135deg, #fda01a, #fb7414);
  --radius: 16px; --radius-lg: 22px;
  --shadow: 0 16px 44px rgba(16,24,64,.10); --shadow-sm: 0 4px 16px rgba(16,24,64,.06);
  --shadow-glow: 0 10px 26px rgba(251,124,20,.32);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; } html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
a { color: var(--brand-deep); text-decoration: none; }
h1, h2, h3, h4 { letter-spacing: -.02em; color: var(--ink); margin: 0; }

.bg-glow { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 460px at 12% -8%, rgba(251,124,20,.10), transparent 60%),
              radial-gradient(680px 460px at 92% -2%, rgba(16,24,64,.06), transparent 55%),
              radial-gradient(600px 480px at 50% 108%, rgba(251,124,20,.07), transparent 60%); }

/* topbar */
.topbar { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(245,247,251,.82); backdrop-filter: blur(14px); }
.topbar-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--navy); box-shadow: var(--shadow-sm); }
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { font-size: 19px; font-weight: 800; }
.brand-text strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--text); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--brand-deep); }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; }

/* buttons */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; cursor: pointer; background: var(--grad-2); color: #fff !important; font-weight: 700; font-size: 15px; font-family: inherit; padding: 13px 22px; border-radius: 13px; box-shadow: var(--shadow-glow); transition: transform .08s, filter .2s, box-shadow .2s; }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 14px 36px rgba(251,124,20,.42); }
.btn-primary.sm { padding: 9px 18px; font-size: 14px; border-radius: 11px; }
.btn-primary.lg, .btn-ghost.lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn-primary.block, .btn-ghost.block { width: 100%; }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; background: #fff; color: var(--ink) !important; border: 1px solid var(--line); padding: 13px 22px; border-radius: 13px; cursor: pointer; font-size: 15px; font-weight: 700; font-family: inherit; transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--brand); background: rgba(251,124,20,.06); }

/* hero */
.hero { padding: 70px 0 40px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--brand-deep); background: rgba(251,124,20,.1); border: 1px solid rgba(251,124,20,.26); padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 6.5vw, 60px); line-height: 1.07; font-weight: 800; margin-bottom: 20px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { color: var(--muted); max-width: 640px; margin: 0 auto 32px; font-size: 18px; }
.hero .sub strong { color: var(--text); font-weight: 700; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 34px; color: var(--muted); font-size: 13.5px; font-weight: 500; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { color: var(--green); }

/* sections */
.section { padding: 56px 22px; }
.kicker { display: block; text-align: center; color: var(--brand-deep); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.sec-title { text-align: center; font-size: clamp(25px, 3.6vw, 34px); font-weight: 800; }
.sec-sub { text-align: center; color: var(--muted); max-width: 580px; margin: 12px auto 40px; }

/* produtos */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.prod { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.prod.live { border-color: rgba(251,124,20,.35); }
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.prod-ic { font-size: 30px; }
.tag { font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; }
.tag-live { background: rgba(18,160,103,.13); color: var(--green); }
.tag-soon { background: rgba(16,24,64,.07); color: var(--muted); }
.prod h3 { font-size: 21px; margin-bottom: 8px; }
.prod p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
.prod-link { font-weight: 700; font-size: 15px; }

/* serviços */
.serv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.serv { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s, border-color .18s, box-shadow .18s; }
.serv:hover { transform: translateY(-4px); border-color: rgba(251,124,20,.4); box-shadow: var(--shadow); }
.serv.soon { opacity: .82; }
.serv-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(251,124,20,.12); color: var(--brand-deep); margin-bottom: 16px; }
.serv-ic svg { width: 24px; height: 24px; }
.serv h3 { font-size: 17px; margin-bottom: 8px; }
.serv p { color: var(--muted); font-size: 14px; margin: 0; }
.mini-tag { font-size: 10px; font-weight: 700; color: var(--muted); background: var(--bg-soft); padding: 2px 7px; border-radius: 6px; vertical-align: middle; }

/* planos */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan.featured { border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, var(--grad) border-box; border: 2px solid transparent; box-shadow: var(--shadow-glow); }
.plan-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-2); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 15px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.plan-price { margin: 10px 0 18px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.plan-price .from { font-size: 12px; color: var(--muted-2); width: 100%; }
.plan-price .amount { font-size: 36px; font-weight: 800; color: var(--ink); }
.plan-price .per { color: var(--muted); font-size: 15px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; flex: 1; }
.plan-list li { padding-left: 26px; position: relative; font-size: 14.5px; }
.plan-list li.yes::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* por que */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 16px; }
.why { text-align: center; padding: 14px; }
.why-n { font-size: 34px; display: block; margin-bottom: 10px; }
.why h4 { font-size: 16px; margin-bottom: 6px; }
.why p { color: var(--muted); font-size: 14px; margin: 0; }

/* cta */
.cta-final { text-align: center; padding: 64px 30px; margin: 30px auto 70px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); max-width: 1036px; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 200px at 50% 0%, rgba(251,124,20,.13), transparent 70%); }
.cta-final h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 10px; position: relative; }
.cta-final p { color: var(--muted); margin: 0 0 28px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 40px 0 30px; }
.foot-in { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.foot-brand { font-weight: 800; font-size: 18px; color: var(--ink); }
.foot-brand strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot-in p { color: var(--muted); font-size: 14px; margin: 4px 0 0; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--text); font-weight: 600; font-size: 14px; }
.foot-copy { color: var(--muted-2); font-size: 12.5px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft); }

@media (max-width: 880px) {
  .serv-grid, .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { position: fixed; top: 66px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 18px; display: none; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav a.btn-primary { margin-top: 10px; border-bottom: 0; }
  .nav-toggle { display: block; }
  .prod-grid, .plans { grid-template-columns: 1fr; }
  .serv-grid, .why-grid { grid-template-columns: 1fr; }
}
