/* =========================================================================
   Comprar Votos Enquete — LP mobile-first centralizada (design refinado)
   ========================================================================= */

:root {
  --blue:     #2563eb;
  --blue-700: #1b46c2;
  --blue-50:  #f0f5ff;
  --blue-100: #dbe6ff;
  --ink:      #0a0f1d;
  --ink-2:    #283449;
  --muted:    #6b7689;
  --line:     #ecf0f7;
  --line-2:   #e2e8f3;
  --bg:       #ffffff;
  --bg-2:     #f7f9fd;
  --green:    #15a34a;
  --amber:    #f5a623;
  --danger:   #e11d48;

  --grad: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --font:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --head:  "Space Grotesk", var(--font);

  --r:  14px;
  --r-lg: 22px;
  --sh-sm: 0 1px 2px rgba(10,15,29,.04), 0 4px 12px -4px rgba(10,15,29,.06);
  --sh:    0 2px 6px -2px rgba(10,15,29,.06), 0 16px 36px -16px rgba(10,15,29,.12);
  --sh-lg: 0 50px 90px -50px rgba(20,30,55,.45);
  --col: 480px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--ink); line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  background: #fff;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--head); font-weight: 700; letter-spacing: -.02em; }

/* ---------- Shell full-width, conteúdo centralizado ---------- */
.shell { width: 100%; position: relative; }

/* conteúdo da landing fica numa coluna estreita centralizada */
.lp-wrap { width: 100%; max-width: var(--col); margin: 0 auto; padding: 0 22px; }
/* header pode ficar largo */
.lp-header .lp-wrap { max-width: 1080px; }

/* ---------- Botões ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 1rem; padding: 14px 24px; border-radius: 12px; transition: transform .15s, box-shadow .2s, background .2s; white-space: nowrap; letter-spacing: -.01em; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 22px -10px rgba(29,78,216,.7); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(29,78,216,.75); }
.btn-white { background: #fff; color: var(--blue); box-shadow: var(--sh); }
.btn-white:hover { transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: .9rem; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---------- Marca ---------- */
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--head); font-weight: 700; font-size: 1.08rem; color: var(--ink); letter-spacing: -.02em; }
.brand strong { color: var(--blue); font-weight: 700; }
.brand .logo { width: 31px; height: 31px; border-radius: 9px; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 5px 12px -4px rgba(29,78,216,.6); }
.brand .logo svg { width: 17px; height: 17px; }
.brand.sm { font-size: 1rem; }
.brand-img { height: 32px; width: auto; display: block; }

/* ---------- Header ---------- */
.lp-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.8); backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); }
.lp-header .nav { display: flex; align-items: center; justify-content: space-between; height: 60px; }

/* ---------- HERO ---------- */
.lp-hero { position: relative; padding: 40px 0 36px; text-align: center; background: radial-gradient(62% 55% at 50% -10%, rgba(37,99,235,.10), transparent 62%), #fff; }
.glow { display: none; }
.hero-grid { position: relative; z-index: 1; }

.pill { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line-2); padding: 6px 13px 6px 11px; border-radius: 999px; box-shadow: var(--sh-sm); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(21,163,74,.45)} 70%{box-shadow:0 0 0 7px rgba(21,163,74,0)} 100%{box-shadow:0 0 0 0 rgba(21,163,74,0)} }

.hero-copy h1 { font-size: clamp(2.05rem, 8.5vw, 2.6rem); font-weight: 700; line-height: 1.08; margin: 20px 0 16px; }
.hero-copy h1 .hl {
  color: var(--blue);
  background: linear-gradient(to bottom, transparent 60%, rgba(37,99,235,.17) 60%, rgba(37,99,235,.17) 92%, transparent 92%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 2px;
}
.hero-sub { color: var(--muted); font-size: 1.04rem; max-width: 410px; margin: 0 auto; }
.hero-sub b { color: var(--ink-2); font-weight: 600; }

.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 11px; margin: 26px 0 20px; }
.hero-cta .btn { width: 100%; max-width: 330px; }
.cta-note { font-size: .8rem; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.cta-note::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.badges-inline { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 18px; }
.badges-inline span { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.badges-inline svg { color: var(--green); }

.proof { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.avatars { display: flex; }
.av { width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .8rem; border: 2.5px solid #fff; margin-left: -10px; }
.av:first-child { margin-left: 0; }
.av.a1{background:#3b82f6}.av.a2{background:#1d4ed8}.av.a3{background:#60a5fa}.av.a4{background:#0a0f1d}
.av.more { background: var(--blue-50); color: var(--blue); font-size: .68rem; font-weight: 700; }
.proof-tx { text-align: left; font-size: .83rem; color: var(--muted); line-height: 1.4; }
.proof-tx b { color: var(--ink); font-weight: 600; }
.stars { color: var(--amber); letter-spacing: 1px; font-size: .9rem; }
.stars b { color: var(--ink); margin-left: 4px; font-weight: 700; }
.stars.sm { font-size: .82rem; }

/* Mockup do celular */
.hero-art { position: relative; display: flex; justify-content: center; margin-top: 38px; }
.phone { width: 230px; aspect-ratio: 9/18.5; background: #060a14; border-radius: 36px; padding: 7px; box-shadow: 0 40px 70px -30px rgba(10,15,29,.55), inset 0 0 0 1.5px #20283a; position: relative; }
.phone::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 64px; height: 5px; border-radius: 3px; background: #20283a; z-index: 3; }
.story { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: linear-gradient(160deg, #f9ce34, #ee2a7b 48%, #6228d7); padding: 16px 12px 14px; display: flex; flex-direction: column; }
.st-bars { display: flex; gap: 4px; margin-bottom: 13px; }
.st-bars i { flex: 1; height: 2.5px; border-radius: 2px; background: rgba(255,255,255,.4); overflow: hidden; }
.st-bars i::after { content: ""; display: block; height: 100%; width: var(--w, 0); background: #fff; }
.st-head { display: flex; align-items: center; gap: 8px; color: #fff; margin-bottom: auto; }
.st-av { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.22); display: grid; place-items: center; font-weight: 700; border: 1.5px solid #fff; font-size: .85rem; }
.st-head b { display: block; font-size: .78rem; }
.st-head span { font-size: .66rem; opacity: .85; }
.st-body { position: relative; }
.poll { background: #fff; border-radius: 18px; padding: 13px; box-shadow: 0 14px 34px -10px rgba(0,0,0,.5); }
.poll-q { font-weight: 700; font-size: .82rem; text-align: center; margin-bottom: 10px; font-family: var(--head); }
.poll-opt { position: relative; overflow: hidden; height: 36px; border-radius: 11px; border: 1.5px solid var(--line-2); background: #fff; margin-bottom: 7px; }
.poll-opt .po-fill { position: absolute; top: 0; left: 0; bottom: 0; width: var(--p, 0); background: rgba(37,99,235,.16); }
.poll-opt.win { border-color: var(--blue); }
.poll-opt.win .po-fill { background: var(--blue); }
.po-row { position: absolute; inset: 0; display: flex; align-items: center; gap: 8px; padding: 0 11px; font-weight: 700; font-size: .78rem; color: #1e293b; }
.po-row .n { width: 19px; height: 19px; border-radius: 50%; background: #fff; border: 1.5px solid var(--line-2); color: var(--muted); display: grid; place-items: center; font-size: .65rem; font-weight: 800; flex: none; }
.po-row em { margin-left: auto; font-style: normal; font-size: .74rem; font-weight: 800; }
.po-row--inv { color: #fff; clip-path: inset(0 calc(100% - var(--p)) 0 0); }
.po-row--inv .n { background: #fff; border-color: #fff; color: var(--blue); }
.float-badge { position: absolute; right: -6px; bottom: -14px; background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; box-shadow: 0 10px 22px -6px rgba(21,163,74,.7); animation: bob 2.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.art-card { position: absolute; display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line-2); box-shadow: var(--sh); padding: 8px 11px; border-radius: 11px; font-size: .74rem; font-weight: 700; }
.art-card.c1 { top: 18%; left: -6px; color: var(--blue); animation: bob 3.2s ease-in-out infinite; }
.art-card.c1 svg { color: var(--blue); }
.art-card.c2 { bottom: 13%; right: -8px; color: var(--green); animation: bob 3.6s ease-in-out infinite .4s; }
.art-card.c2 svg { color: var(--green); }

/* ---------- STATS ---------- */
.lp-stats { padding: 26px 0; background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line-2); border-radius: 18px; background: #fff; overflow: hidden; box-shadow: var(--sh-sm); }
.stats-grid > div { padding: 20px 12px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid > div:nth-child(2n) { border-right: 0; }
.stats-grid > div:nth-child(n+3) { border-bottom: 0; }
.lp-stats .num { font-family: var(--head); font-size: 1.55rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
.lp-stats .num b { font-weight: 700; }
.lp-stats .num small { font-size: .8rem; color: var(--muted); font-weight: 600; }
.lp-stats span { display: block; font-size: .74rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-top: 4px; }

/* ---------- Seções ---------- */
.lp-sec { padding: 46px 0; background: #fff; }
.lp-sec.alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.lp-final { background: #fff; }
.sec-head { text-align: center; margin-bottom: 30px; }
.kicker { display: inline-block; font-family: var(--head); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.sec-head h2 { font-size: 1.7rem; font-weight: 700; line-height: 1.14; }
.sec-head p { color: var(--muted); margin-top: 9px; font-size: .95rem; }
.sec-cta { text-align: center; margin-top: 30px; }
.sec-cta .btn { width: 100%; max-width: 330px; }

/* Como funciona */
.how-grid { display: grid; gap: 12px; }
.how-card { position: relative; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--sh-sm); display: flex; align-items: center; gap: 16px; transition: transform .18s, box-shadow .18s; }
.how-card:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.how-card .hn { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-50); color: var(--blue); font-family: var(--head); font-weight: 700; font-size: 1.1rem; flex: none; }
.how-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.how-card p { color: var(--muted); font-size: .9rem; line-height: 1.45; }

/* Garantias */
.feats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.feat-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 20px 16px; transition: transform .18s, box-shadow .18s; box-shadow: var(--sh-sm); }
.feat-card:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.feat-card .fic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; margin-bottom: 13px; }
.feat-card h3 { font-size: .98rem; margin-bottom: 5px; }
.feat-card p { color: var(--muted); font-size: .85rem; line-height: 1.5; }

/* Depoimentos */
.reviews { display: grid; gap: 12px; }
.review { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 20px; box-shadow: var(--sh-sm); }
.review p { font-size: .93rem; margin: 9px 0 14px; color: var(--ink-2); }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .rav { width: 37px; height: 37px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--head); }
.review .who b { display: block; font-size: .87rem; }
.review .who span { font-size: .77rem; color: var(--muted); }
.prints { display: grid; gap: 14px; margin-top: 20px; }
.chat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 15px; }
.chat-head { display: flex; align-items: center; gap: 8px; font-size: .79rem; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.chat-head .cav { width: 23px; height: 23px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: .7rem; font-weight: 700; }
.chat-head .on { color: var(--green); }
.bubble { max-width: 86%; padding: 9px 13px; border-radius: 14px; font-size: .87rem; margin-bottom: 7px; line-height: 1.4; }
.bubble.in { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.bubble.out { background: var(--blue); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }

/* FAQ */
.seo-text { max-width: 640px; margin: 0 auto; }
.seo-text p { color: var(--ink-2); font-size: .98rem; line-height: 1.7; margin-bottom: 14px; }
.seo-text h3 { font-size: 1.1rem; font-weight: 700; margin: 18px 0 8px; }
.seo-text ul { padding-left: 20px; margin-bottom: 14px; display: grid; gap: 7px; }
.seo-text li { color: var(--ink-2); font-size: .95rem; line-height: 1.6; }

.faq { display: grid; gap: 9px; }
.faq details { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.faq summary { padding: 16px 18px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; list-style: none; font-size: .94rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.35rem; color: var(--blue); transition: transform .2s; font-weight: 400; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 18px 16px; color: var(--muted); font-size: .9rem; }

/* CTA final */
.lp-final { padding: 46px 0; }
.final-box { position: relative; overflow: hidden; text-align: center; background: var(--ink); border-radius: var(--r-lg); padding: 44px 26px; color: #fff; box-shadow: var(--sh-lg); }
.final-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% -10%, rgba(59,130,246,.45), transparent 65%); }
.final-box .glow.g3 { display: none; }
.final-box h2 { position: relative; font-size: 1.6rem; font-weight: 700; }
.final-box p { position: relative; color: #aab6cc; margin: 11px 0 24px; font-size: .95rem; }
.final-box .btn { position: relative; width: 100%; max-width: 320px; }

/* Footer */
.lp-foot { background: var(--ink); color: #fff; padding: 38px 22px 34px; text-align: center; border-top: 1px solid rgba(255,255,255,.06); }
.lp-foot .brand { color: #fff; justify-content: center; margin-bottom: 14px; }
.lp-foot .brand strong { color: #7fb0ff; }
.lp-foot p { color: #8d97ab; font-size: .89rem; margin: 0 auto 16px; max-width: 360px; }
.foot-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.foot-links a { color: #c3cbd9; font-size: .87rem; font-weight: 500; }
.foot-links a:hover { color: #7fb0ff; }
.lp-foot small { color: #5a6478; font-size: .8rem; }

/* =========================================================================
   FLUXO (painel focado)
   ========================================================================= */
.flow { position: fixed; inset: 0; z-index: 100; background: #eef2f9; overflow-y: auto; -webkit-overflow-scrolling: touch; animation: flowin .25s ease; }
@keyframes flowin { from { opacity: 0; } to { opacity: 1; } }
.flow .app { width: 100%; max-width: 480px; min-height: 100dvh; margin: 0 auto; background: #fff; display: flex; flex-direction: column; }
@media (min-width: 540px) { .flow { padding: 28px 16px; } .flow .app { min-height: auto; border-radius: 28px; box-shadow: var(--sh-lg); overflow: hidden; } }

.top { padding: 16px 22px 0; position: relative; }
.flow-close { position: absolute; top: 14px; right: 16px; width: 33px; height: 33px; border-radius: 50%; background: var(--bg-2); color: var(--muted); font-size: .95rem; font-weight: 600; }
.flow-close:hover { background: var(--blue-50); color: var(--blue); }
.top .brand { display: flex; justify-content: center; }
.progress { display: flex; gap: 6px; margin-top: 18px; }
.progress span { flex: 1; height: 4px; border-radius: 999px; background: var(--line-2); transition: background .3s; }
.progress span.done { background: var(--blue); }
.step-count { text-align: center; font-size: .79rem; color: var(--muted); font-weight: 600; margin-top: 10px; }

.body { flex: 1; padding: 8px 22px 22px; }
.step { display: none; animation: fade .25s ease; }
.step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step h1 { font-size: 1.45rem; font-weight: 700; margin: 14px 0 6px; line-height: 1.2; }
.step .sub { color: var(--muted); font-size: .96rem; margin-bottom: 20px; }

.choices { display: grid; gap: 11px; }
.choice { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1.5px solid var(--line-2); border-radius: var(--r); background: #fff; text-align: left; width: 100%; transition: border-color .15s, background .15s, transform .1s; }
.choice:active { transform: scale(.99); }
.choice:not(:disabled):hover { border-color: var(--blue-100); }
.choice.sel { border-color: var(--blue); background: var(--blue-50); }
.choice:disabled { opacity: .5; cursor: not-allowed; }
.choice .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); }
.choice.sel .ic { background: var(--blue); color: #fff; }
.choice .tx { flex: 1; }
.choice .tx b { display: block; font-size: 1rem; }
.choice .tx span { font-size: .83rem; color: var(--muted); }
.choice .chk { width: 23px; height: 23px; border-radius: 50%; flex: none; border: 2px solid var(--line-2); display: grid; place-items: center; color: #fff; }
.choice.sel .chk { background: var(--blue); border-color: var(--blue); }
.choice .chk svg { width: 13px; height: 13px; opacity: 0; }
.choice.sel .chk svg { opacity: 1; }

.ig-phone { border-radius: 22px; padding: 22px 18px; background: linear-gradient(150deg, #f9ce34, #ee2a7b 48%, #6228d7); margin-bottom: 18px; }
.ig-card { background: #fff; border-radius: 18px; padding: 16px; box-shadow: 0 8px 30px -8px rgba(0,0,0,.35); }
.ig-q { font-family: var(--head); font-weight: 700; font-size: 1rem; text-align: center; margin-bottom: 14px; }
.ig-opts { display: grid; gap: 9px; }
.ig-opt { display: flex; align-items: center; gap: 11px; width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line-2); background: #fff; font-weight: 600; font-size: .94rem; transition: all .12s; }
.ig-opt .nbr { width: 25px; height: 25px; border-radius: 50%; flex: none; background: var(--bg-2); color: var(--muted); display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.ig-opt.sel { border-color: var(--blue); background: var(--blue-50); }
.ig-opt.sel .nbr { background: var(--blue); color: #fff; }
.ig-opt .pick { margin-left: auto; font-size: .71rem; font-weight: 700; color: var(--blue); opacity: 0; }
.ig-opt.sel .pick { opacity: 1; }

.hint { display: flex; gap: 8px; align-items: flex-start; font-size: .82rem; color: var(--muted); background: var(--blue-50); padding: 11px 13px; border-radius: 12px; }
.hint svg { flex: none; color: var(--blue); margin-top: 1px; }

.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.input-paste { position: relative; }
.input-paste input { padding-right: 84px !important; }
.paste-btn { position: absolute; top: 50%; right: 7px; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; color: var(--blue); background: var(--blue-50); border: 1px solid var(--blue-100); padding: 8px 12px; border-radius: 9px; transition: background .15s; }
.paste-btn:hover { background: var(--blue-100); }
.paste-btn.ok { color: var(--green); background: #eafaf0; border-color: #c7eed5; }
.field input { width: 100%; padding: 14px 15px; font-size: 1rem; color: var(--ink); border: 1.5px solid var(--line-2); border-radius: var(--r); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3.5px var(--blue-50); }
.field input::placeholder { color: #9aa6ba; }
.err { color: var(--danger); font-size: .82rem; margin-top: 8px; display: none; }
.err.show { display: block; }

.pacotes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pacote { position: relative; padding: 16px 12px; border: 1.5px solid var(--line-2); border-radius: var(--r); text-align: center; background: #fff; transition: all .12s; }
.pacote.sel { border-color: var(--blue); background: var(--blue-50); }
.pacote .q { font-family: var(--head); font-size: 1.3rem; font-weight: 700; }
.pacote .q small { font-size: .72rem; font-weight: 600; color: var(--muted); display: block; font-family: var(--font); }
.pacote .p { font-size: .9rem; font-weight: 700; color: var(--blue); margin-top: 4px; }
.pacote .bdg { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); font-size: .61rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #fff; background: var(--blue); padding: 2px 9px; border-radius: 999px; white-space: nowrap; }

.resumo { margin-top: 18px; border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.resumo .row { display: flex; justify-content: space-between; padding: 12px 16px; font-size: .91rem; }
.resumo .row + .row { border-top: 1px solid var(--line); }
.resumo .row span { color: var(--muted); }
.resumo .row b { font-weight: 600; max-width: 60%; text-align: right; word-break: break-all; }
.resumo .tot { background: var(--blue-50); }
.resumo .tot b { color: var(--blue); font-family: var(--head); font-size: 1.2rem; font-weight: 700; }

.actions { padding: 14px 22px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; display: flex; gap: 10px; position: sticky; bottom: 0; }
.actions.at-bottom { position: static; } /* último passo: não cobre os order bumps */
.actions .btn { flex: 1; padding: 15px; font-size: 1.01rem; font-weight: 700; border-radius: 13px; }
.btn-back { flex: 0 0 auto !important; background: var(--bg-2); color: var(--muted); padding: 15px 19px; }
.btn-back:hover { background: var(--blue-50); color: var(--blue); }
.funnel-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 16px; padding: 11px 16px; border-top: 1px solid var(--line); background: #fff; font-size: .76rem; font-weight: 700; color: var(--muted); }
.funnel-trust span { display: inline-flex; align-items: center; gap: 5px; }
.funnel-trust svg { color: var(--green); }

/* Urgência (oferta expira) */
.urgency { text-align: center; font-size: .82rem; font-weight: 700; color: #9a6800; background: #fff7e8; border-bottom: 1px solid #f6e0b0; padding: 9px 14px; }
.urgency b { font-variant-numeric: tabular-nums; }
.urgency.hot { color: #b4123a; background: #fff0f3; border-color: #fbcdd6; }

/* Botão flutuante WhatsApp */
.wa-float { position: fixed; right: 16px; bottom: 16px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px -6px rgba(37,211,102,.6); transition: transform .15s; }
.wa-float:hover { transform: scale(1.07); }

/* Toasts de prova social */
.toasts { position: fixed; left: 16px; bottom: 16px; z-index: 90; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-lg); border-radius: 14px; padding: 10px 14px; min-width: 250px; max-width: 300px; transform: translateX(-130%); opacity: 0; transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s; }
.toast.in { transform: none; opacity: 1; }
.t-av { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.t-tx { flex: 1; line-height: 1.25; }
.t-tx b { display: block; font-size: .84rem; }
.t-tx span { font-size: .8rem; color: var(--muted); }
.t-ago { font-size: .67rem; color: var(--muted); align-self: flex-start; white-space: nowrap; }
@media (max-width: 520px) { .toasts { left: 10px; right: 10px; bottom: 10px; } .toast { max-width: none; } }

/* ---------- Preços promocionais (verde + "de/por") ---------- */
.pacote .p { margin-top: 4px; line-height: 1.15; }
.pacote .p .old { display: block; color: var(--muted); text-decoration: line-through; font-size: .72rem; font-weight: 600; }
.pacote .p .now { color: var(--green); font-weight: 800; font-size: .98rem; }
.resumo .tot { background: #effdf4; }
.resumo .tot b { color: #137a38; }
.resumo .tot b .old { color: var(--muted); text-decoration: line-through; font-weight: 600; font-size: .78rem; margin-right: 7px; }
.resumo .tot b .now { color: #137a38; font-family: var(--head); }

/* ---------- Botão "Pedidos" no header ---------- */
.btn-track { background: #fff; border: 1px solid var(--line-2); color: var(--ink-2); }
.btn-track:hover { background: var(--blue-50); color: var(--blue); border-color: var(--blue-100); }
.btn-track svg { color: var(--blue); }

/* ---------- Páginas legais ---------- */
.legal { padding: 32px 0 48px; }
.legal .lp-wrap { max-width: 760px; }
.legal h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.legal-upd { color: var(--muted); font-size: .86rem; margin-bottom: 26px; }
.legal h2 { font-size: 1.15rem; font-weight: 700; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-2); font-size: .96rem; line-height: 1.7; }
.legal ul { padding-left: 20px; margin: 8px 0; display: grid; gap: 6px; }
.legal a { color: var(--blue); font-weight: 600; }
.legal .back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.legal .back:hover { color: var(--blue); }
.terms-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.terms-note a { color: var(--blue); font-weight: 600; }

/* ---------- Selos de segurança ---------- */
.selos { display: block; width: 100%; max-width: 300px; height: auto; aspect-ratio: 1100 / 336; object-fit: contain; margin: 16px auto 4px; }

/* ---------- Total destacado ---------- */
.bump-head { display: flex; align-items: center; gap: 7px; font-family: var(--head); font-weight: 700; font-size: .98rem; margin: 20px 0 11px; }
.bump-head svg { color: var(--amber); }
.total-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding: 16px 18px; border-radius: 16px; background: linear-gradient(135deg, #effdf4, #def7e8); border: 1px solid #bfe9cf; }
.tb-lbl { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #2f6b48; }
.tb-eco { display: block; font-size: .78rem; font-weight: 700; color: #15803d; margin-top: 3px; }
.tb-right { text-align: right; line-height: 1.05; }
.tb-right s { display: block; color: var(--muted); font-size: .82rem; font-weight: 600; }
.tb-right b { font-family: var(--head); font-size: 1.7rem; font-weight: 800; color: #137a38; }

/* ---------- Order bumps ---------- */
.bumps { display: grid; gap: 10px; margin-bottom: 4px; }
.bump { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1.5px solid var(--line-2); border-radius: var(--r); background: #fff; cursor: pointer; transition: border-color .15s, background .15s; position: relative; }
.bump:hover { border-color: var(--blue-100); }
.bump.on { border-color: var(--green); background: #f1fbf5; }
.bump input { position: absolute; opacity: 0; pointer-events: none; }
.bump-tick { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; transition: all .15s; }
.bump.on .bump-tick { background: var(--green); border-color: var(--green); }
.bump.on .bump-tick::after { content: "✓"; color: #fff; font-size: .8rem; font-weight: 800; }
.bump-info { flex: 1; }
.bump-info b { display: block; font-size: .94rem; }
.bump-info span { font-size: .8rem; color: var(--muted); }
.bump-info b .bump-off { display: inline-block; margin-left: 7px; font-size: .64rem; font-weight: 800; letter-spacing: .02em; color: #fff; background: #16a34a; padding: 3px 8px; border-radius: 999px; vertical-align: middle; }
.bump-price { text-align: right; line-height: 1.2; }
.bump-price s { display: block; color: var(--muted); font-size: .72rem; }
.bump-price em { font-style: normal; color: #137a38; font-weight: 800; font-size: .98rem; }

/* ---------- Modal de consulta ---------- */
.modal { position: fixed; inset: 0; z-index: 120; background: rgba(10,15,29,.55); display: grid; place-items: center; padding: 18px; animation: flowin .2s ease; }
.modal-card { width: 100%; max-width: 420px; background: #fff; border-radius: 22px; padding: 26px 22px; box-shadow: var(--sh-lg); position: relative; max-height: 90vh; overflow: auto; }
.lk-results { margin-top: 16px; display: grid; gap: 10px; }
.lk-empty { text-align: center; color: var(--muted); font-size: .9rem; padding: 12px 0; }
.lk-item { border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px; }
.lk-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.lk-top b { font-family: var(--head); }
.lk-meta { font-size: .83rem; color: var(--muted); }
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; border: 1px solid; }
.badge-ok{background:#eafaf0;border-color:#bce8cd;color:#0f7a38}
.badge-warn{background:#fff7e8;border-color:#f6e0b0;color:#9a6800}
.badge-info{background:var(--blue-50);border-color:var(--blue-100);color:var(--blue-700)}
.badge-danger{background:#fff0f3;border-color:#fbcdd6;color:#b4123a}
.badge-muted{background:#f1f4fa;border-color:var(--line-2);color:var(--muted)}

/* ---------- Tela de pagamento no funil ---------- */
.payscreen .pay-ok { width: 62px; height: 62px; border-radius: 50%; background: #eafaf0; color: var(--green); display: grid; place-items: center; margin: 8px auto 12px; }
.payscreen .pay-ok svg { width: 28px; height: 28px; }
.payscreen h1 { font-size: 1.4rem; }
.pix-box { margin: 16px 0; border: 1px dashed var(--line-2); border-radius: 14px; padding: 18px; text-align: center; background: var(--bg-2); }
.pix-ph { width: 84px; height: 84px; border-radius: 14px; background: #fff; border: 1px solid var(--line-2); display: grid; place-items: center; margin: 0 auto 10px; color: var(--ink-2); }
.pix-box p { font-size: .86rem; color: var(--muted); }
.pix-live { text-align: center; margin-top: 8px; }
.pix-status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: var(--blue-700); background: var(--blue-50); border: 1px solid var(--blue-100); padding: 8px 14px; border-radius: 999px; margin-bottom: 14px; }
.spin { width: 14px; height: 14px; border: 2px solid var(--blue-100); border-top-color: var(--blue); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pix-qr { width: 220px; height: 220px; margin: 0 auto; border: 1px solid var(--line-2); border-radius: 14px; padding: 8px; background: #fff; }
.pix-hint { font-size: .85rem; color: var(--muted); margin: 14px 0 10px; }
.pix-copy { display: flex; gap: 8px; }
.pix-copy input { flex: 1; padding: 12px 13px; border: 1.5px solid var(--line-2); border-radius: 12px; font-size: .82rem; color: var(--ink-2); background: var(--bg-2); font-family: ui-monospace, Menlo, monospace; }
.pix-copy .btn { flex: none; }
.pix-total { margin-top: 14px; font-size: .95rem; color: var(--muted); }
.pix-total b { color: var(--ink); font-family: var(--head); font-size: 1.2rem; margin-left: 4px; }

/* Selo de pagamento confirmado */
.pay-seal { width: 104px; height: 104px; border-radius: 50%; margin: 10px auto 18px; display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 32%, #36d684, #15a34a);
  box-shadow: 0 16px 32px -10px rgba(21,163,74,.55), 0 0 0 9px rgba(21,163,74,.12), 0 0 0 18px rgba(21,163,74,.06);
  animation: sealpop .45s cubic-bezier(.2,1.25,.4,1); }
.pay-seal::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px dashed rgba(21,163,74,.4); animation: sealspin 14s linear infinite; }
@keyframes sealpop { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes sealspin { to { transform: rotate(360deg); } }
.seal-check { width: 56px; height: 56px; position: relative; }
.seal-check circle { fill: none; stroke: rgba(255,255,255,.4); stroke-width: 3; }
.seal-check path { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 50; stroke-dashoffset: 50; animation: sealdraw .5s .28s ease forwards; }
@keyframes sealdraw { to { stroke-dashoffset: 0; } }
.pay-title { text-align: center; font-size: 1.45rem; font-weight: 900; letter-spacing: -.02em; }
.pay-sub { text-align: center; color: var(--muted); font-size: .95rem; margin-top: 5px; }
.pay-sub b { color: var(--ink); }
.pay-note { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: .87rem; font-weight: 700; color: #137a38; background: #effdf4; border: 1px solid #bfe9cf; border-radius: 12px; padding: 11px 14px; margin: 16px 0; }
.pay-note svg { color: #15a34a; flex: none; }
.pix-exp { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.pix-exp svg { color: var(--muted); }
.pix-exp.urgent { color: var(--danger); }
.pix-exp.urgent svg { color: var(--danger); }
.pix-status.expired { color: var(--danger); background: #fff0f3; border-color: #fbcdd6; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
