:root{
  --bg:#0b0d12;
  --card:#121624;
  --card2:#0f1320;
  --text:#e9ecf5;
  --muted:#a7afc2;
  --primary:#3aa0ff;
  --primary2:#7c3aed;
  --danger:#ff3a5b;
  --line:rgba(255,255,255,.08);
  --shadow:0 18px 40px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:24px;
}

[data-theme="light"]{
  --bg:#f6f7fb;
  --card:#ffffff;
  --card2:#ffffff;
  --text:#0c1020;
  --muted:#58617a;
  --primary:#176bff;
  --primary2:#7c3aed;
  --danger:#e11d48;
  --line:rgba(10,15,30,.10);
  --shadow:0 14px 30px rgba(10,15,30,.14);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 50% -20%, rgba(124,58,237,.35), transparent 60%),
              radial-gradient(900px 480px at 20% 0%, rgba(58,160,255,.22), transparent 60%),
              var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit; text-decoration:none}
.container{max-width:980px; margin:0 auto; padding:14px}

.top{
  border-radius:var(--radius2);
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0));
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

.banner{
  height:210px;
  background:#111;
  background-size:cover;
  background-position:center;
  position:relative;
}
.banner::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.62) 100%);
}

.profileRow{
  position:relative;
  padding:14px 14px 16px;
  background:var(--card);
}
.avatar{
  width:92px; height:92px; border-radius:999px;
  border:3px solid rgba(255,255,255,.14);
  background:#0b0d12;
  background-size:cover;
  background-position:center;
  position:absolute;
  top:-46px;
  left:16px;
  box-shadow:0 16px 30px rgba(0,0,0,.35);
}
.meta{
  padding-left:118px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.nameLine{
  display:flex; align-items:center; gap:8px;
  font-weight:800;
  letter-spacing:.2px;
}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(58,160,255,.12);
  border:1px solid rgba(58,160,255,.30);
  color:var(--text);
  font-size:12px;
}
.username{color:var(--muted); font-size:13px; margin-top:2px}
.bio{color:var(--text); opacity:.92; margin-top:10px; font-size:14px; line-height:1.35}
.themeToggle{
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:999px;
  padding:10px 12px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .08s ease, background .2s ease;
}
.themeToggle:active{transform:scale(.98)}

.ctaWrap{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.cta{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border:none;
  color:white;
  width:100%;
  border-radius:20px;
  padding:16px 16px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 18px 34px rgba(124,58,237,.25), 0 14px 24px rgba(58,160,255,.18);
  position:relative;
  overflow:hidden;
  transition:transform .09s ease, filter .2s ease;
}
.cta:active{transform:translateY(1px) scale(.99)}
.cta small{display:block; opacity:.92; font-weight:700; margin-top:4px}

.subline{
  color:var(--muted);
  font-size:12.5px;
  text-align:center;
}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.media{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--card2);
  box-shadow:0 14px 26px rgba(0,0,0,.22);
}
.thumb{
  aspect-ratio:1/1;
  background-size:cover;
  background-position:center;
  position:relative;
}
.thumb.censored{
  filter:blur(10px) brightness(.85);
  transform:scale(1.06);
}
.lock{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
}
.lock .pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.16);
  font-weight:900;
}
.bar{
  display:flex;
  gap:8px;
  padding:10px 12px;
  justify-content:space-between;
  align-items:center;
  color:var(--muted);
  font-size:12px;
}
.bar .btnFake{
  display:inline-flex;
  gap:7px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

/* Bottom-sheet */
.sheetOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.48);
  z-index:9998;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.sheetOverlay.open{opacity:1; pointer-events:auto}
.sheet{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  transform:translateY(102%);
  transition:transform .22s cubic-bezier(.2,.9,.2,1);
  padding:12px;
}
.sheet.open{transform:translateY(0)}
.sheetCard{
  max-width:560px;
  margin:0 auto;
  border-radius:26px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  background-color:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.sheetHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
}
.grab{
  width:46px; height:5px; border-radius:999px;
  background:rgba(255,255,255,.18);
  margin:0 auto;
}
.closeBtn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  transition:transform .08s ease;
}
.closeBtn:active{transform:scale(.98)}
.sheetBody{padding:14px}
.sheetTitle{font-weight:1000; font-size:16px}
.priceTag{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

.form{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.field label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.field input{
  width:100%;
  background:rgba(255,255,255,.05);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 12px;
  outline:none;
}
.field input:focus{border-color:rgba(58,160,255,.55)}

.primaryBtn{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border:none;
  color:white;
  width:100%;
  border-radius:18px;
  padding:15px 14px;
  font-size:15px;
  font-weight:1000;
  cursor:pointer;
  transition:transform .09s ease, filter .2s ease;
}
.primaryBtn:active{transform:translateY(1px) scale(.99)}
.primaryBtn:disabled{opacity:.6; cursor:not-allowed}

.errorBox{
  display:none;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,58,91,.35);
  background:rgba(255,58,91,.08);
  color:var(--text);
  font-size:13px;
}
.errorBox.show{display:block}

@keyframes pix-spinner-rotate{
  to{ transform:rotate(360deg); }
}
.pix-loading-state{
  text-align:center;
  padding:8px 0 4px;
}
.pix-loading-visual{
  margin-bottom:4px;
}
.pix-loading-qr-frame{
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(252px,82vw);
  height:min(252px,82vw);
  max-height:min(252px,52vh);
  margin:0 auto 14px;
  padding:16px;
  box-sizing:border-box;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
[data-theme="privacy"] .pix-loading-qr-frame{
  background:rgba(0,0,0,.03);
}
.pix-loading-spinner{
  width:52px;
  height:52px;
  border-radius:50%;
  border:3px solid var(--line);
  border-top-color:var(--primary,#ff7a45);
  animation:pix-spinner-rotate .72s linear infinite;
}
@media (prefers-reduced-motion:reduce){
  .pix-loading-spinner{
    animation-duration:1.4s;
    border-top-color:var(--primary,#ff7a45);
  }
}
.pix-loading-msg{
  margin:0;
  font-size:.9375rem;
  font-weight:700;
  color:var(--text);
}
.pix-loading-sub{
  margin:6px 0 0;
  font-size:.8125rem;
  color:var(--text);
  opacity:.72;
}
[data-theme="privacy"] .pix-loading-msg{
  color:var(--pf-gray-800,#1f2937);
}
[data-theme="privacy"] .pix-loading-sub{
  color:var(--pf-gray-500,#6b7280);
  opacity:1;
}

.pixWrap{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.qr{
  display:flex;
  justify-content:center;
  padding:12px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.qr img{width:220px; height:220px; border-radius:14px}
.copyRow{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:8px;
}
.copyRow input{
  width:100%;
  background:rgba(255,255,255,.05);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 12px;
}
.copyRow button{
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:12px 12px;
  font-weight:900;
  cursor:pointer;
  transition:transform .08s ease;
}
.copyRow button:active{transform:scale(.98)}
.hint{
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}

@media (min-width: 900px){
  .banner{height:260px}
  .container{padding:22px}
  .grid{gap:12px}
}

/* --- Tema estilo Privacy (claro, pêssego, cantos arredondados) --- */
[data-theme="privacy"]{
  --bg:#f5f3ef;
  --card:#ffffff;
  --card2:#faf8f5;
  --text:#111111;
  --muted:#6b6b6b;
  --primary:#ff9a6b;
  --primary2:#ff7a45;
  --primaryText:#1a1a1a;
  --line:rgba(0,0,0,.08);
  --shadow:0 12px 40px rgba(15,15,20,.08);
  --radius:22px;
  --radius2:28px;
}

.privacy-body{
  margin:0;
  min-height:100%;
  font-family:"Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}

.privacy-shell{
  max-width:480px;
  margin:0 auto;
  padding:16px 14px 32px;
}

.privacy-logo{
  text-align:center;
  padding:8px 0 20px;
  font-weight:800;
  font-size:1.35rem;
  letter-spacing:-0.02em;
  color:var(--text);
}
.privacy-logoText{text-transform:lowercase}
.privacy-logoDot{color:#ff6b35;font-weight:900}

.privacy-hero{
  border-radius:var(--radius2);
  overflow:hidden;
  background:var(--card);
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.privacy-banner{
  height:168px;
  background:#ddd center/cover no-repeat;
  border-radius:var(--radius2) var(--radius2) 0 0;
}
.privacy-heroInner{
  position:relative;
  padding:0 16px 16px;
  background:var(--card);
}
.privacy-avatar{
  width:88px;height:88px;
  border-radius:999px;
  border:4px solid #fff;
  background:#ccc center/cover no-repeat;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  margin-top:-44px;
  margin-bottom:12px;
}
.privacy-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px 20px;
  justify-content:flex-end;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}
.privacy-stat{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.privacy-stat svg{width:16px;height:16px;stroke-width:2}

.privacy-card{
  margin-top:18px;
  padding:4px 4px 8px;
}
.privacy-name{
  margin:0;
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:-0.02em;
}
.privacy-handle{
  margin:4px 0 0;
  color:var(--muted);
  font-size:14px;
}
.privacy-bio{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.45;
  color:#333;
}
.privacy-bio--clamp{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}
.privacy-bio--clamp.is-expanded{
  display:block;
  -webkit-line-clamp:unset;
}
.privacy-readmore{
  margin:8px 0 0;
  padding:0;
  border:none;
  background:none;
  color:#e85d2a;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  font-family:inherit;
}
.privacy-sectionLabel{
  margin:22px 0 10px;
  font-weight:800;
  font-size:15px;
}
.privacy-plans{display:grid;gap:10px}
.privacy-planBtn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:16px 18px;
  border:none;
  border-radius:999px;
  background:linear-gradient(180deg,#ffe8d9,#ffd4b8);
  color:var(--primaryText);
  font-family:inherit;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 4px 0 rgba(255,140,90,.25);
  transition:transform .08s ease, filter .15s ease;
}
.privacy-planBtn:active{transform:translateY(2px) scale(.995)}
.privacy-planPrice{white-space:nowrap}
.privacy-legal{
  margin:12px 0 0;
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

.privacy-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-top:20px;
  padding:4px;
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  font-size:13px;
  font-weight:700;
}
.privacy-tab{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 8px;
  border-radius:18px;
  color:var(--muted);
}
.privacy-tab svg{width:16px;height:16px}
.privacy-tab--active{
  color:#e85d2a;
  border-bottom:3px solid #e85d2a;
  border-radius:0;
  padding-bottom:9px;
}

.privacy-feed{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.privacy-post{
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.privacy-postHead{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px 10px;
}
.privacy-postAvatar{
  width:40px;height:40px;border-radius:999px;
  background:center/cover no-repeat;
  flex-shrink:0;
}
.privacy-postName{font-weight:800;font-size:14px}
.privacy-postUser{font-size:12px;color:var(--muted);margin-top:2px}
.privacy-postMeta{flex:1;min-width:0}
.privacy-postMenu{
  border:none;background:transparent;padding:8px;cursor:pointer;color:var(--muted);
  border-radius:10px;
}
.privacy-postMenu svg{width:20px;height:20px}

.privacy-thumb{
  aspect-ratio:1/1;
  background:center/cover no-repeat;
  position:relative;
}
.privacy-thumb--locked{
  filter:blur(11px) brightness(.92);
  transform:scale(1.04);
}
.privacy-lockOverlay{
  position:absolute;inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  background:linear-gradient(180deg,rgba(245,230,210,.3),rgba(210,190,165,.55));
}
.privacy-lockIcon{
  width:56px;height:56px;
  color:#5c4a3a;
  stroke-width:1.2;
}
.privacy-lockStats{
  display:flex;gap:16px;
  font-size:12px;font-weight:700;
  color:#5a4a3a;
}
.privacy-lockStats span{display:inline-flex;align-items:center;gap:4px}
.privacy-lockStats svg{width:14px;height:14px}

.privacy-postBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.privacy-postActions{display:flex;gap:6px}
.privacy-icoBtn{
  display:inline-flex;
  padding:8px;
  border-radius:10px;
}
.privacy-icoBtn svg{width:18px;height:18px}

[data-theme="privacy"] .sheetOverlay{
  background:rgba(20,18,16,.45);
}
[data-theme="privacy"] .sheetCard{
  background:var(--card);
  border-color:var(--line);
}
[data-theme="privacy"] .grab{background:rgba(0,0,0,.12)}
[data-theme="privacy"] .sheetTitle{color:var(--text)}
[data-theme="privacy"] .priceTag{color:var(--muted)}
[data-theme="privacy"] .field label{color:var(--muted)}
[data-theme="privacy"] .field input{
  background:#faf8f5;
  color:var(--text);
  border-color:var(--line);
}
[data-theme="privacy"] .closeBtn{
  background:#f3f0eb;
  color:var(--text);
  border-color:var(--line);
}
.privacy-primaryBtn,
[data-theme="privacy"] .primaryBtn{
  background:linear-gradient(180deg,#ffe8d9,#ffc9a8);
  color:var(--primaryText);
  box-shadow:none;
  border-radius:999px;
  font-weight:800;
}
[data-theme="privacy"] .hint{color:var(--muted)}
[data-theme="privacy"] .copyRow input{background:#faf8f5;color:var(--text)}
[data-theme="privacy"] .copyRow button{background:#f3f0eb;color:var(--text)}
[data-theme="privacy"] .qr{background:#faf8f5}

.privacy-thanks{padding-top:24px}
.privacy-thanksCard{
  text-align:center;
  padding:34px 22px 34px;
  background:var(--card);
  border-radius:var(--radius2);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.privacy-thanksIcon{
  display:flex;
  justify-content:center;
  margin-bottom:12px;
  color:#22c55e;
}
.privacy-thanksIcon svg{width:56px;height:56px;stroke-width:1.6}
.privacy-thanksTitle{
  margin:0;
  font-size:1.75rem;
  font-weight:800;
  letter-spacing:-0.03em;
}
.privacy-thanksText{
  margin:12px 0 24px;
  font-size:15px;
  line-height:1.5;
  color:var(--muted);
  max-width:320px;
  margin-left:auto;
  margin-right:auto;
}
.privacy-telegramBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  max-width:340px;
  padding:16px 22px;
  border-radius:999px;
  background:linear-gradient(180deg,#2aabee,#229ed9);
  color:#fff;
  font-weight:800;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(34,158,217,.35);
  transition:transform .08s ease, filter .15s ease;
}
.privacy-telegramBtn:active{transform:translateY(1px) scale(.995)}
.privacy-telegramIcon{display:flex;align-items:center;justify-content:center}
.privacy-telegramIcon svg{width:20px;height:20px;stroke-width:2.4}
.privacy-thanksHint{
  margin:18px 0 0;
  font-size:12px;
  color:var(--muted);
}
.privacy-backLink{
  display:inline-block;
  margin-top:20px;
  font-size:14px;
  font-weight:700;
  color:#e85d2a;
}

.pf-offers-list{
  display:grid;
  gap:10px;
}
.pf-offer-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  color:inherit;
  text-align:left;
  cursor:pointer;
}
.pf-offer-item:disabled{opacity:.65;cursor:wait}
.pf-offer-item strong{font-size:14px}
.pf-offer-item p{margin:4px 0 0;font-size:12px;color:var(--muted)}
.pf-offer-item span{font-weight:700;color:var(--pf-orange-500,#f97316)}
.pf-offer-badge-mini{
  display:inline-block;
  margin-top:6px;
  font-size:11px;
  color:#f8b17b;
}
.pf-offer-item--featured{
  border-color:rgba(249,115,22,.45);
  box-shadow:0 0 0 1px rgba(249,115,22,.2) inset;
}

/* Oferta principal + bônus integrado (sem sobreposição) */
.pf-offer-primary-wrap{
  display:grid;
  gap:.55rem;
  margin-bottom:.5rem;
}
.pf-bonus-overlap-pill{
  margin:0;
  padding:.5rem .75rem;
  font-size:.75rem;
  line-height:1.42;
  font-weight:600;
  border-radius:14px;
  background:var(--pf-orange-100);
  color:var(--pf-orange-800);
  border:1px solid rgba(249,115,22,.35);
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  word-break:break-word;
  overflow-wrap:anywhere;
}
.pf-bonus-after-pill{
  margin-top:.45rem !important;
}

/* Promoções: cards brancos com borda laranja clara (tipo print) */
.pf-promo-card .pf-promo-body{
  padding-top:.25rem;
}
.pf-promo-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:.4rem 0 .65rem;
  margin:0;
  border:none;
  background:transparent;
  font:inherit;
  font-weight:800;
  font-size:1rem;
  color:var(--pf-gray-800);
  cursor:pointer;
  border-bottom:1px solid var(--pf-gray-100);
}
.pf-promo-chevron{
  width:22px !important;
  height:22px !important;
  stroke-width:2.5px;
  color:var(--pf-gray-500);
  transition:transform .22s ease;
}
.pf-promo-toggle.is-open .pf-promo-chevron{
  transform:rotate(-180deg);
}
.pf-promo-list{
  display:flex;
  flex-direction:column;
  gap:.65rem;
  margin-top:.6rem;
}
.pf-promo-list[hidden]{
  display:none !important;
}
.pf-promo-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  width:100%;
  padding:.9rem 1rem;
  border-radius:var(--pf-radius);
  background:#fff;
  border:1px solid var(--pf-orange-200);
  box-shadow:var(--pf-shadow-sm);
  font:inherit;
  text-align:left;
  cursor:pointer;
  color:var(--pf-gray-800);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, filter .2s ease;
}
.pf-promo-row:hover{
  transform:translateY(-2px);
  box-shadow:var(--pf-shadow-md);
  border-color:var(--pf-orange-400);
  filter:brightness(1.02);
}
.pf-promo-row:active{
  transform:translateY(0);
  filter:brightness(.98);
}
.pf-promo-row:disabled{
  opacity:.65;
  cursor:wait;
  transform:none;
}
.pf-sub-btn-animate:focus-visible{
  outline:2px solid var(--pf-orange-400);
  outline-offset:2px;
}
.pf-promo-row-main{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.45rem;
  flex:1;
  min-width:0;
}
.pf-promo-title{
  font-weight:800;
  font-size:.8125rem;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.pf-promo-chip{
  display:inline-block;
  padding:.12rem .45rem;
  border-radius:9999px;
  font-size:.62rem;
  font-weight:800;
  background:var(--pf-orange-100);
  color:var(--pf-orange-700);
  border:1px solid rgba(249,115,22,.4);
  white-space:nowrap;
}
.pf-promo-price{
  font-weight:800;
  font-size:1rem;
  color:var(--pf-orange-500);
  flex-shrink:0;
}
.pf-promo-desc{
  margin:-.15rem 0 0;
  padding:0 .15rem;
  font-size:.75rem;
  color:var(--pf-gray-500);
  line-height:1.4;
}

/* Mobile-first ajustes finos (320px até 480px) */
@media (max-width: 480px){
  .pf-card.pf-subscribe-card .pf-card-body{
    padding:16px 14px;
  }
  .pf-offer-badge{
    margin-bottom:.6rem;
    font-size:.78rem;
    line-height:1.3;
  }
  .pf-offer-primary-wrap{
    gap:.62rem;
  }
  .pf-sub-btn{
    min-height:2.85rem;
    padding:.62rem .78rem;
    gap:.55rem;
    align-items:center;
    flex-direction:row;
    justify-content:space-between;
  }
  .pf-sub-btn-label{
    flex:1 1 auto;
    min-width:0;
    font-size:1rem;
    line-height:1.22;
    font-weight:800;
    word-break:break-word;
    overflow-wrap:anywhere;
    letter-spacing:.02em;
  }
  .pf-sub-btn-price{
    flex:0 0 auto;
    min-width:max-content;
    text-align:right;
    font-size:1rem;
    line-height:1.22;
    font-weight:800;
    letter-spacing:.02em;
    opacity:1;
  }
  .pf-bonus-overlap-pill{
    padding:.56rem .72rem;
    font-size:.74rem;
    line-height:1.42;
    border-radius:13px;
  }
  .pf-bonus-line{
    font-size:.91rem;
    line-height:1.5;
    margin-top:.58rem;
  }
  .pf-promo-toggle{
    padding:.32rem 0 .58rem;
    font-size:1.05rem;
  }
  .pf-promo-list{
    gap:.55rem;
  }
  .pf-promo-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:.45rem .58rem;
    align-items:center;
    padding:.82rem .78rem;
    border-radius:13px;
  }
  .pf-promo-row-main{
    width:100%;
    gap:.36rem;
  }
  .pf-promo-title{
    font-size:.79rem;
    line-height:1.28;
    max-width:100%;
  }
  .pf-promo-chip{
    font-size:.64rem;
    padding:.11rem .42rem;
  }
  .pf-promo-price{
    justify-self:end;
    align-self:center;
    font-size:1.08rem;
    line-height:1.05;
    letter-spacing:-.01em;
  }
  .pf-promo-desc{
    grid-column:1 / -1;
    font-size:.72rem;
    margin:-.12rem 0 .08rem;
    padding:0 .1rem;
    line-height:1.35;
  }
}

@media (max-width: 360px){
  .pf-sub-btn{
    padding:.58rem .7rem;
    gap:.48rem;
    min-height:2.72rem;
  }
  .pf-sub-btn-label{
    font-size:.9375rem;
    line-height:1.2;
  }
  .pf-sub-btn-price{
    font-size:.9375rem;
    line-height:1.2;
  }
}

/* --- Landing estilo Privacy (referência laranja / Inter) --- */
.pf-body{
  --pf-orange-50:#fff7ed;
  --pf-orange-100:#ffedd5;
  --pf-orange-200:#fed7aa;
  --pf-orange-400:#fb923c;
  --pf-orange-500:#f97316;
  --pf-orange-600:#ea580c;
  --pf-orange-700:#c2410c;
  --pf-orange-800:#9a3412;
  --pf-gray-50:#f9fafb;
  --pf-gray-100:#f3f4f6;
  --pf-gray-200:#e5e7eb;
  --pf-gray-400:#9ca3af;
  --pf-gray-500:#6b7280;
  --pf-gray-600:#4b5563;
  --pf-gray-700:#374151;
  --pf-gray-800:#1f2937;
  --pf-shadow-sm:0 1px 2px rgba(0,0,0,.05);
  --pf-shadow:0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --pf-shadow-md:0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --pf-shadow-lg:0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --pf-radius:.5rem;
  --pf-radius-lg:.75rem;

  margin:0;
  min-height:100%;
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:var(--pf-gray-50) !important;
  color:var(--pf-gray-800);
  -webkit-font-smoothing:antialiased;
}

.pf-container{
  width:100%;
  max-width:768px;
  margin:0 auto;
  padding:0 1rem;
}

.pf-header{
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  border-bottom:1px solid var(--pf-gray-100);
  box-shadow:var(--pf-shadow-sm);
}
.pf-header-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  height:6.5rem;
}
.pf-logo-text{
  font-size:1.125rem;
  font-weight:700;
  letter-spacing:-.02em;
  color:var(--pf-gray-800);
  text-transform:lowercase;
}
.pf-logo-img{
  display:block;
  width:auto;
  height:86px;
  max-width:520px;
  object-fit:contain;
}

.pf-main{
  padding:2rem 1rem 3rem;
}

.pf-profile-section{
  position:relative;
  margin-bottom:4.5rem;
}

.pf-banner{
  position:relative;
  width:100%;
  border-radius:var(--pf-radius-lg);
  overflow:hidden;
  background:var(--pf-gray-200);
}
.pf-banner-img{
  width:100%;
  height:auto;
  display:block;
  vertical-align:middle;
  min-height:12rem;
  object-fit:cover;
  max-height:14rem;
}
.pf-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.42));
  pointer-events:none;
  border-radius:inherit;
}
.pf-banner-watermark{
  display:none;
}
.pf-banner-content{
  position:absolute;
  left:1rem;
  right:1rem;
  bottom:1rem;
  color:#fff;
  z-index:2;
}
.pf-banner-title{
  margin:0;
  font-size:1.5rem;
  font-weight:700;
  text-shadow:0 1px 3px rgba(0,0,0,.3);
}
.pf-banner-stats{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.75rem 1rem;
  margin-top:.5rem;
  font-size:.875rem;
  font-weight:500;
}
.pf-banner-stats--full{
  gap:.5rem .65rem;
  font-size:.8125rem;
}
.pf-banner-stats--full .pf-stat svg{
  width:15px;
  height:15px;
}
.pf-stat{
  display:inline-flex;
  align-items:center;
  gap:.25rem;
  color:#fff;
}
.pf-stat svg{
  width:17px;
  height:17px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.pf-avatar-wrap{
  position:absolute;
  left:24%;
  bottom:-3.75rem;
  transform:translateX(-50%);
  width:7.3rem;
  height:7.3rem;
  text-align:center;
}
.pf-avatar-ring{
  width:7.3rem;
  height:7.3rem;
  border-radius:50%;
  border:4px solid #ef4444;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--pf-shadow);
}
.pf-avatar-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.pf-live-badge{
  position:absolute;
  left:50%;
  bottom:-6px;
  transform:translateX(-50%);
  background:#ef4444;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:2px 8px;
  border-radius:4px;
  white-space:nowrap;
  z-index:2;
  box-shadow:var(--pf-shadow-sm);
}

.pf-card{
  background:#fff;
  border-radius:var(--pf-radius);
  box-shadow:var(--pf-shadow);
  margin-bottom:1.25rem;
  overflow:hidden;
  border:1px solid var(--pf-gray-100);
}
.pf-card-head{
  padding:1.25rem 1.25rem .35rem;
}
.pf-card-title{
  margin:0;
  font-size:1.125rem;
  font-weight:600;
  color:var(--pf-gray-800);
}
.pf-card-body{
  padding:1.25rem;
}
.pf-profile-card .pf-card-body{
  padding-top:1rem;
}

.pf-name-row{
  display:flex;
  align-items:center;
  gap:6px;
}
.pf-name{
  margin:0;
  font-size:1.125rem;
  font-weight:600;
  color:var(--pf-gray-800);
}
.pf-verified{
  display:flex;
  align-items:center;
  margin-top:-2px;
}
.pf-handle{
  margin:.25rem 0 0;
  font-size:.875rem;
  color:var(--pf-gray-500);
}
.pf-bio{
  margin:.5rem 0 0;
  font-size:.875rem;
  line-height:1.5;
  color:var(--pf-gray-600);
}
.pf-bio--clamp{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}
.pf-bio--clamp.is-expanded{
  display:block;
  -webkit-line-clamp:unset;
}
.pf-readmore{
  margin:.5rem 0 0;
  padding:0;
  border:none;
  background:none;
  color:var(--pf-orange-600);
  font-weight:600;
  font-size:.875rem;
  cursor:pointer;
  font-family:inherit;
}

.pf-offer-badge{
  display:inline-block;
  margin:0 0 .75rem;
  padding:.125rem .5rem;
  font-size:.75rem;
  font-weight:600;
  border-radius:9999px;
  background:var(--pf-orange-100);
  color:var(--pf-orange-800);
}
.pf-bonus-line{
  margin:.75rem 0 0;
  font-size:.8125rem;
  color:var(--pf-gray-500);
  line-height:1.45;
}

.pf-sub-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:3.5rem;
  padding:0 1.25rem;
  border-radius:var(--pf-radius);
  border:none;
  font-family:inherit;
  font-size:1rem;
  font-weight:500;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.pf-sub-btn--primary{
  background:linear-gradient(to right, var(--pf-orange-400), var(--pf-orange-500));
  color:#fff;
  box-shadow:var(--pf-shadow-sm);
}
.pf-sub-btn--primary:hover{
  background:linear-gradient(to right, var(--pf-orange-500), var(--pf-orange-600));
  transform:translateY(-2px);
  box-shadow:var(--pf-shadow-md);
}
.pf-sub-btn--wide{
  justify-content:center;
  gap:.5rem;
}
.pf-sub-btn-price{
  font-weight:700;
}
.pf-chevron{
  width:28px !important;
  height:28px !important;
  stroke-width:2.5px;
}
.pf-mt{
  margin-top:1.25rem;
}

@keyframes pf-pulse{
  0%{ box-shadow:0 0 0 0 rgba(249,115,22,.55); }
  70%{ box-shadow:0 0 0 10px rgba(249,115,22,0); }
  100%{ box-shadow:0 0 0 0 rgba(249,115,22,0); }
}
.pf-pulse{
  animation:pf-pulse 2s infinite;
}

.pf-tabs-block{
  margin-top:.5rem;
}
.pf-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:var(--pf-radius);
  overflow:hidden;
  margin-bottom:1rem;
  border:1px solid var(--pf-gray-100);
  box-shadow:var(--pf-shadow-sm);
}
.pf-tab{
  padding:.75rem;
  text-align:center;
  font-size:.875rem;
  background:var(--pf-gray-100);
  border:none;
  cursor:pointer;
  color:var(--pf-gray-600);
  font-family:inherit;
  font-weight:500;
  transition:background .2s, color .2s;
}
.pf-tab--active{
  background:var(--pf-orange-50);
  color:var(--pf-orange-500);
  font-weight:600;
}
.pf-tab-panel{
  display:none;
}
.pf-tab-panel--active{
  display:block;
}

.pf-posts-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}
@media (max-width:420px){
  .pf-posts-grid{ grid-template-columns:1fr; }
}

.pf-empty{
  padding:2rem 1rem;
  text-align:center;
  font-size:.875rem;
  color:var(--pf-gray-500);
  background:#fff;
  border-radius:var(--pf-radius);
  border:1px dashed var(--pf-gray-200);
}

.pf-post{
  background:#fff;
  border-radius:var(--pf-radius);
  box-shadow:var(--pf-shadow);
  overflow:hidden;
  border:1px solid var(--pf-gray-100);
  margin-bottom:4px;
}
.pf-post-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 8px 6px;
  border-bottom:1px solid var(--pf-gray-100);
}
.pf-post-user{
  display:flex;
  align-items:center;
  gap:.5rem;
  min-width:0;
}
.pf-post-avatar{
  width:2.5rem;
  height:2.5rem;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.pf-post-name{
  font-size:.875rem;
  font-weight:600;
  color:var(--pf-gray-800);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.pf-post-handle{
  font-size:.75rem;
  color:var(--pf-gray-500);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.pf-post-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  width:2rem;
  height:2rem;
  border:none;
  border-radius:50%;
  background:transparent;
  color:var(--pf-gray-500);
  cursor:pointer;
}
.pf-post-menu:hover{ background:var(--pf-gray-100); }
.pf-post-menu svg{ width:18px; height:18px; }

.pf-post-media{
  position:relative;
}
.pf-thumb{
  aspect-ratio:1/1;
  position:relative;
  background-color:var(--pf-orange-50);
  overflow:hidden;
}
/* Cartão de mídia: vídeo sempre renderizado; is-locked só aplica blur + overlay */
.pf-thumb .media-card{
  position:absolute;
  inset:0;
  overflow:hidden;
  border-radius:0;
  background:#111;
}
.pf-thumb--has-video .media-card{
  background:#111;
}
.media-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.media-image{
  position:absolute;
  inset:0;
  background:center/cover no-repeat;
  background-color:var(--pf-orange-50);
}
.media-card--video.is-locked .media-video{
  filter:blur(4px);
  transform:scale(1.04);
}
.media-card--image.is-locked .media-image{
  filter:blur(2px);
  transform:scale(1.025);
}
.media-lock-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.22);
  z-index:2;
  pointer-events:none;
}
.media-lock-icon{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.media-lock-icon svg{
  width:2.25rem;
  height:2.25rem;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.35));
}

.pf-post-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.5rem .65rem;
  border-top:1px solid var(--pf-gray-100);
  color:var(--pf-gray-600);
}
.pf-actions-left{ display:flex; align-items:center; gap:2px; }
.pf-post-actions--fake-stats .pf-actions-left{ gap:1.1rem; }
.pf-action-btn{
  display:inline-flex;
  padding:.5rem;
  border-radius:var(--pf-radius);
  cursor:default;
}
.pf-action-btn svg{ width:20px; height:20px; }
.pf-action-btn--end{ margin-left:auto; }
/* Curtidas/comentários fake na barra inferior (estilo feed), foto ou vídeo censurado */
.pf-action-stat{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.5rem .35rem .5rem .5rem;
  color:var(--pf-gray-800);
  font-size:.875rem;
  font-weight:600;
  letter-spacing:-.01em;
  cursor:default;
}
.pf-action-stat svg{
  width:22px;
  height:22px;
  stroke-width:1.75;
  flex-shrink:0;
  color:var(--pf-gray-700);
}
.pf-action-stat__n{
  min-width:1ch;
  line-height:1;
}

.pf-media-subtabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom:1rem;
}
.pf-subtab{
  padding:.5rem 1rem;
  font-size:.75rem;
  background:var(--pf-gray-100);
  border:none;
  border-radius:.25rem;
  cursor:pointer;
  color:var(--pf-gray-600);
  font-family:inherit;
  white-space:nowrap;
  transition:background .2s, color .2s;
}
.pf-subtab--active{
  background:var(--pf-orange-100);
  color:var(--pf-orange-700);
  font-weight:600;
}

.pf-media-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.5rem;
}
.pf-media-cell{
  position:relative;
  aspect-ratio:1/1;
  background:var(--pf-orange-50);
  border-radius:.25rem;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--pf-orange-100);
}
.pf-media-logo{
  position:absolute;
  inset:0;
  margin:auto;
  width:78%;
  opacity:.14;
  pointer-events:none;
}
.pf-media-lock{
  width:3rem;
  height:3rem;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--pf-gray-400);
}
.pf-media-lock svg{ width:22px; height:22px; }

.pf-cookie{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  padding:1rem;
  background:#fff;
  border-top:1px solid var(--pf-gray-200);
  box-shadow:var(--pf-shadow-lg);
  z-index:50;
  transition:transform .25s ease, opacity .25s ease;
}
.pf-cookie--gone{
  transform:translateY(110%);
  opacity:0;
  pointer-events:none;
}
.pf-cookie-inner{
  display:flex;
  flex-direction:column;
  gap:1rem;
  align-items:stretch;
  max-width:768px;
}
@media (min-width:768px){
  .pf-cookie-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}
.pf-cookie-text{
  margin:0;
  font-size:.875rem;
  color:var(--pf-gray-600);
  line-height:1.45;
}
.pf-cookie-btn{
  align-self:center;
  padding:.5rem 1.5rem;
  border:none;
  border-radius:var(--pf-radius);
  font-family:inherit;
  font-weight:600;
  font-size:.875rem;
  cursor:pointer;
  background:linear-gradient(to right, var(--pf-orange-400), var(--pf-orange-500));
  color:#fff;
  white-space:nowrap;
}
.pf-cookie-btn:hover{
  background:linear-gradient(to right, var(--pf-orange-500), var(--pf-orange-600));
}

.sheet-head-spacer{ flex:1; }

.pf-sheet-card.sheetCard{
  border-radius:var(--pf-radius-lg);
}
[data-theme="privacy"] .pf-sheet-card.sheetCard{
  background:#fff;
  border-color:var(--pf-gray-200);
}
[data-theme="privacy"] .pf-form .field input{
  background:#fff;
  border-color:var(--pf-gray-200);
  color:var(--pf-gray-800);
}
[data-theme="privacy"] .pf-primaryBtn.primaryBtn,
[data-theme="privacy"] .pf-form + * .primaryBtn{
  background:linear-gradient(to right, #fb923c, #f97316);
  color:#fff;
  border-radius:var(--pf-radius);
  font-weight:600;
  box-shadow:var(--pf-shadow-sm);
}
[data-theme="privacy"] .closeBtn{
  background:var(--pf-gray-100);
  color:var(--pf-gray-800);
  border-color:var(--pf-gray-200);
}
[data-theme="privacy"] .grab{ background:rgba(0,0,0,.12); }

@media (min-width:768px){
  .pf-avatar-wrap{
    left:24%;
    transform:translateX(-50%);
    width:7.3rem;
    height:7.3rem;
  }
  .pf-avatar-ring{ width:7.3rem; height:7.3rem; }
}

/* User requested layout refinements */
.header-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:26px 0;
}

.header-logo img{
  height:86px;
  width:auto;
}

.profile-banner{
  position:relative;
  height:200px;
  border-radius:12px;
  overflow:hidden;
}

.profile-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.profile-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

.profile-info{
  position:absolute;
  top:20px;
  left:20px;
  right:auto;
  z-index:2;
  color:#fff;
}

.profile-name{
  font-size:22px;
  font-weight:700;
  margin-bottom:6px;
}

.profile-stats{
  display:flex;
  gap:12px;
  font-size:14px;
  opacity:.9;
}

.profile-avatar{
  position:absolute;
  bottom:-40px;
  left:20px;
  width:90px;
  height:90px;
  border-radius:50%;
  border:5px solid #ff2a2a;
  overflow:visible;
  z-index:3;
  transform:none;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
}

.profile-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Corrige aro vermelho duplicado no avatar */
.profile-avatar .pf-avatar-ring{
  border:none !important;
  width:100%;
  height:100%;
  border-radius:50%;
  overflow:hidden;
}

@keyframes livePulse{
  0%{ box-shadow:0 0 0 0 rgba(255,0,0,.6); }
  70%{ box-shadow:0 0 0 8px rgba(255,0,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,0,0,0); }
}

.live-badge{
  position:absolute;
  bottom:-2px;
  left:50%;
  transform:translateX(-50%);
  background:#ff0000;
  color:#fff;
  font-size:11px;
  font-weight:bold;
  padding:3px 8px;
  border-radius:6px;
  white-space:nowrap;
  animation:livePulse 1.8s infinite;
}

.profile-content{
  /* evita “vazio” no topo do card */
  margin-top:0;
  padding:22px 20px 20px;
}

/* Ajustes para evitar overlay duplicado (usa ::after do banner) */
.profile-banner .pf-banner-overlay{
  display:none;
}

/* Card mais “premium” e colado */
.pf-card{
  border-radius:12px;
}
.pf-profile-card{
  margin-top:1rem;
}

.profile-username{
  font-size:14px;
  color:#666;
  margin-bottom:5px;
}

.profile-bio{
  font-size:14px;
  color:#444;
}

