/* =====================================================================
   EASY IMPORT — Sistema visual compartilhado
   Conceito: "Manifesto Aduaneiro" — documento de comércio exterior.
   Papel manila + tinta naval + carimbo de desembaraço + latão.
   Usado por todas as landing pages (bundle / manual / planilha / grátis).
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Navy corporativo / estrutura escura */
  --ink:        #0A2540;   /* navy corporativo — seções escuras       */
  --ink-2:      #0E2F54;   /* navy aço                                 */
  --ink-3:      #234E7C;   /* azul de borda em fundo escuro            */

  /* Papel claro frio (corporativo) */
  --paper:      #F4F7FB;   /* branco-gelo azulado — fundo principal    */
  --paper-2:    #E7EFF8;   /* azul claro de seção alternada            */
  --paper-line: #D2DFEE;   /* linhas / bordas                          */

  /* Acento de ação — azul corporativo vivo (CTAs) */
  --stamp:      #0B63E5;   /* azul de ação (reaproveita "carimbo")     */
  --stamp-deep: #0A4DB0;
  /* Acento quente — urgência/economia (usar com parcimônia) */
  --brass:      #F0A12E;   /* âmbar — selos de desconto/urgência       */
  --brass-deep: #C97D12;
  --sea:        #0B63E5;   /* tiques de check em azul                  */

  /* Texto */
  --tx-strong:  #0A2540;
  --tx:         #2C435C;
  --tx-soft:    #516A85;   /* escurecido p/ passar WCAG AA sobre papel claro */
  --tx-on-ink:  #EAF1FA;
  --tx-on-ink-soft: #A7BBD2;

  /* Tipografia */
  --f-display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  --f-body:    "Spectral", Georgia, serif;
  --f-mono:    "IBM Plex Mono", "Courier New", monospace;

  /* Métrica */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;          /* cantos quase retos — burocrático/técnico */

  --shadow-doc: 0 1px 0 rgba(10,37,64,.04), 0 18px 50px -28px rgba(10,37,64,.35);
}

/* ----------------------------- Reset ------------------------------ */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(16px, 1.05vw + 12px, 18px);
  line-height: 1.6;
  color: var(--tx);
  background: var(--paper);
  /* pauta sutil de papel de bill of lading + grão */
  background-image:
    linear-gradient(rgba(11,99,229,.04) 1px, transparent 1px);
  background-size: 100% 34px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--f-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; color: var(--tx-strong); }
p { margin: 0; }

/* grão global */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------- Utilitários -------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--f-mono); }
.eyebrow {
  font-family: var(--f-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--tx-soft);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.on-ink .eyebrow { color: var(--brass); }

.kicker-num { font-family: var(--f-mono); font-size: .78rem; color: var(--stamp); letter-spacing: .1em; }

/* régua tracejada "recorte aqui" */
.cut {
  border: none; height: 0;
  border-top: 1.5px dashed var(--paper-line);
  position: relative; margin: 0;
}
.on-ink .cut { border-top-color: var(--ink-3); }

/* --------------------------- Botões / CTA ------------------------- */
.btn {
  --bg: var(--stamp); --fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; gap: .7em;
  padding: 1.1em 1.8em;
  font-family: var(--f-mono); font-size: .94rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--fg);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, #fff) 0%, var(--bg) 55%, var(--stamp-deep) 100%);
  border: none; border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(10,37,64,.06), 0 16px 30px -12px rgba(11,99,229,.62), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  overflow: hidden;
}
.btn::after { /* brilho que cruza no hover */
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn .arw { transition: transform .22s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(10,37,64,.06), 0 26px 42px -14px rgba(11,99,229,.7), inset 0 1px 0 rgba(255,255,255,.3); }
.btn:hover .arw { transform: translateX(5px); }
.btn:active { transform: translateY(0); }
.btn--brass {
  --bg: var(--brass); --fg: #3a2400;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brass) 90%, #fff) 0%, var(--brass) 55%, var(--brass-deep) 100%);
  box-shadow: 0 0 0 1px rgba(10,37,64,.08), 0 16px 30px -12px rgba(240,161,46,.7), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--brass:hover { box-shadow: 0 0 0 1px rgba(10,37,64,.08), 0 26px 42px -14px rgba(240,161,46,.75), inset 0 1px 0 rgba(255,255,255,.45); }

/* pulsação sutil — chama atenção sem parecer golpe */
@media (prefers-reduced-motion: no-preference) {
  .btn--pulse { animation: ctaPulse 2.6s ease-in-out infinite; }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(10,37,64,.06), 0 16px 30px -12px rgba(11,99,229,.62), 0 0 0 0 rgba(11,99,229,.34), inset 0 1px 0 rgba(255,255,255,.25); }
    50%      { box-shadow: 0 0 0 1px rgba(10,37,64,.06), 0 16px 30px -12px rgba(11,99,229,.62), 0 0 0 11px rgba(11,99,229,0), inset 0 1px 0 rgba(255,255,255,.25); }
  }
  .btn--brass.btn--pulse { animation-name: ctaPulseAmber; }
  @keyframes ctaPulseAmber {
    0%, 100% { box-shadow: 0 0 0 1px rgba(10,37,64,.08), 0 16px 30px -12px rgba(240,161,46,.7), 0 0 0 0 rgba(240,161,46,.4), inset 0 1px 0 rgba(255,255,255,.4); }
    50%      { box-shadow: 0 0 0 1px rgba(10,37,64,.08), 0 16px 30px -12px rgba(240,161,46,.7), 0 0 0 12px rgba(240,161,46,0), inset 0 1px 0 rgba(255,255,255,.4); }
  }
  .btn--pulse:hover { animation-play-state: paused; }
}
.btn--ghost {
  --bg: transparent; --fg: var(--tx-strong);
  border: 1.5px solid var(--tx-strong); box-shadow: none;
}
.on-ink .btn--ghost { --fg: var(--tx-on-ink); border-color: rgba(237,231,219,.4); }
.btn--ghost:hover { background: var(--tx-strong); --fg: var(--paper); box-shadow: none; }
.on-ink .btn--ghost:hover { background: var(--tx-on-ink); --fg: var(--ink); }
.btn--lg { padding: 1.25em 2.2em; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* carimbo de desembaraço rotacionado */
.stamp {
  display: inline-grid; place-items: center; text-align: center;
  font-family: var(--f-mono); text-transform: uppercase;
  color: var(--stamp); border: 2.5px solid var(--stamp);
  border-radius: 6px; padding: .55em .8em; line-height: 1.05;
  transform: rotate(-7deg); letter-spacing: .12em;
  box-shadow: inset 0 0 0 1px rgba(217,70,43,.25);
  opacity: .92;
}
.stamp b { font-size: 1.05em; font-weight: 700; display: block; letter-spacing: .14em; }
.stamp small { font-size: .58em; opacity: .8; letter-spacing: .22em; }
.stamp--brass { color: var(--brass-deep); border-color: var(--brass-deep); box-shadow: inset 0 0 0 1px rgba(156,126,51,.25); }

/* tarja / etiqueta de dados */
.tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tx-soft);
  border: 1px solid var(--paper-line); padding: .4em .8em; border-radius: 999px;
}
.on-ink .tag { color: var(--tx-on-ink-soft); border-color: var(--ink-3); }
.tag b { color: var(--sea); }

/* --------------------------- Seções ------------------------------- */
section { position: relative; }
.sec { padding-block: clamp(56px, 8vw, 120px); }
.sec--ink { background: var(--ink); color: var(--tx-on-ink); }
.sec--ink h1,.sec--ink h2,.sec--ink h3 { color: var(--paper); }
.sec--paper2 { background: var(--paper-2); }

.sec-head { max-width: 760px; }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-block: .3em .5em; }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.32rem); color: var(--tx-soft); }
.on-ink .lead, .sec--ink .lead { color: var(--tx-on-ink-soft); }

/* faixa de manifesto (latitude/dados rolando) */
.ticker {
  border-block: 1px solid var(--ink-3); background: var(--ink-2);
  overflow: hidden; white-space: nowrap;
}
.ticker__track {
  display: inline-flex; gap: 2.5rem; padding-block: .7rem;
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--tx-on-ink-soft);
  animation: marq 38s linear infinite; will-change: transform;
}
.ticker__track span b { color: var(--brass); }
.ticker__track span::before { content: "◆"; color: var(--stamp); margin-right: 1rem; font-size: .7em; vertical-align: middle; }
@keyframes marq { to { transform: translateX(-50%); } }

/* cartão de documento */
.doc {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-doc);
  position: relative;
}
/* card escuro: SEMPRE texto claro, mesmo quando dentro de seção clara
   (senão os <span> herdam a cor escura do corpo e somem no navy) */
.doc--ink { background: var(--ink-2); border-color: var(--ink-3); color: var(--tx-on-ink); }
.doc--ink h1, .doc--ink h2, .doc--ink h3 { color: var(--paper); }
.doc--ink .price__now { color: var(--paper); }
.doc__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .8rem 1.1rem; border-bottom: 1px solid var(--paper-line);
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--tx-soft);
  min-width: 0;
}
.doc__bar span { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 520px){ .doc__bar { letter-spacing: .06em; font-size: .66rem; } }
.doc--ink .doc__bar { border-bottom-color: var(--ink-3); color: var(--tx-on-ink-soft); }

/* grades */
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
/* filhos de grid precisam poder encolher abaixo do conteúdo mínimo,
   senão um texto inquebrável (ex.: nome de arquivo) estoura o viewport */
.grid > *, .grid-2 > *, .grid-3 > * { min-width: 0; }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* índice numerado tipo manifesto */
.manifest { list-style: none; margin: 0; padding: 0; counter-reset: m; }
.manifest li {
  counter-increment: m; position: relative;
  padding: .72rem 0 .72rem 3rem;
  border-bottom: 1px solid var(--paper-line);
  line-height: 1.45;
}
.on-ink .manifest li, .sec--ink .manifest li { border-bottom-color: var(--ink-3); }
.manifest li::before {
  content: counter(m, decimal-leading-zero);
  position: absolute; left: 0; top: .95rem;
  font-family: var(--f-mono); font-size: .82rem; color: var(--stamp); letter-spacing: .05em;
}
.manifest li b { color: var(--tx-strong); font-family: var(--f-display); font-weight: 700; }
.manifest li b::after { content: " "; }
.sec--ink .manifest li b { color: var(--paper); }

/* lista com marcador de check sob medida (sem ícone de IA)
   IMPORTANTE: o <li> NÃO pode ser grid/flex — itens de grade "blocam" o <b>
   e quebram cada pedaço de texto numa célula. Marcador via ::before absoluto,
   conteúdo flui como texto inline normal. */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.checks li { position: relative; padding-left: 1.9rem; line-height: 1.5; }
.checks li::before {
  content: ""; position: absolute; left: 2px; top: .4em;
  width: 10px; height: 10px;
  border: 2px solid var(--sea); border-right: none; border-top: none;
  transform: rotate(-50deg) skew(-6deg); /* tique de carimbo */
}

/* preço / âncora */
.price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.price__old { font-family: var(--f-mono); color: var(--tx-soft); text-decoration: line-through; text-decoration-color: var(--stamp); }
.price__now { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4rem); color: var(--tx-strong); letter-spacing: -.03em; line-height: 1; }
.sec--ink .price__now { color: var(--paper); }
.price__cur { font-size: .42em; vertical-align: .9em; color: var(--tx-soft); }
.price__note { font-family: var(--f-mono); font-size: .8rem; color: var(--tx-soft); }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--paper-line); padding: .3rem 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--f-display); font-weight: 700; font-size: 1.12rem; color: var(--tx-strong);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-mono); font-size: 1.4rem; color: var(--stamp); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.2rem; color: var(--tx-soft); max-width: 64ch; }

/* topo fixo */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,26,36,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-3); color: var(--tx-on-ink);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .8rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--f-display); font-weight: 800; letter-spacing: -.01em; color: var(--paper); font-size: 1.15rem; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand small { font-family: var(--f-mono); font-weight: 400; font-size: .58rem; letter-spacing: .24em; color: var(--brass); text-transform: uppercase; }
.brand > span { white-space: nowrap; }
/* rótulo curto/longo do CTA do topo (evita quebra em telas estreitas) */
.btn .btn-short { display: none; }
@media (max-width: 520px){
  .brand { font-size: 1rem; gap: .5rem; }
  .brand .mark { width: 24px; height: 24px; }
  .brand small { display: none; }
  .topbar .btn { padding: .82em 1.05em; font-size: .8rem; white-space: nowrap; }
  .topbar__cta { gap: .5rem; }
  .topbar .btn .btn-full { display: none; }
  .topbar .btn .btn-short { display: inline; }
}

/* rodapé */
.foot { background: var(--ink); color: var(--tx-on-ink-soft); padding-block: clamp(40px,6vw,72px); }
.foot a:hover { color: var(--brass); }
.foot .brand { margin-bottom: .8rem; }

/* badges de garantia */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center;
}
@media (max-width: 560px) { .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* divisor de borda picotada de selo */
.perf {
  height: 14px;
  background-image: radial-gradient(circle at 7px 7px, var(--paper) 6px, transparent 6.5px);
  background-size: 14px 14px; background-position: 0 -7px;
}
.sec--ink + .perf, .perf.on-ink-edge { background-image: radial-gradient(circle at 7px 7px, var(--ink) 6px, transparent 6.5px); }

/* ------------------------- Animação de entrada -------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .08s; }
  .reveal[data-d="2"] { transition-delay: .16s; }
  .reveal[data-d="3"] { transition-delay: .24s; }
  .reveal[data-d="4"] { transition-delay: .32s; }
}

/* ----------------------------- Modal checkout --------------------- */
.ck-overlay {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(8,15,21,.72); backdrop-filter: blur(4px);
  padding: clamp(12px, 4vw, 40px); overflow-y: auto;
}
.ck-overlay.open { display: grid; place-items: start center; }
.ck-modal {
  width: 100%; max-width: 560px; margin-top: 4vh;
  background: var(--paper); border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); border: 1px solid var(--paper-line);
  animation: ckin .3s ease;
}
@keyframes ckin { from { opacity: 0; transform: translateY(14px); } }
.ck-modal__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--paper-line);
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-soft);
}
.ck-close { background: none; border: none; font-size: 1.5rem; line-height: 1; color: var(--tx-soft); padding: .2rem .4rem; }
.ck-close:hover { color: var(--stamp); }
.ck-body { padding: 1.2rem; min-height: 120px; }
.ck-note { font-family: var(--f-mono); font-size: .78rem; color: var(--tx-soft); padding: 1rem 1.2rem; border-top: 1px dashed var(--paper-line); }

/* formulário (isca grátis / captura) */
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-soft); }
.field input {
  font-family: var(--f-body); font-size: 1rem; padding: .85em 1em;
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius); color: var(--tx-strong);
}
.field input:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(11,99,229,.15); }
.field input[aria-invalid="true"] { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.15); }
.field-error { color: #C0392B; font-family: var(--f-mono); font-size: .72rem; }
.on-ink .field-error { color: #FF8A7A; }

/* ----------------------- Foco de teclado visível ----------------- */
:focus-visible { outline: none; }
.btn:focus-visible, .link-free:focus-visible, .float-free:focus-visible,
.ck-close:focus-visible, .faq summary:focus-visible, .brand:focus-visible,
.foot a:focus-visible, .topbar a:focus-visible {
  outline: 3px solid var(--brass); outline-offset: 3px; border-radius: var(--radius);
}

/* ---------------------- Badge de urgência ------------------------ */
.urg {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass-deep); background: color-mix(in srgb, var(--brass) 18%, #fff);
  border: 1px solid color-mix(in srgb, var(--brass) 55%, #fff);
  padding: .42em .8em; border-radius: 999px;
}
.urg::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 0 rgba(240,161,46,.6); animation: dot 2s infinite; }
@media (prefers-reduced-motion: reduce){ .urg::before{ animation:none; } }
@keyframes dot { 0%,100%{ box-shadow:0 0 0 0 rgba(240,161,46,.55);} 50%{ box-shadow:0 0 0 6px rgba(240,161,46,0);} }
.on-ink .urg, .sec--ink .urg { color: var(--brass); background: rgba(240,161,46,.12); border-color: rgba(240,161,46,.4); }

/* botão secundário no topo (acesso à prévia grátis) */
.topbar__cta { display: inline-flex; align-items: center; gap: .9rem; }
.link-free {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-mono); font-size: .8rem; font-weight: 500;
  letter-spacing: .04em; color: var(--tx-on-ink); text-transform: uppercase;
  padding: .7em 1em; border: 1.5px solid rgba(234,241,250,.35); border-radius: var(--radius);
  background: transparent; text-align: left;
  transition: border-color .18s, background .18s, color .18s;
}
.link-free:hover { border-color: var(--brass); color: var(--brass); }
.link-free .dl { font-size: 1.05em; }
@media (max-width: 720px){ .link-free .txt{ display:none; } .link-free{ padding:.7em .8em; } }

/* --------------------- Barra fixa de CTA (rodapé colado) --------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(10,37,64,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-3); color: var(--tx-on-ink);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -16px 40px -20px rgba(0,0,0,.6);
}
.stickybar.show { transform: translateY(0); }
.stickybar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.stickybar .sb-info { display: flex; flex-direction: column; line-height: 1.15; }
.stickybar .sb-info b { font-family: var(--f-display); font-size: 1.05rem; color: var(--paper); }
.stickybar .sb-info span { font-family: var(--f-mono); font-size: .72rem; color: var(--tx-on-ink-soft); }
.stickybar .sb-info .sb-old { text-decoration: line-through; opacity: .7; }
.stickybar .sb-actions { display: flex; align-items: center; gap: .7rem; }
@media (max-width: 640px){
  .stickybar .sb-actions .link-free { display: none; }
  .stickybar .wrap { padding-inline: 16px; }
  .stickybar .btn { padding: .9em 1.1em; font-size: .82rem; }
}

/* aba flutuante lateral — prévia grátis sempre ao alcance */
.float-free {
  position: fixed; right: 0; top: 42%; z-index: 55;
  display: inline-flex; align-items: center; gap: .55em;
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-deep) 100%);
  color: #3a2400; font-family: var(--f-mono); font-weight: 600; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .8em 1em; border: none; border-radius: 8px 0 0 8px;
  box-shadow: -8px 12px 28px -12px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
  transition: padding .2s, filter .2s;
}
.float-free:hover { padding-right: 1.4em; filter: brightness(1.05); }
.float-free .ff-dot { writing-mode: horizontal-tb; }
@media (max-width: 640px){ .float-free{ display:none; } }
