/* SeguidoresIG — interface clara, lilás e arredondada.
   Mesmo arquivo serve a landing e o /order: as classes do checkout
   (.order-box, .pay-opt, .field, .btn…) foram mantidas com os MESMOS nomes,
   só repintadas, para o fluxo de compra continuar funcionando intacto. */

:root {
  /* Fundos e superfícies */
  --page-background: #F8F9FD;
  --surface: #FFFFFF;
  --surface-soft: #F5F2FF;
  --surface-muted: #F7F8FC;

  /* Cores principais */
  --primary: #754AFF;
  --primary-hover: #6338E8;
  --primary-dark: #5826D9;
  --primary-soft: #EEE8FF;

  /* Textos */
  --text-heading: #111426;
  --text-body: #68718A;
  --text-muted: #8991A5;

  /* Bordas e estados */
  --border: #E8EAF3;
  --success: #159C80;
  --error: #D94259;
  --pix: #0F9B8E;

  --gradient-primary: linear-gradient(135deg, #925CFF 0%, #6942F0 100%);
  --gradient-instagram: linear-gradient(110deg, #FFAA76 0%, #F23C99 46%, #783DF2 100%);
  --gradient-heading: linear-gradient(100deg, #EB3697 0%, #754AFF 100%);

  --shadow-card: 0 8px 28px rgba(33, 28, 72, 0.055);
  --shadow-button: 0 10px 24px rgba(112, 70, 255, 0.18);

  --radius-card: 22px;
  --radius-control: 16px;
}

* { box-sizing: border-box; margin: 0; }

body {
  background: var(--page-background);
  color: var(--text-heading);
  font: 16px/1.5 "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ── Cabeçalho ─────────────────────────────────────────────────────────── */
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
header.top > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo .mark {
  width: 36px; height: 36px; flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: var(--shadow-button);
}
.logo small { display: block; font-size: 11.5px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.nav-links { display: none; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--text-body); }
.nav-links a:hover { color: var(--primary); }
.lang { display: flex; align-items: center; gap: 4px; }
.lang a {
  font-size: 12.5px; font-weight: 700; color: var(--text-muted);
  padding: 6px 10px; border-radius: 9px;
}
.lang a.on { color: var(--primary); background: var(--primary-soft); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { padding: 30px 0 8px; }
.hero-copy { position: relative; z-index: 2; }

/* Título SEMPRE em duas linhas, nos dois idiomas: "redes sociais" e "redes
   sociales" têm larguras diferentes e, deixando o navegador quebrar sozinho,
   o espanhol virava três linhas e desalinhava o hero inteiro. */
.hero h1 {
  font-size: clamp(26px, 6.9vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 .grad {
  background: var(--gradient-heading);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  color: var(--text-body);
  font-size: clamp(15px, 4vw, 18px);
  margin-top: 14px;
  max-width: 36ch;
}
.hero-points {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 8px;
  font-size: 14px; color: var(--text-body);
}
.hero-points li { display: flex; align-items: flex-start; gap: 9px; }
.hero-points li::before {
  content: ""; flex: 0 0 auto;
  width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  background: var(--primary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23754AFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.hero-points b { color: var(--text-heading); font-weight: 700; }

/* Título e ilustração dividem a MESMA linha: a arte é uma coluna ao lado do
   texto, não um bloco abaixo dele — e por ser coluna própria nunca sobrepõe. */
.hero-head { display: flex; align-items: flex-start; gap: 10px; }
.hero-head h1 { flex: 0 1 auto; min-width: 0; }
.hero-art {
  position: relative; z-index: 1;
  flex: 0 0 116px; width: 116px; height: 116px; margin-top: 2px;
  pointer-events: none;
}
.hero-art .blob {
  position: absolute; right: -6%; top: 10%;
  width: 112px; height: 92px; border-radius: 26px;
  background: linear-gradient(150deg, rgba(146, 92, 255, 0.18), rgba(242, 60, 153, 0.13));
  transform: rotate(-7deg);
}
.hero-art .net-ico {
  position: absolute; left: 4%; top: 26%;
  width: 60px; height: 60px; border-radius: 18px;
  display: none; place-items: center;
  transition: opacity .2s;
}
.hero-art[data-net="instagram"] .ico-ig,
.hero-art[data-net="tiktok"] .ico-tt { display: grid; }
.hero-art .ico-ig { background: var(--gradient-instagram); box-shadow: 0 12px 26px rgba(242, 60, 153, 0.26); }
.hero-art .ico-tt { background: #14161F; box-shadow: 0 12px 26px rgba(20, 22, 31, 0.28); }
.hero-art .chip {
  position: absolute; right: -8%; top: 0;
  white-space: nowrap;
  background: var(--surface); border-radius: 999px;
  padding: 7px 13px 7px 9px;
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700;
  box-shadow: var(--shadow-card);
}

/* ── Configurador ──────────────────────────────────────────────────────── */
.config {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 16px 20px;
  margin-top: 22px;
}

/* Abas de rede */
.nets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  padding: 5px;
}
.net-tab {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; border: 0; border-radius: 12px;
  background: transparent; color: var(--text-body);
  font-size: 15.5px; font-weight: 700; cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
}
.net-tab svg { flex: 0 0 auto; }
.net-tab[aria-selected="true"] { color: #fff; }
.net-tab[data-net="instagram"][aria-selected="true"] {
  background: var(--gradient-instagram);
  box-shadow: 0 8px 20px rgba(242, 60, 153, 0.22);
}
.net-tab[data-net="tiktok"][aria-selected="true"] {
  background: #14161F;
  box-shadow: 0 8px 20px rgba(20, 22, 31, 0.24);
}
.net-tab .soon {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 999px; padding: 2px 7px; text-transform: uppercase;
}
.net-tab[aria-selected="true"] .soon { background: rgba(255,255,255,.22); color: #fff; }

/* Categorias de serviço */
.cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  padding: 5px;
  margin-top: 10px;
}
.cat {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 60px; padding: 8px 4px;
  border: 0; border-radius: 12px;
  background: transparent; color: var(--text-body);
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: background .18s, color .18s;
}
.cat svg { flex: 0 0 auto; }
.cat[aria-selected="true"] { background: var(--primary); color: #fff; box-shadow: var(--shadow-button); }
.cat[disabled] { opacity: .45; cursor: not-allowed; }

/* Título da seleção */
.pick-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 4px 12px; margin: 20px 0 10px;
}
.pick-head h2 { flex: 1 1 auto; }
.pick-head h2 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.pick-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  flex: 0 0 auto; white-space: nowrap;
}
@media (max-width: 400px) { .pick-note { display: none; } }

/* Grid de quantidades */
.qty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.qty-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  height: 60px; padding: 0 6px;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface); color: var(--text-heading);
  font-size: 17px; font-weight: 700; cursor: pointer;
  transition: border-color .18s, background .18s, color .18s, transform .18s;
}
.qty-btn:hover { border-color: #D6CCFF; }
.qty-btn[aria-pressed="true"] {
  background: var(--gradient-primary); color: #fff; border-color: transparent;
  box-shadow: var(--shadow-button);
}
.qty-btn .tick {
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: none; place-items: center; flex: 0 0 auto;
}
.qty-btn[aria-pressed="true"] .tick { display: grid; }
.qty-btn .tag {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 999px; padding: 2px 9px; white-space: nowrap;
}
.qty-btn[aria-pressed="true"] .tag { background: #fff; color: var(--primary-dark); }

/* Quantidade personalizada — neutro até ser acionado */
.custom {
  margin-top: 12px; padding: 14px;
  background: var(--surface-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  transition: border-color .18s, box-shadow .18s;
}
.custom[data-active="true"] { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(117,74,255,.10); }
.custom-label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); text-align: center; }
.custom-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.step-btn {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-body);
  font-size: 22px; font-weight: 700; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .18s, color .18s, border-color .18s;
}
.step-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.step-btn:disabled { opacity: .4; cursor: not-allowed; }
.step-btn.plus { background: var(--primary); border-color: var(--primary); color: #fff; }
.step-btn.plus:hover:not(:disabled) { background: var(--primary-hover); color: #fff; }
.custom-value {
  flex: 1; text-align: center;
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  background: none; border: 0; color: var(--text-heading); cursor: pointer;
  padding: 4px 0;
}
.custom[data-active="true"] .custom-value { color: var(--primary-dark); }
.custom-hint { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 2px; }

/* Resumo + preço */
.summary {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px; padding: 16px;
  background: var(--surface-soft);
  border-radius: var(--radius-control);
}
.summary .tagico {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: var(--surface);
  display: grid; place-items: center; color: var(--primary);
  box-shadow: var(--shadow-card);
}
.summary-main { min-width: 0; }
.summary-what { font-size: 13.5px; color: var(--text-body); }
.summary-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.summary-price {
  font-size: clamp(30px, 8vw, 40px); font-weight: 800;
  color: var(--primary); letter-spacing: -0.03em; line-height: 1.05;
}
.summary[data-unavailable="true"] { background: #FFF4F5; }
.summary[data-unavailable="true"] .summary-price { font-size: 18px; color: var(--error); }

/* Botão principal */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; min-height: 56px; padding: 0 20px;
  border: 0; border-radius: var(--radius-control);
  background: var(--gradient-primary); color: #fff;
  font-size: 17px; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: filter .18s, transform .18s, opacity .18s;
}
.btn:hover:not(:disabled) { filter: brightness(1.05); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; }
.btn.ghost {
  background: var(--surface); color: var(--text-heading);
  border: 1px solid var(--border); box-shadow: none;
}
.cta-row { margin-top: 14px; }

/* Faixa de confiança */
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.trust-item svg { color: var(--primary); }
.trust-item b { font-size: 12.5px; font-weight: 700; }
.trust-item span { font-size: 11.5px; color: var(--text-muted); line-height: 1.35; }

/* ── Seções ────────────────────────────────────────────────────────────── */
section.block { padding: 48px 0 0; }
h2.sec {
  font-size: clamp(26px, 6.4vw, 38px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15; text-align: center;
}
p.sec-sub {
  text-align: center; color: var(--text-body);
  max-width: 46ch; margin: 12px auto 0; font-size: 15.5px;
}

.cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px; box-shadow: var(--shadow-card);
}
.card .ico-box {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 12px;
}
.card .num {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  margin-bottom: 12px;
}
.card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.card p { color: var(--text-body); font-size: 14.5px; margin-top: 6px; }

/* Seção de serviços */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.svc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 18px; text-align: left;
  cursor: pointer; box-shadow: var(--shadow-card);
  transition: border-color .18s, transform .18s;
}
.svc:hover:not([disabled]) { border-color: #D6CCFF; transform: translateY(-2px); }
.svc[disabled] { opacity: .55; cursor: not-allowed; }
.svc .ico-box { width: 40px; height: 40px; border-radius: 12px; }
.svc h3 { font-size: 16px; }
.svc p { font-size: 13px; margin-top: 4px; }
.svc .more { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--primary); }

/* Benefícios */
.benefits { background: var(--surface-soft); }

/* FAQ */
.faq { max-width: 800px; margin: 26px auto 0; display: grid; gap: 10px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 16px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 15.5px;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--primary); font-size: 20px; font-weight: 700;
  line-height: 1; flex: 0 0 auto; transition: transform .18s;
}
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--text-body); font-size: 14.5px; margin-top: 10px; }

/* Chamada final */
.final {
  background: var(--surface-soft);
  border-radius: var(--radius-card);
  padding: 34px 22px; text-align: center;
  margin-top: 48px;
}
.final h2 { font-size: clamp(24px, 5.6vw, 32px); font-weight: 700; letter-spacing: -0.02em; }
.final p { color: var(--text-body); margin: 10px auto 20px; max-width: 40ch; }
.final .btn { max-width: 340px; margin: 0 auto; }

/* Rodapé */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  margin-top: 48px; padding: 28px 0 40px;
  color: var(--text-muted); font-size: 13px;
}
footer .foot-in { display: grid; gap: 16px; }
footer .foot-links { display: flex; flex-wrap: wrap; gap: 16px; }
footer .foot-links a:hover { color: var(--primary); }
footer .disclaimer { font-size: 12px; color: var(--text-muted); }

/* ── /order (checkout) — mesmas classes, repintadas ────────────────────── */
.order-box {
  max-width: 520px; margin: 26px auto 60px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.order-box h1 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.order-sum {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface-soft); border-radius: var(--radius-control);
  padding: 15px 16px; margin: 16px 0;
}
.order-sum b { font-size: 16px; }
.order-sum .val { font-size: 22px; font-weight: 800; color: var(--primary); }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; color: var(--text-body); margin-bottom: 6px; font-weight: 600; }
.field input {
  width: 100%; height: 50px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-heading); padding: 0 14px; font-size: 15px;
}
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(117,74,255,.10); }
.pay-opt {
  display: flex; align-items: center; gap: 12px; width: 100%;
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius-control); padding: 14px; margin-bottom: 10px;
  cursor: pointer; color: var(--text-heading); font-size: 15px; text-align: left;
}
.pay-opt.on { border-color: var(--primary); background: var(--surface-soft); }
.pay-opt .ico {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-muted); font-weight: 800; font-size: 12px; color: var(--text-body);
}
.pay-opt .ico.pix { color: var(--pix); }
.pay-opt small { display: block; color: var(--text-muted); font-size: 12.5px; }
.err {
  background: #FFF1F3; border: 1px solid #F6C9D0; color: #B3283C;
  border-radius: 14px; padding: 11px 14px; font-size: 14px; margin: 10px 0; display: none;
}
#pe-box { margin: 14px 0; }
.pix-area { text-align: center; }
.pix-area img {
  width: 220px; height: 220px; border-radius: 16px;
  background: #fff; padding: 8px; margin: 12px auto; display: block;
  border: 1px solid var(--border);
}
.pix-emv {
  font-size: 11.5px; word-break: break-all;
  background: var(--surface-muted); border: 1px dashed var(--border);
  border-radius: 12px; padding: 10px; color: var(--text-body);
  margin-bottom: 10px; max-height: 74px; overflow: auto;
}
.waiting { display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--text-muted); font-size: 14px; margin-top: 12px; }
.spin { width: 16px; height: 16px; border: 2px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: sp 1s linear infinite; }
@keyframes sp { to { transform: rotate(360deg); } }
.success { text-align: center; padding: 18px 0; }
.success .big { font-size: 52px; }
.success h2 { margin: 8px 0 6px; font-size: 22px; }
.success p { color: var(--text-body); font-size: 15px; }
.hidden { display: none !important; }

/* ── Desktop ───────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hero {
    display: grid; grid-template-columns: 1fr minmax(460px, 520px);
    gap: 56px; align-items: center;
    padding: 64px 0 8px;
  }
  .hero-copy { padding-right: 20px; }
  .hero h1 { max-width: 12ch; }
  .hero p.lead { font-size: 18px; max-width: 40ch; }
  .hero-head { gap: 20px; }
  .hero-art { flex: 0 0 168px; width: 168px; height: 168px; margin-top: 6px; }
  .hero-art .blob { right: -4%; top: 10%; width: 160px; height: 128px; border-radius: 34px; }
  .hero-art .net-ico { left: 2%; top: 24%; width: 84px; height: 84px; border-radius: 24px; }
  .hero-art .chip { right: -6%; top: 0; font-size: 13px; }
  .config { margin-top: 0; padding: 22px 20px 24px; }
  section.block { padding: 84px 0 0; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .qty-btn { font-size: 18px; }
  .cat { flex-direction: row; gap: 7px; font-size: 13.5px; min-height: 52px; }
  .final { margin-top: 84px; padding: 48px 32px; }
  footer .foot-in { grid-template-columns: 1.4fr 1fr; align-items: start; }
}

@media (max-width: 355px) {
  .hero-art { display: none; }
}

/* ── Acessibilidade ────────────────────────────────────────────────────── */
:where(button, a, input, summary):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Preço no Pix (5% off) — no resumo do configurador e no checkout. */
.summary-pix {
  font-size: 12.5px; font-weight: 700; color: var(--pix);
  margin-top: 3px;
}
.off-tag {
  display: inline-block; vertical-align: middle;
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em;
  background: rgba(15, 155, 142, .12); color: var(--pix);
  border-radius: 999px; padding: 2px 8px;
}

/* ── Antes / depois ───────────────────────────────────────────────────────
   Mock do perfil em CSS, sem foto: mostra a diferença de leitura que a prova
   social causa. Os números são ilustrativos e a legenda diz isso. */
.compare { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
.mock {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 22px 18px 18px;
  box-shadow: var(--shadow-card);
}
.mock-after { border-color: color-mix(in srgb, var(--primary) 32%, transparent); }
.mock-badge {
  position: absolute; top: -11px; left: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px; padding: 4px 12px;
}
.badge-before { background: var(--surface-muted); color: var(--text-muted); border: 1px solid var(--border); }
.badge-after { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-button); }
.mock-top { display: flex; align-items: center; gap: 16px; }
.mock-av {
  width: 62px; height: 62px; flex: 0 0 auto; border-radius: 50%;
  object-fit: cover; display: block;
}
/* No "antes" a foto sai dessaturada: o perfil é o mesmo, o que muda é o
   número — e o contraste visual reforça isso sem trocar a pessoa. */
.mock-before .mock-av { filter: grayscale(.85) opacity(.72); }
.mock-av.ring {
  border: 2.5px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--gradient-instagram) border-box;
  box-shadow: 0 6px 16px rgba(242, 60, 153, .22);
}
.mock-stats { display: flex; gap: 18px; flex: 1; }
.mock-stats div { text-align: center; }
.mock-stats strong { display: block; font-size: 17px; font-weight: 700; }
.mock-stats span { font-size: 11.5px; color: var(--text-muted); }
.mock-stats .hi strong { color: var(--primary); font-size: 20px; }
.mock-name { font-weight: 700; margin-top: 14px; font-size: 15px; }
.mock-bio { color: var(--text-body); font-size: 13.5px; margin-top: 2px; }
.mock-btn {
  display: block; text-align: center; margin-top: 14px;
  border-radius: 11px; padding: 9px; font-size: 13.5px; font-weight: 700;
}
.mock-btn-mute { background: var(--surface-muted); color: var(--text-muted); border: 1px solid var(--border); }
.mock-btn-on { background: var(--gradient-primary); color: #fff; }
.mock-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 7px; font-size: 13px; }
.mock-list li { display: flex; gap: 8px; align-items: flex-start; color: var(--text-body); }
.mock-list li::before { flex: 0 0 auto; font-weight: 700; }
.mock-list.neg li::before { content: "✕"; color: var(--error); }
.mock-list.pos li::before { content: "✓"; color: var(--success); }
.compare-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ── Order bumps ──────────────────────────────────────────────────────── */
.bumps { display: grid; gap: 12px; margin-top: 26px; }
.bump {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 16px; cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: border-color .18s, transform .18s;
}
.bump:hover:not([disabled]) { border-color: #D6CCFF; transform: translateY(-2px); }
.bump[disabled] { opacity: .5; cursor: not-allowed; }
.bump-ico {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 14px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.bump-txt { flex: 1; min-width: 0; }
.bump-txt b { display: block; font-size: 15px; font-weight: 700; }
.bump-txt small { display: block; font-size: 12.5px; color: var(--text-body); margin-top: 3px; }
.bump-go { flex: 0 0 auto; font-size: 13.5px; font-weight: 700; color: var(--primary); }

@media (min-width: 760px) {
  .compare { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 460px) {
  .bump-go { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Pedido: tela de obrigado e /orders (mesmo componente nos dois lugares)
   ───────────────────────────────────────────────────────────────────────── */
.ped { display: flex; flex-direction: column; gap: 16px; }

.ped-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; box-shadow: var(--shadow-card); overflow: hidden;
}
.ped-top {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border-bottom: 1px solid var(--border);
}
.ped-av {
  width: 60px; height: 60px; border-radius: 50%; flex: none;
  object-fit: cover; background: var(--surface-muted);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary-soft);
}
.ped-av-ph {
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-primary); color: #fff;
  font-size: 24px; font-weight: 700; letter-spacing: -.01em;
}
.ped-av-ico { width: 26px; height: 26px; display: block; }
.ped-av-ico svg { width: 100%; height: 100%; display: block; }
.ped-who { min-width: 0; flex: 1; }
.ped-user {
  font-weight: 700; color: var(--text-heading); font-size: 15.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ped-stats { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.ped-stats b { color: var(--text-body); font-weight: 600; }

.ped-chip {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.ped-chip.ok   { background: #E4F6F1; color: var(--success); }
.ped-chip.wait { background: #FFF3E0; color: #B26A00; }
.ped-chip.hold { background: #FDE8EC; color: var(--error); }
.ped-chip.dead { background: var(--surface-muted); color: var(--text-muted); }
.ped-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.ped-body { padding: 18px; }

/* ── Entrega em destaque ─────────────────────────────────────────────── */
.ent {
  background: var(--surface-soft); border-radius: 16px;
  padding: 16px 16px 14px; margin-bottom: 18px;
}
.ent-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.ent-big {
  font-size: 27px; font-weight: 800; color: var(--primary-dark);
  line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.ent-big small { font-size: 14px; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.ent-meta { font-size: 12.5px; color: var(--text-body); text-align: right; }
.ent-meta b { color: var(--primary-dark); font-size: 14px; font-variant-numeric: tabular-nums; }
.ent-rest { display: block; color: var(--text-muted); margin-top: 2px; }

.ent-bar { height: 10px; border-radius: 999px; background: #E3DAFF; overflow: hidden; }
.ent-bar > i {
  display: block; height: 100%; border-radius: 999px; min-width: 6px;
  background: var(--gradient-primary); transition: width .7s cubic-bezier(.4,0,.2,1);
}

.ent-steps { display: flex; gap: 6px; margin-top: 14px; }
.ent-step { flex: 1; display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--text-muted); }
.ent-step i {
  width: 17px; height: 17px; border-radius: 50%; flex: none;
  border: 2px solid #D8CEFA; display: flex; align-items: center; justify-content: center;
}
.ent-step i svg { width: 10px; height: 10px; color: #fff; }
.ent-step.done i { background: var(--success); border-color: var(--success); }
.ent-step.done { color: var(--success); font-weight: 600; }
.ent-step.now i {
  background: var(--primary); border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(117, 74, 255, .16);
}
.ent-step.now { color: var(--primary-dark); font-weight: 700; }
.ent-note { font-size: 12.5px; color: var(--text-muted); margin: 12px 0 0; line-height: 1.5; }

/* ── Linhas de detalhe ───────────────────────────────────────────────── */
.ped-line {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px;
}
.ped-line:last-child { border-bottom: 0; }
.ped-line span { color: var(--text-muted); }
.ped-line b { color: var(--text-heading); font-weight: 600; text-align: right; }
.ped-line a { color: var(--primary); }
.ped-code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: .07em; background: var(--surface-soft);
  padding: 4px 10px; border-radius: 8px; color: var(--primary-dark) !important;
}

/* ── Alerta de perfil privado ────────────────────────────────────────── */
.ped-alert { border-radius: 14px; padding: 16px; margin-top: 16px; background: #FFF7E6; border: 1px solid #FFE0A3; }
.ped-alert.bad { background: #FDECEF; border-color: #F6C9D1; }
.ped-alert h4 { margin: 0 0 7px; font-size: 15px; color: var(--text-heading); }
.ped-alert p { margin: 0 0 12px; font-size: 13.5px; color: var(--text-body); line-height: 1.55; }
.ped-alert ol { margin: 0 0 14px; padding-left: 18px; font-size: 13.5px; color: var(--text-body); line-height: 1.75; }
.ped-alert .btn { margin: 0; }

/* ── Avisos de push ──────────────────────────────────────────────────── */
.push-box {
  display: flex; align-items: center; gap: 13px; margin-top: 14px;
  border: 1px solid var(--border); border-radius: 14px; padding: 14px;
  background: var(--surface);
}
.push-box .px-ico { width: 21px; height: 21px; color: var(--primary); flex: none; }
.push-box .px-ico svg { width: 100%; height: 100%; }
.push-txt { flex: 1; min-width: 0; }
.push-txt b { display: block; font-size: 13.5px; color: var(--text-heading); }
.push-txt small { font-size: 12px; color: var(--text-muted); line-height: 1.45; display: block; margin-top: 2px; }
.push-btn {
  flex: none; border: 0; cursor: pointer; border-radius: 10px;
  background: var(--gradient-primary); color: #fff;
  font-weight: 700; font-size: 13px; padding: 9px 15px;
}
.push-btn[disabled] { opacity: .6; cursor: default; }
.push-box.on { background: #E4F6F1; border-color: #BCE6DC; }
.push-box.on .px-ico { color: var(--success); }
.push-box.on .push-btn { background: none; color: var(--success); font-weight: 600; }

/* ── Seletor de publicações ──────────────────────────────────────────── */
.posts-wrap { margin-top: 6px; }
.posts-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-body); margin-bottom: 9px; }
.posts-head a { color: var(--primary); cursor: pointer; font-weight: 600; }
.post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; max-height: 268px; overflow-y: auto; padding: 3px; }
.post-it {
  position: relative; aspect-ratio: 1; border-radius: 11px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; background: var(--surface-muted);
  transition: border-color .15s, transform .15s;
}
.post-it img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-it:hover { transform: translateY(-2px); }
.post-it.on { border-color: var(--primary); }
.post-it.on::after {
  content: ""; position: absolute; right: 5px; top: 5px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.post-it .kind { position: absolute; left: 5px; bottom: 5px; font-size: 11px; background: rgba(0,0,0,.55); color: #fff; padding: 1px 6px; border-radius: 6px; }
.posts-empty { font-size: 13px; color: var(--text-muted); padding: 10px 0; }

/* ── Upsell: catálogo navegável ──────────────────────────────────────── */
.ups { margin-top: 26px; }
.ups h3 { font-size: 17px; color: var(--text-heading); margin: 0 0 4px; letter-spacing: -.01em; }
.ups > p { font-size: 13.5px; color: var(--text-body); margin: 0 0 15px; }

.ups-tabs { display: flex; gap: 7px; margin-bottom: 10px; overflow-x: auto; padding-bottom: 2px; }
.ups-tabs::-webkit-scrollbar { height: 0; }
.ups-tab {
  flex: none; cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text-body); font-size: 13px; font-weight: 600;
  padding: 9px 14px; border-radius: 999px; transition: all .15s;
}
.ups-tab:hover { border-color: #D4CBF5; }
.ups-tab.on { border-color: var(--primary); background: var(--surface-soft); color: var(--primary-dark); }
.ups-ico { width: 15px; height: 15px; display: block; }
.ups-ico svg { width: 100%; height: 100%; display: block; }
.ups-tabs.sv { margin-bottom: 14px; }

.ups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ups-card {
  display: block; text-align: center; text-decoration: none;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 15px 10px 13px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.ups-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.ups-qty { font-weight: 800; color: var(--text-heading); font-size: 17px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.ups-svc { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.ups-price { font-weight: 700; color: var(--primary); font-size: 14.5px; margin-top: 8px; }
.ups-go {
  display: block; margin-top: 9px; font-size: 11.5px; font-weight: 700;
  color: var(--primary-dark); background: var(--surface-soft);
  border-radius: 8px; padding: 6px 0;
}
.ups-all { display: block; text-align: center; margin-top: 14px; font-size: 13.5px; color: var(--primary); font-weight: 600; }

/* ── Busca em /orders ────────────────────────────────────────────────── */
.find-box { display: flex; flex-direction: column; gap: 12px; }
.find-tabs { display: flex; gap: 8px; }
.find-tab {
  flex: 1; padding: 11px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: 13.5px; font-weight: 600; color: var(--text-body); text-align: center;
}
.find-tab.on { border-color: var(--primary); background: var(--surface-soft); color: var(--primary-dark); }
.ped-empty { text-align: center; padding: 26px 16px; color: var(--text-muted); font-size: 14px; }

@media (max-width: 560px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .ups-grid { grid-template-columns: repeat(2, 1fr); }
  .ent-big { font-size: 24px; }
  .ent-step span { display: none; }
  .ent-step { flex: none; }
  .ent-steps { gap: 10px; justify-content: flex-start; }
  .push-box { flex-wrap: wrap; }
  .push-btn { width: 100%; }
}

/* Meio de pagamento único: a caixa deixa de ser uma escolha e passa a
   informar como a cobrança será feita — sem borda de "selecionado" nem
   aparência de botão, que sugeriria uma alternativa que não existe. */
#pay-methods.unico .pay-opt {
  cursor: default;
  border-color: var(--border);
  background: var(--surface-muted);
}
#pay-methods.unico .pay-opt.on {
  border-color: var(--primary);
  background: var(--surface-soft);
}
.pay-opt .ico svg { width: 20px; height: 20px; display: block; }
.pay-opt .ico { color: var(--primary); }

/* Bandeiras aceitas no checkout. Ficam em tom neutro para não competir com o
   botão de pagar — a função é reconhecimento, não destaque. */
.bandeiras {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 7px; margin: 14px 0 4px;
}
.bnd {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; min-width: 40px; padding: 0 8px;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--surface);
}
.bnd svg { height: 18px; width: auto; display: block; }
.bnd b {
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  color: var(--text-muted);
}
.bnd-pix { color: var(--pix); }
.bnd-visa b { color: #1A1F71; letter-spacing: .06em; font-style: italic; }
.bnd-elo b { color: #211915; text-transform: lowercase; font-size: 13px; }
.bnd-amex b { color: #2E77BC; font-size: 10px; }
.bnd-apple { color: #000; }
.bnd-apple svg { height: 15px; }
.bnd-google svg { height: 15px; }
