/* ============================================================
   Página de vendas — Jejum Intermitente Guia Completo
   Usa as variáveis e componentes globais de style.css
   ============================================================ */

.jj-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.jj-section { padding: 3.4rem 0; }

.jj-section--alt {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(201, 160, 97, 0.06) 0%, transparent 60%),
    rgba(23, 16, 8, 0.45);
  border-top: 1px solid rgba(227, 203, 168, 0.12);
  border-bottom: 1px solid rgba(227, 203, 168, 0.12);
}

/* ---------- Tipografia base da página ---------- */

.jj-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(227, 203, 168, 0.45);
  background: rgba(23, 16, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-100);
}

.jj-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 160, 97, 0.18);
}

.jj-h1 {
  margin-top: 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: linear-gradient(115deg, var(--champagne-50) 5%, var(--gold) 55%, var(--champagne-100) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jj-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--champagne-100);
}

.jj-h2 em {
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.25em;
  background: linear-gradient(115deg, var(--champagne-100), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jj-center { text-align: center; }

.jj-lead {
  margin-top: 1.1rem;
  font-size: 1.02rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.jj-lead strong { color: var(--champagne-200); font-weight: 500; }

/* ---------- Hero ---------- */

.jj-hero {
  padding: 5.5rem 0 3.6rem;
  text-align: center;
}

.jj-hero .jj-lead { max-width: 34rem; margin-left: auto; margin-right: auto; }

.jj-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
}

.jj-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(227, 203, 168, 0.35);
  background: rgba(23, 16, 8, 0.5);
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.jj-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Botões CTA ---------- */

.jj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 1.15rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--champagne-200) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #241809;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(201, 160, 97, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jj-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: jjBtnShine 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes jjBtnShine {
  0%, 70% { left: -80%; }
  100% { left: 140%; }
}

.jj-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 160, 97, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.jj-btn:active { transform: translateY(-1px) scale(0.99); }

.jj-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

.jj-btn-note {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 228, 0.5);
}

/* ---------- Dor / narrativa ---------- */

.jj-tried {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.6rem 0;
}

.jj-tried span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(227, 203, 168, 0.25);
  background: rgba(23, 16, 8, 0.5);
  font-size: 0.82rem;
  color: var(--cream-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(201, 160, 97, 0.6);
  text-decoration-thickness: 1px;
}

.jj-narrative {
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
  color: var(--cream-dim);
  line-height: 1.8;
}

.jj-narrative p + p { margin-top: 0.9rem; }

.jj-narrative .jj-truth {
  margin-top: 1.6rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--champagne-100);
  line-height: 1.4;
}

.jj-narrative .jj-script-line {
  margin-top: 1.4rem;
  font-family: var(--font-script);
  font-size: 1.9rem;
  line-height: 1.3;
  background: linear-gradient(115deg, var(--champagne-100), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Método (etapas) ---------- */

.jj-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.jj-step {
  position: relative;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, #f4e9d8 0%, #e6d2b4 55%, #d9c09c 100%);
  border: 1px solid rgba(255, 248, 235, 0.65);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--ink);
  overflow: hidden;
}

.jj-step__num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid rgba(163, 127, 66, 0.55);
  background: radial-gradient(circle at 30% 25%, #fdf6ea, #ecd9ba);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-deep);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8), 0 3px 8px rgba(122, 92, 45, 0.25);
}

.jj-step__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.3;
}

.jj-step__desc {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Conquistas (3 colunas) ---------- */

.jj-gains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.jj-gain {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(227, 203, 168, 0.25);
  background: rgba(23, 16, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.jj-gain:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 97, 0.5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 24px rgba(201, 160, 97, 0.15);
}

.jj-gain__icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid rgba(227, 203, 168, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-200);
  margin-bottom: 1rem;
  box-shadow: 0 0 18px rgba(201, 160, 97, 0.18);
}

.jj-gain__icon svg { width: 1.35rem; height: 1.35rem; }

.jj-gain h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--champagne-100);
  margin-bottom: 0.8rem;
}

.jj-list { list-style: none; }

.jj-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.32rem 0;
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.jj-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ---------- O que você recebe ---------- */

.jj-receive {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

.jj-receive__mockup {
  width: min(440px, 100%);
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
  animation: jjFloat 6s ease-in-out infinite;
}

@keyframes jjFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.jj-receive__list { text-align: left; max-width: 26rem; }

/* ---------- Bônus ---------- */

.jj-bonuses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.jj-bonus {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, #f4e9d8 0%, #e6d2b4 55%, #d9c09c 100%);
  border: 1px solid rgba(255, 248, 235, 0.65);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--ink);
  text-align: left;
  overflow: hidden;
}

.jj-bonus__tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--gold-deep), #8a6832);
  color: var(--champagne-50);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jj-bonus h3 {
  margin-top: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.jj-bonus p {
  margin-top: 0.4rem;
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.jj-bonus__value {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.jj-bonus__value s { opacity: 0.85; }

/* ---------- Oferta ---------- */

.jj-offer {
  position: relative;
  margin-top: 2.2rem;
  padding: 2.2rem 1.6rem;
  border-radius: 1.6rem;
  background: linear-gradient(150deg, #f6ecdc 0%, #e8d6ba 50%, #d9c09c 100%);
  border: 1px solid rgba(255, 248, 235, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 40px rgba(201, 160, 97, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
}

.jj-offer__stack {
  list-style: none;
  max-width: 24rem;
  margin: 1.4rem auto 0;
  text-align: left;
}

.jj-offer__stack li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(163, 127, 66, 0.35);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.jj-offer__stack li span:last-child {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.jj-offer__total {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.jj-offer__total s {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration-color: rgba(163, 127, 66, 0.8);
}

.jj-offer__divider {
  width: 120px;
  height: 1px;
  margin: 1.4rem auto;
  background: linear-gradient(90deg, transparent, rgba(163, 127, 66, 0.7), transparent);
}

.jj-offer__from {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.jj-offer__from s { text-decoration-color: rgba(163, 127, 66, 0.8); }

.jj-offer__price {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 11vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  margin-top: 0.3rem;
  background: linear-gradient(115deg, var(--gold-deep), #6b4f26 60%, #8a6832);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jj-offer__installments {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.jj-offer__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.jj-offer__perks span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 127, 66, 0.4);
  background: rgba(255, 252, 245, 0.65);
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.jj-offer__perks svg { width: 0.85rem; height: 0.85rem; color: var(--gold-deep); }

.jj-offer .jj-btn { box-shadow: 0 10px 30px rgba(122, 92, 45, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5); }

/* ---------- Garantia ---------- */

.jj-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
}

.jj-guarantee__shield {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 1.5px solid rgba(227, 203, 168, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-100);
  box-shadow: 0 0 28px rgba(201, 160, 97, 0.3), inset 0 0 16px rgba(201, 160, 97, 0.12);
}

.jj-guarantee__shield svg { width: 2rem; height: 2rem; }

/* ---------- Autora ---------- */

.jj-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, #f4e9d8 0%, #e6d2b4 55%, #d9c09c 100%);
  border: 1px solid rgba(255, 248, 235, 0.65);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.jj-author__photo {
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(163, 127, 66, 0.55);
  box-shadow: 0 0 0 6px rgba(255, 251, 243, 0.55), 0 8px 20px rgba(122, 92, 45, 0.35);
  flex-shrink: 0;
}

.jj-author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.jj-author__name {
  font-family: var(--font-script);
  font-size: 2.2rem;
  line-height: 1.1;
  background: linear-gradient(115deg, var(--gold-deep), #8a6832);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jj-author__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.jj-author__bio p + p { margin-top: 0.7rem; }

.jj-author__creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.jj-author__creds span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 127, 66, 0.45);
  background: rgba(255, 252, 245, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ---------- FAQ ---------- */

.jj-faq {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}

.jj-faq__item {
  border: 1px solid rgba(227, 203, 168, 0.25);
  border-radius: 1rem;
  background: rgba(23, 16, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.jj-faq__item.open { border-color: rgba(201, 160, 97, 0.5); }

.jj-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--champagne-100);
  text-align: left;
}

.jj-faq__q svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.jj-faq__item.open .jj-faq__q svg { transform: rotate(180deg); }

.jj-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.jj-faq__a p {
  padding: 0 1.2rem 1.1rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* ---------- Carrossel de prova social ---------- */

.jj-carousel {
  position: relative;
  margin-top: 2.2rem;
}

.jj-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 1.1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.jj-carousel__track::-webkit-scrollbar { display: none; }

.jj-carousel__slide {
  flex: 0 0 auto;
  width: min(17rem, 78vw);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(227, 203, 168, 0.35);
  background: rgba(23, 16, 8, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.jj-carousel__slide:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 97, 0.55);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55), 0 0 24px rgba(201, 160, 97, 0.18);
}

.jj-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.jj-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  border: 1px solid rgba(227, 203, 168, 0.45);
  background: rgba(23, 16, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--champagne-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.jj-carousel__arrow:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(201, 160, 97, 0.35);
  transform: translateY(-50%) scale(1.06);
}

.jj-carousel__arrow svg { width: 1.1rem; height: 1.1rem; }

.jj-carousel__arrow--prev { left: -0.4rem; }
.jj-carousel__arrow--next { right: -0.4rem; }

.jj-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.jj-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(227, 203, 168, 0.3);
  transition: background 0.3s ease, width 0.3s ease;
}

.jj-carousel__dot.active {
  width: 22px;
  background: linear-gradient(90deg, var(--champagne-200), var(--gold));
}

@media (min-width: 48rem) {
  .jj-carousel { max-width: 58rem; margin-left: auto; margin-right: auto; }
  .jj-carousel__slide { width: 17rem; }
  .jj-carousel__arrow--prev { left: -1.2rem; }
  .jj-carousel__arrow--next { right: -1.2rem; }
}

/* ---------- Decisão final ---------- */

.jj-final {
  text-align: center;
  padding-bottom: 4rem;
}

.jj-final .jj-narrative { margin-top: 1.4rem; }

/* ---------- Telas maiores ---------- */

@media (min-width: 48rem) {
  .jj-container { max-width: 60rem; padding: 0 2rem; }

  .jj-section { padding: 4.6rem 0; }

  .jj-hero { padding: 7rem 0 4.6rem; }

  .jj-gains { grid-template-columns: repeat(3, 1fr); }

  .jj-bonuses { grid-template-columns: repeat(2, 1fr); }

  .jj-steps { max-width: 44rem; margin-left: auto; margin-right: auto; }

  .jj-receive {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
  }

  .jj-author {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 2.2rem;
    padding: 2.4rem 2.2rem;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
  }

  .jj-author__creds { justify-content: flex-start; }

  .jj-offer { padding: 3rem 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

  .jj-faq { max-width: 40rem; margin-left: auto; margin-right: auto; }

  .jj-forwho-card { max-width: 34rem; margin-left: auto; margin-right: auto; }
}

/* ---------- Reduções de movimento ---------- */

@media (prefers-reduced-motion: reduce) {
  .jj-btn::before, .jj-receive__mockup { animation: none; }
}

.static .jj-btn::before,
.static .jj-receive__mockup { animation: none; }
