/* =========================================================
   EcomImporta — clube.css  (landing futurista do Clube)
   Requer future.css
   ========================================================= */

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(6,7,12,0.7); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-in { max-width: var(--maxw); margin-inline: auto; padding: 15px 24px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.brand .thin { font-weight: 400; color: var(--soft); }
.brand-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-holo); display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #05060A; box-shadow: 0 0 18px -4px var(--cyan); }
.nav .btn { padding: 11px 20px; font-size: 14px; }

/* ---------- HERO ---------- */
.hero { padding: 138px 0 88px; position: relative; }
.hero-wrap { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6.6vw, 78px); letter-spacing: -0.035em; }
.hero .lead { color: var(--soft); font-size: clamp(16px, 2.1vw, 19px); margin: 26px 0 32px; max-width: 540px; }
.hero .lead b { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- HUD / Command deck ---------- */
.deck { padding: 24px; }
.deck-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.deck-title { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; color: var(--soft); text-transform: uppercase; }

/* rota animada China -> Brasil */
.route-viz { position: relative; height: 70px; margin: 8px 0 22px; }
.route-viz .track { position: absolute; top: 34px; left: 8px; right: 8px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); }
.route-viz .prog { position: absolute; top: 34px; left: 8px; height: 2px; width: 0;
  background: var(--grad-future); box-shadow: 0 0 12px var(--cyan); animation: route 4.5s var(--ease) infinite; }
.route-viz .pulse { position: absolute; top: 29px; left: 8px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 5px rgba(34,211,238,.18), 0 0 18px var(--cyan); animation: route 4.5s var(--ease) infinite; }
@keyframes route { 0% { width: 0; left: 8px; } 8% { left: 8px; } 92% { width: calc(100% - 16px); } 100% { width: calc(100% - 16px); left: 8px; } }
.route-viz .node { position: absolute; top: 46px; font-family: var(--font-mono); font-size: 11px; color: var(--soft); }
.route-viz .node.a { left: 0; } .route-viz .node.b { right: 0; }
.route-viz .flag { position: absolute; top: 22px; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--panel-2); border: 1px solid var(--line-2); color: var(--gold); }
.route-viz .flag.a { left: -2px; } .route-viz .flag.b { right: -2px; color: var(--green); }
.route-viz .flag svg { width: 15px; height: 15px; }

.deck-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dstat { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px; background: rgba(255,255,255,.02); }
.dstat .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.dstat .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-top: 5px; }
.dstat.wide { grid-column: 1 / -1; }
.fill { height: 12px; border-radius: 999px; background: rgba(255,255,255,.05); overflow: hidden; margin-top: 10px; position: relative; }
.fill > i { position: absolute; inset: 0 auto 0 0; width: 25%; border-radius: 999px; background: var(--grad-gold);
  box-shadow: 0 0 16px -2px var(--gold); animation: fillin 2s var(--ease) both; }
@keyframes fillin { from { width: 0; } to { width: 25%; } }
.fill-cap { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10.5px; color: var(--mute); margin-top: 8px; }

/* ---------- BENTO problemas ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prob { padding: 26px; border-radius: var(--r); position: relative; overflow: hidden; }
.prob .prob-n { font-family: var(--font-mono); font-size: 13px; color: var(--cyan); letter-spacing: .1em; }
.prob h3 { font-size: 19px; margin-top: 14px; font-weight: 600; letter-spacing: -0.01em; }
.prob.feature { display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(120% 80% at 0% 100%, rgba(139,92,246,.12), transparent 60%),
    var(--panel); }
.prob.feature .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,3.6vw,38px); line-height: 1.05; }
.prob.feature p { color: var(--soft); margin-top: 14px; font-size: 15px; }

/* ---------- STEPPER ---------- */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { padding: 26px 28px; border-radius: var(--r); position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; }
.step .snum { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: var(--gold); border: 1px solid var(--line-2); background: rgba(245,196,81,.06); }
.step h3 { font-size: 20px; margin: 4px 0 8px; font-weight: 600; }
.step p { color: var(--soft); font-size: 15px; }
@media (max-width: 520px) { .step { grid-template-columns: 1fr; gap: 12px; } .step .snum { width: 46px; height: 46px; } }
.pay-split { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pay-item { display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,.02); font-size: 13.5px; color: var(--soft); }
.pay-item b { font-family: var(--font-display); color: var(--gold); font-size: 16px; }

/* ---------- FLUXO China->Navio->Brasil ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 8px; margin-top: 20px; }
.flow-node { text-align: center; }
.flow-ic { width: 78px; height: 78px; border-radius: 22px; margin: 0 auto 14px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line-2); color: var(--cyan); position: relative; }
.flow-ic svg { width: 34px; height: 34px; }
.flow-ic.gold { color: var(--gold); } .flow-ic.green { color: var(--green); }
.flow-node b { font-family: var(--font-display); font-size: 15px; display: block; margin-bottom: 3px; }
.flow-node small { color: var(--mute); font-size: 12.5px; }
.flow-line { height: 2px; margin-top: 38px; background: linear-gradient(90deg, var(--cyan), var(--violet)); opacity: .5;
  position: relative; border-radius: 2px; }
.flow-line::after { content: ""; position: absolute; right: -1px; top: -3px; border-left: 7px solid var(--violet);
  border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
@media (max-width: 720px) { .flow { grid-template-columns: 1fr; gap: 24px; } .flow-line { display: none; } }

/* ---------- QUOTE data card ---------- */
.quote { padding: clamp(24px,4vw,40px); border-radius: var(--r-lg); max-width: 940px; margin-inline: auto; }
.quote-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.quote-top .lbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.quote-top .prod { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.quote-mid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; padding: 28px 0; }
.quote-mid .cap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); text-align: center; }
.quote-mid .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,5.6vw,52px); text-align: center; margin-top: 6px; }
.quote-eq { font-size: 26px; color: var(--mute); text-align: center; }
.cotas { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 8px; }
.cotas .c { padding: 14px 6px; border-radius: 10px; text-align: center;
  border: 1px solid var(--line); color: var(--soft); }
.cotas .c b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: inherit; }
.cotas .c span { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.cotas .c.hl { border-color: rgba(245,196,81,.5); color: var(--gold); background: rgba(245,196,81,.08); box-shadow: 0 0 20px -6px var(--gold); }
.quote-foot { border-top: 1px solid var(--line); padding-top: 20px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.quote-foot .m { font-family: var(--font-mono); font-size: 13px; color: var(--soft); }
.quote-foot .m b { color: var(--green); font-family: var(--font-display); font-size: 18px; margin-left: 6px; }

/* ---------- BELIEF ---------- */
.belief { text-align: center; }
.belief h2 { font-size: clamp(34px, 7vw, 82px); line-height: 1.02; letter-spacing: -0.04em; }
.belief .sub { font-family: var(--font-display); color: var(--soft); margin-top: 22px; font-size: clamp(16px,2.3vw,21px); }
.belief .divider { width: 46px; height: 2px; background: var(--grad-future); margin: 26px auto; }
.belief .para { color: var(--soft); max-width: 660px; margin: 0 auto; font-size: 17px; }

/* ---------- PARA QUEM ---------- */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.aud-col { padding: 30px; border-radius: var(--r); }
.aud-col h3 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.aud-col.yes h3 { color: var(--green); } .aud-col.no h3 { color: #FB7185; }
.aud-item { display: flex; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--soft); font-size: 15px; }
.aud-item:first-of-type { border-top: none; }
.aud-item svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; }
.aud-col.yes svg { color: var(--green); } .aud-col.no svg { color: #FB7185; }

.model { margin-top: 20px; padding: 26px; border-radius: var(--r); position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 0% 0%, rgba(34,211,238,.1), transparent 55%),
              radial-gradient(120% 120% at 100% 100%, rgba(245,196,81,.1), transparent 55%), var(--panel);
  display: flex; gap: 16px; align-items: center; }
.model .m-ic { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-holo); color: #05060A; }
.model .m-ic svg { width: 26px; height: 26px; }
.model p { color: var(--soft); font-size: 15.5px; } .model b { color: var(--text); }

/* ---------- BONUS ---------- */
.bonus { padding: clamp(26px,4vw,42px); border-radius: var(--r-lg); display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  background: radial-gradient(120% 120% at 100% 0%, rgba(139,92,246,.14), transparent 55%), var(--panel); }
.bonus .b-ic { width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(120deg,#8B5CF6,#6366F1); color: #fff; }
.bonus .b-ic svg { width: 30px; height: 30px; }
.bonus h3 { font-size: clamp(20px,3vw,27px); margin: 12px 0 10px; }
.bonus p { color: var(--soft); }

/* ---------- OFERTA bento ---------- */
.offer-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 34px; }
.offer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ofeat { padding: 22px; border-radius: var(--r); }
.ofeat .oic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.22); color: var(--cyan); }
.ofeat .oic svg { width: 20px; height: 20px; }
.ofeat p { font-size: 14px; color: var(--soft); }

/* ---------- INVESTIMENTO ---------- */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.price { padding: clamp(26px,4vw,42px); border-radius: var(--r-lg); position: relative; overflow: hidden; }
.price::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-holo); }
.price .plbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.price .pmain { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px,8vw,68px); margin: 12px 0 4px; letter-spacing: -0.03em; }
.price .pmain small { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--soft); }
.price .palt { color: var(--soft); font-size: 15px; } .price .palt b { color: var(--gold); }
.price .pnote { color: var(--mute); font-size: 13.5px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.price .btn { margin-top: 22px; }

.cg { position: relative; aspect-ratio: 16/10; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 120% at 80% 10%, rgba(139,92,246,.14), transparent 55%), #07080d; display: grid; place-items: center; }
.cg-inner { width: 84%; }
.cg-tag { display: inline-block; font-family: var(--font-mono); font-weight: 500; color: var(--gold); font-size: 12px;
  padding: 4px 11px; border-radius: 999px; border: 1px solid rgba(245,196,81,.4); background: rgba(245,196,81,.08); margin-bottom: 10px; }
.cg-box { display: flex; height: 84px; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px -20px #000; }
.cg-fill { flex: 0 0 25%; background: var(--grad-gold); box-shadow: 0 0 30px -4px var(--gold);
  background-image: var(--grad-gold), repeating-linear-gradient(90deg, rgba(0,0,0,.14) 0 2px, transparent 2px 15px); }
.cg-rest { flex: 1; background: #15161d; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 15px); }
.cg-foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--mute); }
.cg-foot span:first-child { color: var(--gold); }

/* ---------- DEPOIMENTOS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi { padding: 26px; border-radius: var(--r); }
.testi .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.testi p { color: var(--soft); font-size: 14.5px; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi .ava { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-future); color: #04121A; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.testi .who b { font-family: var(--font-display); font-size: 14px; display: block; }
.testi .who small { color: var(--mute); font-size: 12px; }

/* ---------- AUTORIDADE ---------- */
.auth-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.auth-photo { aspect-ratio: 4/5; border-radius: var(--r-lg); position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 30% 20%, rgba(34,211,238,.16), transparent 55%),
              radial-gradient(120% 90% at 80% 90%, rgba(245,196,81,.14), transparent 55%), #07080d; display: grid; place-items: center; }
.auth-photo .mono-xl { font-family: var(--font-display); font-weight: 700; font-size: 96px; background: var(--grad-holo);
  -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .85; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.stat { padding: 22px; border-radius: var(--r); }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: 30px; }
.stat .n.cy { color: var(--cyan); } .stat .n.gd { color: var(--gold); } .stat .n.vi { color: var(--violet); } .stat .n.gr { color: var(--green); }
.stat .l { color: var(--mute); font-size: 13px; margin-top: 4px; font-family: var(--font-mono); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px;
  text-align: left; font-family: var(--font-display); font-weight: 600; font-size: clamp(15px,2.1vw,18px); }
.faq-q .ico { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center;
  font-family: var(--font-mono); transition: transform .3s var(--ease), background .3s, color .3s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--grad-future); color: #04121A; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--soft); font-size: 15.5px; padding: 0 24px 24px; }

/* ---------- CTA FINAL ---------- */
.final { text-align: center; position: relative; }
.final h2 { font-size: clamp(34px,6.4vw,66px); letter-spacing: -0.03em; }
.final p { color: var(--soft); max-width: 580px; margin: 22px auto 32px; }
.final .fine { font-family: var(--font-mono); color: var(--mute); font-size: 12.5px; margin-top: 24px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: 44px 0 92px; }
.foot-in { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; align-items: center; color: var(--mute); font-size: 13.5px; font-family: var(--font-mono); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--cyan); }

/* ---------- DOCK ---------- */
.dock { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 60; display: flex; align-items: center; gap: 6px;
  padding: 8px; border-radius: 999px; background: rgba(10,11,18,0.72); backdrop-filter: blur(18px); border: 1px solid var(--line-2);
  box-shadow: 0 20px 50px -20px #000; max-width: 94vw; }
.dock-items { display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; flex: 1 1 auto; min-width: 0; }
.dock-items::-webkit-scrollbar { display: none; }
.dock a[data-sec] { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 12px; border-radius: 999px;
  color: var(--mute); font-size: 10px; font-family: var(--font-mono); white-space: nowrap; transition: color .2s, background .2s; }
.dock a[data-sec] svg { width: 18px; height: 18px; }
.dock a[data-sec]:hover { color: var(--text); }
.dock a[data-sec].active { color: var(--cyan); background: rgba(34,211,238,.1); }
.dock .dock-cta { margin-left: 4px; padding: 12px 18px; font-size: 13px; }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 960px) {
  .hero-wrap, .price-wrap, .auth-grid, .offer-head { grid-template-columns: 1fr; }
  .deck { max-width: 480px; margin-inline: auto; order: -1; }
  .bento { grid-template-columns: 1fr 1fr; }
  .prob.feature { grid-row: auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .quote-mid { grid-template-columns: 1fr; gap: 18px; } .quote-eq { display: none; }
  .aud-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav .btn { display: none; }
  .hero { padding-top: 108px; }
  .bento, .steps, .offer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .bonus { grid-template-columns: 1fr; }
  .footer { padding-bottom: 104px; }
  .dock { bottom: 12px; padding: 6px; }
  .dock a[data-sec] span { display: none; } .dock a[data-sec] { padding: 10px; }
  .dock .dock-cta .full { display: none; } .dock .dock-cta::after { content: "Vaga"; }
}
@media (max-width: 380px) { .container { padding-inline: 16px; } .cotas { grid-template-columns: repeat(2,1fr); } }

/* ---------- Foto de autoridade ---------- */
.auth-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.auth-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(5,6,10,0.55));
  box-shadow: inset 0 0 0 1px var(--line); border-radius: inherit; }

/* ---------- Selo de lançamento fixo ---------- */
@keyframes sealspin { to { transform: rotate(360deg); } }
.launch-seal { position: fixed; left: 22px; bottom: 24px; z-index: 55; width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 38%, rgba(22,24,32,0.94), rgba(8,9,14,0.94));
  border: 1px solid rgba(245,196,81,0.45); backdrop-filter: blur(10px);
  box-shadow: 0 14px 44px -10px rgba(0,0,0,0.6), 0 0 34px -8px rgba(245,196,81,0.5);
  transition: transform .3s var(--ease); }
.launch-seal:hover { transform: scale(1.06) rotate(-4deg); }
.seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealspin 16s linear infinite; }
.seal-ring text { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.4px; fill: var(--gold); text-transform: uppercase; }
.seal-center { position: relative; z-index: 1; line-height: 1.05; }
.seal-center i { font-style: normal; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .08em; color: var(--soft); display: block; text-transform: uppercase; }
.seal-center b { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--gold); display: block; margin: 2px 0; }
.seal-center s { text-decoration: none; font-family: var(--font-mono); font-size: 9px; color: var(--green); display: block; }
@media (max-width: 600px) {
  .launch-seal { left: 12px; bottom: 82px; width: 84px; height: 84px; }
  .seal-center b { font-size: 16px; } .seal-ring text { font-size: 7.4px; }
}

/* ---------- Cronograma de pagamento da cota ---------- */
.paytl { max-width: 940px; margin: 16px auto 0; padding: clamp(24px,3.6vw,36px); border-radius: var(--r-lg); }
.paytl-head { text-align: center; margin-bottom: 30px; }
.paytl-head h3 { font-size: clamp(20px,3vw,27px); margin-top: 12px; }
.paytl-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; }
.paytl-track::before { content: ""; position: absolute; top: 35px; left: 17%; right: 17%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet)); opacity: .45; border-radius: 2px; }
.paytl-step { text-align: center; position: relative; }
.paytl-step .pct { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); position: relative; z-index: 1;
  background: radial-gradient(circle at 50% 38%, rgba(22,24,32,.96), rgba(8,9,14,.96));
  border: 1px solid rgba(245,196,81,.5); box-shadow: 0 0 28px -8px var(--gold); }
.paytl-step b { font-family: var(--font-display); font-size: 16px; display: block; }
.paytl-step small { display: block; margin-top: 6px; color: var(--mute); font-size: 12.5px; font-family: var(--font-mono); line-height: 1.5; }
@media (max-width: 640px) {
  .paytl-track { grid-template-columns: 1fr; gap: 22px; }
  .paytl-track::before { top: 0; bottom: 0; left: 35px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--gold), var(--violet)); }
  .paytl-step { display: grid; grid-template-columns: 70px 1fr; gap: 16px; text-align: left; align-items: center; }
  .paytl-step .pct { margin: 0; }
}
.paytl-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; color: var(--soft); font-size: 14px; }
.paytl-note svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }
.paytl-note b { color: var(--gold); }
