*{margin:0;padding:0;box-sizing:border-box}
body{
  background:#0c2a20;
  color:#cdeede;
  font-family:"Inter",system-ui,-apple-system,sans-serif;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  line-height:1.6;
}
.wrap{max-width:800px;margin:0 auto;padding:0 22px;width:100%;}
.header{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 22px;max-width:800px;margin:0 auto;width:100%;
}
.logo{
  display:flex;align-items:center;gap:10px;
  font-family:"Sora",sans-serif;font-weight:800;font-size:22px;color:#fff;
}
.logo .mark{
  width:30px;height:30px;border-radius:9px;
  background:linear-gradient(135deg,#0a9e63,#0b7a4d);
  display:grid;place-items:center;color:#fff;font-size:15px;
  box-shadow:0 6px 14px -6px rgba(10,158,99,.8);
}
.logo b{color:#b8881f}
.back-link{color:#a0bfb0;font-size:14px;text-decoration:none;}
.back-link:hover{color:#0a9e63;}
.card{
  background:#fff;border-radius:20px;padding:40px 36px;
  box-shadow:0 20px 60px rgba(0,0,0,.3);
  text-align:center;margin-top:20px;
}
.card h1{
  font-family:"Sora",sans-serif;font-size:24px;color:#0c2a20;
  margin-bottom:6px;
}
.card .sub{color:#5c6e66;font-size:15px;margin-bottom:28px;}
.info-text{
  font-size:14px;color:#5c6e66;text-align:left;line-height:1.7;
  margin-bottom:16px;
}
.table-wrap{
  overflow-x:auto;margin-bottom:24px;
}
table{
  width:100%;border-collapse:collapse;font-size:14px;text-align:left;
}
thead th{
  background:#0c2a20;color:#cdeede;
  padding:12px 14px;font-family:"Sora",sans-serif;font-weight:600;font-size:13px;
}
tbody td{
  padding:12px 14px;border-bottom:1px solid #e4ece8;color:#0c2a20;
}
tbody tr:nth-child(even){background:#f5f8f6;}
tbody tr:hover{background:#eaf5ef;}
.label-pagamento{
  display:inline-block;padding:3px 10px;border-radius:6px;
  font-size:12px;font-weight:700;
}
.label-pix{background:#e6f7ee;color:#0a9e63;}
.label-cartao{background:#fef6e0;color:#b8881f;}
.label-crypto{background:#f0e6ff;color:#7c3aed;}
.label-carteira{background:#e0f2fe;color:#0284c7;}
.benefits{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
  margin:24px 0 20px;
}
.ben{
  background:#f5f8f6;border:1px solid #e4ece8;
  border-radius:12px;padding:14px 12px;text-align:center;
}
.ben .ic{font-size:22px;margin-bottom:4px;}
.ben .lb{font-size:13px;color:#0c2a20;font-weight:700;}
.ben .ds{font-size:12px;color:#5c6e66;margin-top:2px;}
.btn{
  display:block;width:100%;
  font-family:"Sora",sans-serif;font-weight:700;font-size:16px;
  padding:16px 20px;border-radius:999px;border:0;cursor:pointer;
  text-decoration:none;transition:transform .15s ease,box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:#0a9e63;color:#fff;
  box-shadow:0 12px 26px -12px rgba(10,158,99,.7);
  margin-bottom:12px;
}
.btn-ghost{
  background:#f5f8f6;color:#0a3d2e;
  border:1.5px solid #cfe0d8;
}
.steps{text-align:left;margin-bottom:28px;}
.step{
  display:flex;gap:14px;align-items:flex-start;
  padding:14px 0;border-bottom:1px solid #e4ece8;
}
.step:last-child{border-bottom:none;}
.step .num{
  width:32px;height:32px;border-radius:50%;flex-shrink:0;
  background:#eef6f1;color:#0a9e63;font-family:"Sora";
  font-weight:700;font-size:14px;
  display:grid;place-items:center;
}
.step .txt h3{font-family:"Sora";font-size:15px;color:#0c2a20;margin-bottom:4px;}
.step .txt p{font-size:14px;color:#5c6e66;line-height:1.5;}
.faq-section{margin-top:24px;text-align:left;}
.faq-item{border-bottom:1px solid #e4ece8;padding:14px 0;}
.faq-item:last-child{border-bottom:none;}
.faq-q{
  font-family:"Sora",sans-serif;font-size:15px;color:#0c2a20;
  font-weight:600;margin-bottom:6px;cursor:default;
}
.faq-a{font-size:14px;color:#5c6e66;line-height:1.6;}
.footer-text{
  margin-top:24px;font-size:13px;color:#6f9a80;text-align:center;padding-bottom:40px;
}
.footer-text a{color:#a0bfb0;text-decoration:underline;}
@media(max-width:560px){
  .benefits{grid-template-columns:1fr;}
  .card{padding:24px 18px;}
}
