/* ========== reset / base ========== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:'Nunito',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:19.5px;
  line-height:1.6;
  color:#1a1a1a;
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}

/* ========== layout ========== */
.page{max-width:760px;margin:0 auto;padding:32px 24px 64px}

/* ========== HERO · full-bleed (verde de ponta a ponta) ========== */
.hero{
  background:#3DDC97 url('img/hero-bg.webp') center/cover;
  /* full-bleed: escapa do padding da .page e cola no topo + laterais */
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  margin-top:-32px;       /* cola no topo (anula padding-top da page) */
  border-radius:0;
  padding:60px 24px 64px;
  text-align:center;
  color:#0a0a0a;
  margin-bottom:48px;
}
/* conteúdo interno contido e centralizado (não espalha em telas largas) */
.hero > *{
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}
.hero .kicker{
  font-size:21px;
  font-weight:500;
  margin-bottom:16px;
}
.hero h1{
  font-size:42px;
  font-weight:800;
  line-height:1.14;
  letter-spacing:-.015em;
  margin-bottom:26px;
}
.hero .subhead{
  font-size:28px;
  font-weight:800;
  margin-bottom:34px;
}
.hero .bullets{
  list-style:none;
  text-align:center;
}
.hero .bullets li{
  font-size:21px;
  font-weight:700;
  margin:20px 0;
  line-height:1.45;
}
.hero .bullets .check{
  display:inline-block;
  margin-right:4px;
}

/* ========== COPY ========== */
.copy p{margin:0 0 22px}
.copy b{font-weight:800}
.copy u{text-decoration:underline}
.copy .center{text-align:center}
.copy .bold-em{font-weight:800;margin-top:22px;margin-bottom:30px}

/* ========== FIGURES ========== */
.figure{
  margin:24px 0 28px;
  display:flex;
  justify-content:center;
}
.figure img{
  max-width:75%;
  border-radius:2px;
}
.figure-stack{
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.figure-stack img{max-width:60%}
.figure-ig img{max-width:80%}
.figure-pay{margin:14px 0 32px}
.figure-pay img{max-width:48%}

/* ========== FORM ========== */
.form{
  margin:8px 0 24px;
  display:flex;
  flex-direction:column;
  gap:0;
}
.form label{
  font-size:20px;
  font-weight:800;
  margin:14px 0 8px;
  color:#1a1a1a;
}
.form input{
  width:100%;
  padding:18px 18px;
  font-family:inherit;
  font-size:19px;
  font-weight:600;
  color:#3a3a3a;
  background:#dadada;
  border:none;
  border-radius:2px;
  outline:none;
}
.form input::placeholder{color:#7a7a7a;font-weight:600}
.form button{
  margin-top:6px;
  width:100%;
  padding:24px;
  font-family:inherit;
  font-size:24px;
  font-weight:900;
  color:#0a0a0a;
  background:#0fb014;
  border:none;
  border-radius:2px;
  cursor:pointer;
  letter-spacing:.02em;
}
.form button:hover{background:#0e9d12}
.form button:disabled{background:#888;cursor:wait}
.form-error{
  display:none;
  margin:8px 0 4px;
  padding:10px 12px;
  background:#fff3f3;
  border:1px solid #f5b4b4;
  border-radius:4px;
  color:#a02020;
  font-size:14px;
  font-weight:600;
}

/* ========== MODAL LOADING / REDIRECT ========== */
.lc-overlay{
  position:fixed;
  inset:0;
  background:rgba(10,10,10,0.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.lc-overlay.active{display:flex;animation:lcFade 0.25s ease-out}
@keyframes lcFade{from{opacity:0}to{opacity:1}}
.lc-modal{
  background:#fff;
  border-radius:14px;
  padding:36px 28px 32px;
  text-align:center;
  max-width:380px;
  width:100%;
  box-shadow:0 24px 60px rgba(0,0,0,0.3);
  animation:lcPop 0.3s ease-out;
}
@keyframes lcPop{from{transform:scale(0.92);opacity:0}to{transform:scale(1);opacity:1}}
.lc-spinner{
  width:48px;
  height:48px;
  border:4px solid #e0e0e0;
  border-top-color:#0fb014;
  border-radius:50%;
  margin:0 auto 20px;
  animation:lcSpin 0.8s linear infinite;
}
@keyframes lcSpin{to{transform:rotate(360deg)}}
.lc-modal h3{
  font-size:20px;
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:10px;
}
.lc-modal p{
  font-size:15px;
  color:#555;
  margin-bottom:6px;
  line-height:1.5;
}
.lc-modal p b{color:#0fb014;font-weight:800}
.lc-modal .lc-sub{
  font-size:13px;
  color:#999;
  margin-top:10px;
}

/* ========== SUPORTE FLUTUANTE · CAMILA ========== */
.support-fab{
  position:fixed;
  right:20px;
  bottom:24px;
  z-index:9000;
  display:flex;
  align-items:flex-end;
  gap:10px;
  font-family:inherit;
}
.support-fab.dismissed{display:none}

.support-tooltip{
  background:#fff;
  border-radius:14px;
  padding:12px 16px 12px 14px;
  box-shadow:0 12px 32px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.08);
  font-size:14px;
  font-weight:600;
  color:#1a1a1a;
  line-height:1.35;
  max-width:230px;
  position:relative;
  margin-bottom:8px;
  opacity:0;
  transform:translateY(8px) scale(0.95);
  pointer-events:none;
  transition:opacity .35s ease, transform .35s ease;
}
.support-tooltip.visible{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
  animation:supBob 2s ease-in-out infinite 0.8s;
}
@keyframes supBob{0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-3px) scale(1)}}
.support-tooltip::after{
  content:'';
  position:absolute;
  right:-8px;
  bottom:18px;
  width:0;height:0;
  border-left:9px solid #fff;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  filter:drop-shadow(2px 1px 1px rgba(0,0,0,0.05));
}
.support-tooltip b{color:#0fb014}
.support-tooltip .sup-msg{
  display:block;
  min-height:1.35em;
  transition:opacity 0.3s ease;
}
.support-tooltip .sup-close{
  position:absolute;
  top:-8px;
  right:-8px;
  width:22px;
  height:22px;
  background:#fff;
  border:1px solid #e0e0e0;
  border-radius:50%;
  font-size:14px;
  font-weight:700;
  color:#666;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  padding:0;
}
.support-tooltip .sup-close:hover{background:#f4f4f4;color:#1a1a1a}

.support-btn{
  position:relative;
  cursor:pointer;
  border:none;
  background:transparent;
  padding:0;
  display:block;
}
.support-avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 8px 24px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
  background:#ccc center/cover no-repeat;
  display:block;
  transition:transform 0.25s ease;
}
.support-btn:hover .support-avatar{transform:scale(1.06)}
.support-btn::before{
  /* pulse ring */
  content:'';
  position:absolute;
  inset:-3px;
  border-radius:50%;
  border:2px solid #0fb014;
  opacity:0.7;
  animation:supPulse 2s ease-out infinite;
}
@keyframes supPulse{
  0%{transform:scale(1);opacity:0.7}
  100%{transform:scale(1.35);opacity:0}
}
.support-online{
  position:absolute;
  right:2px;
  bottom:2px;
  width:16px;
  height:16px;
  background:#0fb014;
  border:2.5px solid #fff;
  border-radius:50%;
  z-index:2;
}
.support-online::after{
  content:'';
  position:absolute;
  inset:-3px;
  border-radius:50%;
  background:#0fb014;
  opacity:0.5;
  animation:supDot 1.4s ease-out infinite;
}
@keyframes supDot{
  0%{transform:scale(1);opacity:0.5}
  100%{transform:scale(1.8);opacity:0}
}
.support-name{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  margin-top:6px;
  background:rgba(10,10,10,0.85);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
  padding:3px 10px;
  border-radius:10px;
  white-space:nowrap;
  pointer-events:none;
}
.support-name .sup-status{
  display:inline-block;
  width:6px;height:6px;
  background:#0fb014;
  border-radius:50%;
  margin-right:5px;
  vertical-align:1px;
}

@media (max-width:480px){
  .support-fab{right:14px;bottom:18px}
  .support-avatar{width:56px;height:56px}
  .support-tooltip{font-size:13px;max-width:200px;padding:10px 14px}
  .support-online{width:14px;height:14px}
}

/* ========== FOOTER ========== */
.site-footer{
  background:#f4f4f4;
  border-top:1px solid #e0e0e0;
  margin-top:48px;
  padding:36px 24px 40px;
  color:#555;
  font-size:13.5px;
  line-height:1.6;
}
.footer-inner{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.footer-brand{
  font-size:15px;
  color:#1a1a1a;
  margin-bottom:14px;
}
.footer-links{
  margin-bottom:22px;
  font-size:13.5px;
}
.footer-links a{
  color:#1a1a1a;
  text-decoration:none;
  font-weight:600;
  padding:0 4px;
}
.footer-links a:hover{text-decoration:underline}
.footer-links span{color:#aaa;margin:0 4px}
.footer-disclaimer,
.footer-meta-disclaimer{
  margin-bottom:14px;
  font-size:12.5px;
  color:#666;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}
.footer-meta-disclaimer{font-size:11.5px;color:#888}
.footer-copy{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #e0e0e0;
  font-size:12.5px;
  color:#888;
}

/* ========== mobile ========== */
@media (max-width:600px){
  .page{padding:18px 16px 40px}
  .hero{padding:46px 20px 50px;margin-top:-18px}
  .hero .kicker{font-size:18px;margin-bottom:12px}
  .hero h1{font-size:32px;line-height:1.16;margin-bottom:20px}
  .hero .subhead{font-size:23px;margin-bottom:28px}
  .hero .bullets li{font-size:19px;margin:16px 0}
  .figure img{max-width:95%}
  .figure-stack img{max-width:80%}
  .figure-ig img{max-width:100%}
  .figure-pay img{max-width:70%}
  body{font-size:18px}
}
