:root{
  --yellow:#FFE600;
  --orange:#ff9f0a;
  --text:#333333;
  --page-bg:#000000;
  --body-bg:#23262b;
  --panel:#151515;
  --panel-2:#1d1d1d;
  --muted:#7d7d7d;
  --muted-2:#5f5f5f;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  background:var(--body-bg);
  font-family:Arial, Helvetica, sans-serif;
}

body{
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

.page{
  width:100%;
  max-width:430px;
  margin:0 auto;
  background:var(--page-bg);
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(255,255,255,.04);
}

.image-section{
  position:relative;
  width:100%;
  line-height:0;
}

.section-image{
  width:100%;
  height:auto;
  display:block;
}

/* CTA */
.cta-button{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(82%, 320px);
  min-height:60px;
  padding:0 24px;
  border-radius:16px;
  background:var(--yellow);
  color:var(--text);
  text-decoration:none;
  font-size:18px;
  font-weight:800;
  line-height:1;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:1px;
  white-space:nowrap;
  box-shadow:
    0 10px 22px rgba(0,0,0,.28),
    inset 0 -2px 0 rgba(0,0,0,.08);
  z-index:3;
}

.cta-hero .cta-button{
  bottom:18px;
}

.cta-bottom .cta-button{
  bottom:34px;
}

.spawn-pulse{
  opacity:0;
  animation:
    spawnIn .55s cubic-bezier(.2,.9,.2,1.2) forwards,
    pulseGlow 1.55s ease-in-out infinite .75s;
}

.delay-2{
  animation-delay:0s, .95s;
}

@keyframes spawnIn{
  0%{
    opacity:0;
    transform:translateX(-50%) scale(.55);
  }
  65%{
    opacity:1;
    transform:translateX(-50%) scale(1.06);
  }
  100%{
    opacity:1;
    transform:translateX(-50%) scale(1);
  }
}

@keyframes pulseGlow{
  0%{
    transform:translateX(-50%) scale(1);
    box-shadow:
      0 10px 22px rgba(0,0,0,.28),
      0 0 0 0 rgba(255,230,0,.55);
  }
  70%{
    transform:translateX(-50%) scale(1.035);
    box-shadow:
      0 10px 22px rgba(0,0,0,.28),
      0 0 0 18px rgba(255,230,0,0);
  }
  100%{
    transform:translateX(-50%) scale(1);
    box-shadow:
      0 10px 22px rgba(0,0,0,.28),
      0 0 0 0 rgba(255,230,0,0);
  }
}

.cta-button:hover{
  filter:brightness(.98);
}

.cta-button:active{
  transform:translateX(-50%) scale(.98);
}

/* FAQ */
.faq-section{
  background:#000;
  padding:28px 16px 22px;
}

.faq-header{
  text-align:center;
  margin-bottom:18px;
}

.faq-header h2{
  margin:0;
  font-size:28px;
  line-height:1.1;
  font-weight:800;
  color:var(--white);
  text-transform:uppercase;
}

.faq-header h2 span{
  color:var(--orange);
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.faq-item{
  background:var(--panel);
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.04);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding:18px 48px 18px 14px;
  color:var(--white);
  font-size:15px;
  line-height:1.35;
  font-weight:700;
  user-select:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:var(--white);
  font-size:24px;
  line-height:1;
  font-weight:400;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-content{
  padding:0 14px 16px;
  color:#d2d2d2;
  font-size:14px;
  line-height:1.55;
}

.faq-content p{
  margin:0;
}

/* Footer / pagamentos */
.footer-payments{
  background:#000;
  padding:28px 18px 30px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-logo{
  width:140px;
  max-width:55%;
  display:block;
  margin:0 auto 16px;
}

.footer-contact{
  max-width:340px;
  margin:0 auto 16px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}

.footer-contact p{
  margin:0 0 6px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
  font-size:12px;
  margin-bottom:16px;
  color:var(--muted-2);
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--white);
}

.payments-image{
  width:100%;
  display:block;
  margin:0 auto;
}

/* Loader */
.loader{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.hidden{
  display:none !important;
}

.loader-box{
  width:min(320px,100%);
  background:#111;
  border-radius:18px;
  padding:28px 20px;
  text-align:center;
  color:#fff;
  box-shadow:0 16px 30px rgba(0,0,0,.35);
}

.loader-box p{
  margin:0;
  font-size:16px;
  line-height:1.4;
}

.spinner{
  width:52px;
  height:52px;
  margin:0 auto 14px;
  border-radius:50%;
  border:5px solid rgba(255,255,255,.16);
  border-top-color:var(--yellow);
  animation:spin .9s linear infinite;
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

@media (max-width:420px){
  .cta-button{
    min-height:58px;
    font-size:17px;
    border-radius:15px;
  }

  .cta-hero .cta-button{
    bottom:16px;
  }

  .cta-bottom .cta-button{
    bottom:28px;
  }

  .faq-section{
    padding:24px 14px 20px;
  }

  .faq-header h2{
    font-size:24px;
  }

  .faq-item summary{
    font-size:14px;
    padding:16px 44px 16px 12px;
  }

  .faq-content{
    padding:0 12px 14px;
    font-size:13px;
  }

  .footer-payments{
    padding:24px 14px 26px;
  }

  .footer-logo{
    width:128px;
    margin-bottom:14px;
  }

  .footer-contact,
  .footer-links{
    font-size:11px;
  }
}