:root{
  --bg:#f3f4f6;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;

  --pink:#f19ac2;
  --pinkSoft:#fde7f1;

  --green:#16a34a;
  --greenDark:#12823c;

  --border:#e5e7eb;
  --shadow: 0 14px 28px rgba(2,6,23,.08);
}

*{ box-sizing:border-box; }


body{
  margin:0;
  padding:0px;
  background:#fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
    overflow-y: auto;
}

/* ===== HERO (tela ATENÇÃO) ===== */
.heroTitle{
  text-align:center;
  margin: 0;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  font-size: 20px;
}


.heroTitle .green{ color: #16a34a; }
.heroTitle .black{ color: #0f172a; }

/* texto abaixo */
.heroCopy{
  text-align:center;
  margin: 12px auto 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.45;
  color:#0f172a;
}
.heroCopy .green{ color:#16a34a; }

/* mosaico de imagens (igual print) */


.mosaic .big{
  grid-row: 1 / span 2;   /* ocupa duas linhas */
  grid-column: 2 / span 1;
}

/* mosaico / imagem central */
.mosaic{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto;
  width: 100%;
}

.mosaic img{
  width: 100%;
  max-width: 320px; /* controla o tamanho */
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.phone{
  width: 100%;
  min-height: 100vh;

  background:#fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;

  overflow-y: auto;   /* ✅ SCROLL GLOBAL */
  -webkit-overflow-scrolling: touch;

  display:flex;
  flex-direction: column;
}



.topbar{
  position: absolute;      /* 🔥 NÃO ocupa espaço */
  top: 8px;
  left: 8px;

  height: auto;
  padding: 0;
  background: transparent;
  z-index: 10;
}



.back{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.15s ease;
}
.back:active{ transform:scale(.98); }
.back svg{ width:18px; height:18px; opacity:.75; }

.content{
  flex: 1;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}


.brand{
  display:grid;
  place-items:center;
  gap:10px;
  padding:10px 0 12px;
}

.logo{
  width:62px;
  height:62px;
  border-radius:999px;
  border:1px solid var(--border);
  display:grid;
  place-items:center;
  background:#fff;
  overflow:hidden;
}
.logo svg{ width:44px; height:44px; opacity:.55; }

.brand h1{
  margin:0;
  font-size:14px;
  letter-spacing:.6px;
  color:#8b949e;
  font-weight:800;
  text-transform:uppercase;
  text-align:center;
  line-height:1.1;
}

.progressWrap{
  margin: 2px 0 6px;    /* 🔥 reduz MUITO */
  padding: 0 6px;
}

.progress{
  height:8px;
  background:#f5f5f5;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.04);
}
.bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #44f07e, #19e133);
  border-radius:999px;
  transition: width .35s ease;
}

.title{
  text-align:center;
  margin:0;
  font-size:20px;
  font-weight:900;
}

.desc{
  margin:10px auto 0;
  max-width:320px;
  text-align:center;
  color:var(--muted);
  line-height:1.35;
  font-size:17px;
}

.divider{
  border-top:2px dashed #c7d2fe;
  margin:18px 0;
  opacity:.9;
}

.btn{
  display: block;                 /* permite margin auto */
  width: 100%;
  max-width: 360px;               /* ✅ largura “normal” */
  margin: 0 auto;                 /* ✅ centraliza */
  margin-top: 24px;

  border:0;
  border-radius:16px;
  padding:16px;
  font-weight:900;
  cursor:pointer;
  background:var(--green);
  color:#fff;
  box-shadow: 0 10px 0 var(--greenDark);
  transition:.12s ease;
  font-size:16px;
}

.btn:active{
  transform: translateY(3px);
  box-shadow: 0 7px 0 var(--greenDark);
}

.options{
  display: grid;
  gap: 14px;
  margin-top: 16px;

  padding: 0 14px;      /* 🔥 AFASTA DA PAREDE */
}

.option {
    border: 1px solid rgb(18 204 67 / 55%);
    background: linear-gradient(#9ce38a94, #bdecad);
    border-radius: 18px;
    padding: 14px 14px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .06);
    transition: .12s ease;
}
.option:active{ transform:scale(.995); }

.option .txt{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.option .txt b{
  font-size:14px;
  line-height:1.2;
}
.option .txt small{
  font-size:12px;
  color:var(--muted);
  line-height:1.2;
}

.chev{
  width:30px;
  height:30px;
  border-radius:12px;
  border:1px solid rgba(241,154,194,.55);
  background:#fff;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.chev svg{ width:16px; height:16px; opacity:.7; }

/* grid opções com imagem */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin: 5px;
}

.cardOpt{
  border-radius:18px;
  border:1px solid rgba(2, 129, 13, 0.6);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
  cursor:pointer;
  transition:.12s ease;
}
.cardOpt:active{ transform:scale(.99); }

.cardOpt .img{
  height:200px;        /* 🔥 mais alto = menos corte */
  overflow:hidden;

}

.cardOpt img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: top center;   /* 🔥 NÃO corta a cabeça */
}

.cardOpt .label{
  padding:12px 12px;
  font-weight:900;
  font-size:14px;
}
.cardOpt .sub{
  padding:0 12px 12px;
  margin-top:-8px;
  color:var(--muted);
  font-size:12px;
  line-height:1.2;
}

.footerNote{
  text-align:center;
  margin-top:14px;
  color:#94a3b8;
  font-size:12px;
}
.screenFill{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.screenCenter{
  flex: 1;
  display: flex;
  flex-direction: column;

  justify-content: flex-start;   /* não centraliza mais */
  align-items: center;
  text-align: center;

  padding: 80px 16px 0;          /* 🔥 empurra para baixo */
}


/* ===== seleção rosinha ===== */
.condItem.selected{
  background: #289e3c;         /* rosa */
  border-color: #008812;
}

.condItem.selected .condText{
  color: #fff;
}

.condItem.selected .condIcon{
  background: rgba(255,255,255,.25);
}


/* ===== lista de condições (igual print) ===== */
.condList{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.condItem{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: transform .08s ease;
}

.condItem:active{ transform: scale(.995); }

.condIcon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  background: #f8fafc;
}

.condIcon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.condText{
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
}

/* para manter o layout “com respiro” */
.condWrap{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding-bottom:24px; /* 👈 respiro pro botão */
}

/* ✅ destrava scroll interno dentro de flex */
.content{ min-height: 0; }   /* não quebra outras telas */
.screenFill{ min-height: 0; }/* não quebra outras telas */

/* ===== tela condições: scroll interno + botão sempre visível ===== */
.condPage{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;              /* ESSENCIAL */
}

.condScroll{
  overflow: visible;
  max-height: none;
}


.condFooter{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px 0 0;
  border-top: 1px solid #eef2f7;
}
/* =========================
   CICLO (single select, clica e avança)
========================= */
.optList{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.optItem{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 14px;
  border-radius: 16px;

  background: #fff;
  border: 2px solid rgba(241,154,194,.55);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  cursor: pointer;
  transition: transform .08s ease;
}
.optItem:active{ transform: scale(.995); }

.optLeft{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.optIconBox{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  font-size: 18px;
}

.optText{
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  line-height: 1.25;
}

.optChev{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(241,154,194,.55);
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.optChev svg{ width: 16px; height: 16px; opacity: .7; }


/* ===== sintomas (multi-select com checkbox) ===== */
.symPage{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}

.symScroll{
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  padding: 0 14px 12px;   /* 🔥 AFASTA DA PAREDE */
}


.symList{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.symItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding: 16px 14px;
  border-radius: 16px;

  background: linear-gradient(#fff, var(--pinkSoft));
  border: 2px solid rgba(241,154,194,.55);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  cursor:pointer;
  transition: transform .08s ease;
}

.symItem:active{ transform: scale(.995); }

.symText{
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.symCheck{
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(241,154,194,.75);
  background: #fff;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}

.symCheck svg{
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(.9);
  transition: .12s ease;
}

/* selecionado */
.symItem.selected{
  border-color: #f783c2;
}

.symItem.selected .symCheck{
  background: #f783c2;
  border-color: #f783c2;
}

.symItem.selected .symCheck svg{
  opacity: 1;
  transform: scale(1);
  color: #fff;
}

/* ===== sintomas (multi-select com checkbox) ===== */
.symPage{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}

.symScroll{
  flex:1;
  min-height:0;
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.symList{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.symItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding: 16px 14px;
  border-radius: 16px;

  background: linear-gradient(#fff, var(--pinkSoft));
  border: 2px solid rgba(241,154,194,.55);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  cursor:pointer;
  transition: transform .08s ease;
}

.symItem:active{ transform: scale(.995); }

.symText{
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.symCheck{
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(241,154,194,.75);
  background: #fff;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}

.symCheck svg{
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(.9);
  transition: .12s ease;
}

/* selecionado */
.symItem.selected{
  border-color: #f783c2;
}

.symItem.selected .symCheck{
  background: #f783c2;
  border-color: #f783c2;
}

.symItem.selected .symCheck svg{
  opacity: 1;
  transform: scale(1);
  color: #fff;
}



/* ===== Tela G1 / Notícia ===== */
.newsTitle{
  text-align:center;
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
}

.newsTitle .green{
  color: var(--green);
}

.newsText{
  margin: 12px auto 0;
  max-width: 340px;
  text-align: center;
  color: var(--muted);
  line-height: 1.35;
  font-size: 17px;
}

.g1Link{
  display: inline-block;
  margin: 10px auto 0;
  text-align:center;
  color: #ef4444;            /* vermelho */
  font-weight: 900;
  text-decoration: underline;
}

.g1Box{
  margin: 16px auto 0;
  width: 100%;
  max-width: 290px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
  background:#fff;
}

.g1Box img{
  width: 100%;
  height: auto;
  display:block;
}


/* ===== botões grandes verdes (2 opções) ===== */
.bigChoiceWrap{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.bigQuestion{
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}

.bigSub{
  text-align: center;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.bigChoices{
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

/* reutiliza sua cor verde, mas com cara de "pill button" */
.bigBtn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 18px 16px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.25;
  cursor: pointer;

  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 0 var(--greenDark);
  transition: .12s ease;
  text-align: center;
}

.bigBtn:active{
  transform: translateY(3px);
  box-shadow: 0 7px 0 var(--greenDark);
}

/* ===== alimentos (multi-select com imagem) ===== */
.foodPage{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}

.foodList{
  display: grid;
  gap: 12px;
  margin-top: 18px;

  padding: 0 14px 12px;   /* 🔥 AFASTA DA PAREDE */
}

.foodItem{
  display:flex;
  align-items:center;
  gap:12px;

  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  transition: transform .08s ease;
}

.foodItem:active{ transform: scale(.995); }

.foodImg{
  width:64px;
  height:54px;
  flex:0 0 64px;
  background:#f1f5f9;
  display:block;
}

.foodImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.foodName{
  font-weight:700;
  font-size:14px;
  color:#0f172a;
}

/* ===== seleção ROSA (igual InLead) ===== */
.foodItem.selected{
  background: var(--pink);        /* rosa preenchido */
  border-color: var(--pink);
}

.foodItem.selected .foodName{
  color:#fff;
  font-weight:800;
}

.foodItem.selected .foodImg{
  background: rgba(255,255,255,.25);
}

/* ===== tela áudio + prova ===== */
.audioTitle{
  text-align:center;
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.audioHint{
  margin: 8px auto 0;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* player card */
.audioCard{
  width: 100%;
  max-width: 420px;
  margin: 14px auto 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
  padding: 12px;
}

.audioTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.audioName{
  font-weight: 800;
  font-size: 12px;
  color: #111827;
}

.audioRow{
  display:flex;
  align-items:center;
  gap: 10px;
}

.audioAvatar{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow:hidden;
  flex: 0 0 38px;
  background:#f1f5f9;
}
.audioAvatar img{ width:100%; height:100%; object-fit:cover; display:block; }

.playBtn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: #f3f4f6;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.playBtn svg{ width:18px; height:18px; opacity:.85; }

.wave{
  flex: 1;
  height: 38px;
  border-radius: 999px;
  background: #ececec;
  position: relative;
  overflow:hidden;
  cursor:pointer;
}

.waveFill{
  position:absolute;
  left:0; top:0; bottom:0;
  width:0%;
  background: #d9d9d9;
  transition: width .08s linear;
}

.waveBars{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 4px;
  opacity:.75;
  pointer-events:none;
}
.red{
  color: red;
}

.waveBars span{
  width: 3px;
  border-radius: 999px;
  background: #9ca3af;
  height: 10px;
}
.waveBars span:nth-child(2){ height: 14px; }
.waveBars span:nth-child(3){ height: 8px; }
.waveBars span:nth-child(4){ height: 16px; }
.waveBars span:nth-child(5){ height: 12px; }
.waveBars span:nth-child(6){ height: 18px; }
.waveBars span:nth-child(7){ height: 9px; }
.waveBars span:nth-child(8){ height: 15px; }
.waveBars span:nth-child(9){ height: 11px; }
.waveBars span:nth-child(10){ height: 17px; }

.audioTime{
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  background:#f3f4f6;
  padding: 6px 10px;
  border-radius: 999px;
}

/* bloco do caso */
.caseTitle{
  text-align:center;
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 900;
}
.caseText{
  margin: 10px auto 0;
  max-width: 360px;
  text-align:center;
  color: var(--text);
  line-height: 1.35;
  font-size: 13px;
}

.caseImg{
  width: 100%;
  max-width: 420px;
  margin: 14px auto 0;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid #e5e7eb;
  background:#f1f5f9;
}
.caseImg img{ width:100%; height:auto; display:block; }

/* card depoimento */
.testiCard{
  width: 100%;
  max-width: 420px;
  margin: 12px auto 0;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background:#fff;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
  padding: 12px;
}

.testiTop{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
}
.testiAvatar{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  background:#f1f5f9;
  flex: 0 0 38px;
}
.testiAvatar img{ width:100%; height:100%; object-fit:cover; display:block; }

.testiName{
  font-weight: 900;
  font-size: 14px;
  line-height:1.1;
}
.testiLoc{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.testiMsg{
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #111827;
}
/* ====== TELA ANÁLISE ====== */
.analiseWrap{
  width: 100%;
  max-width: 420px;          /* 🔥 igual InLead */
  margin: 0 auto;

  padding: 0 14px 0;         /* 🔥 afasta da parede */
}


.analiseTopImg{
  width:100%;
  border-radius: 10px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  background:#fff;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.analiseTopImg img{ width:100%; display:block; }

.analiseTitle{
  text-align:center;
  margin: 14px 0 0;
  font-size:16px;
  font-weight:900;
  line-height:1.25;
}
.analiseTitle .green{ color: var(--green); }

.stats{
  margin-top: 14px;
  display:grid;
  gap: 14px;
}

.statRow{
  display:grid;
  gap: 8px;
}

.statHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color:#0f172a;
}
.statPct{
  font-weight:900;
  color:#64748b;
}

.track{
  position:relative;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: visible;
}
.fill{
  position:absolute;
  left:0; top:0; bottom:0;
  border-radius: 999px;
  width: 0%;
}
.knob{
  position:absolute;
  top:50%;
  transform: translate(-50%,-50%);
  width: 16px;
  height: 16px;
  border-radius:999px;
  background:#fff;
  border: 3px solid #e5e7eb;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.fill.red{ background:#ef4444; }
.fill.green{ background:#22c55e; }
.fill.gray{ background:#cbd5e1; }

.parasitaTitle{
  margin: 16px 0 0;
  text-align:center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}
.parasitaTitle .green{ color: var(--green); }

.parasitaName{
  text-align:center;
  margin-top: 6px;
  font-style: italic;
  text-decoration: underline;
  color:#0f172a;
  font-weight: 500;
}

.parasitaImg{
  width:100%;
  max-width:420px;
  margin: 12px auto 0;
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
}
.parasitaImg img{ width:100%; display:block; }

.explain{
  margin: 14px auto 0;
  max-width: 390px;
  text-align:center;
  font-size: 17px;
  line-height: 1.35;
  color:#0f172a;
  font-weight: 800;
}
.explain .green{ color: var(--green); }

/* ====== LOADING ====== */
.loadWrap{
  width:100%;
  max-width:420px;
  margin: 0 auto;
  text-align:center;
  padding: 12px 14px 0;
}

.loadLogo{
  width: 110px;
  margin: 10px auto 6px;
}
.loadLogo img{
  width:100%;
  display:block;
}

.loadMain{
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color:#0f172a;
}

.loadMain .mark{
  display:inline-block;
  background:#16a34a;
  color:#ffffff;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 4px;
}

.loadBars{
  margin-top: 22px;
  display:grid;
  gap: 18px;
}

.loadLine{
  display:grid;
  gap: 6px;
}

.loadLineTop{
  display:flex;
  justify-content:space-between;
  font-size: 13px;
  font-weight: 700;
  color:#0f172a;
}

.loadTrack{
  height: 10px;
  border-radius: 999px;
  background:#fde7ef;
  overflow:hidden;
}

.loadFill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #44f07e, #19e133);
  border-radius: 999px;
  transition: width .12s linear;
}

.loadCaption{
  margin-top: 14px;
  font-size: 12px;
  color:#94a3b8;
  font-weight: 600;
}
.analiseHero img{
  width:100%;
  border-radius:16px;
  margin-bottom:14px;
}

.statItem{
  margin-bottom:14px;
}

.statTop{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  margin-bottom:6px;
}

.statTrack{
  width:100%;
  height:8px;
  background:#e5e7eb;
  border-radius:6px;
  overflow:hidden;
}

.statFill{
  height:100%;
  width:0%;
  border-radius:6px;
  transition: width 1.2s ease;
}

.statTrack.red .statFill{ background:#ef4444; }
.statTrack.green .statFill{ background:#22c55e; }
.statTrack.gray .statFill{ background:#cbd5e1; }
.installment-badge{
  max-width:320px;              /* 🔥 mais curto */
  margin:16px auto 0;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:#dcfce7;           /* verde claro do site */
  border-radius:14px;
  padding:12px 14px;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.teste180{
  width: 100%;
  max-width: 420px;            /* 🔥 ocupa área grande */
  margin: 22px auto;

  background: #dcfce7;         /* verde claro InLead */
  border-radius: 18px;

  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testeText{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testeText strong{
  font-size: 16px;
  font-weight: 900;
  color: #15803d;              /* verde principal */
  letter-spacing: .2px;
}

.testeText span{
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
}

.testePrice{
  background: #bbf7d0;         /* badge verde mais forte */
  border-radius: 12px;
  padding: 10px 14px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.testePrice small{
  font-size: 12px;
  font-weight: 700;
  color: #166534;
}

.testePrice strong{
  font-size: 18px;
  font-weight: 900;
  color: #166534;
}

.gift-text{
  max-width:360px;
  margin:16px auto 10px;
  text-align:center;

  font-size:15px;
  line-height:1.4;
  font-weight:700;

  color:#16a34a; /* 🔥 VERDE OFICIAL */
}

.gift-text strong{
  font-weight:900;
  color:#16a34a; /* mantém tudo verde */
}
/* ===== LOGO FIXA NO TOPO ===== */
.headerLogo{
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 6px;        /* 🔥 distância real do topo */
  padding: 0;
}

.headerLogo img{
  width: 102px;           /* igual ao print */
  height: auto;
  display: block;
}
/* força layout em coluna (não precisa existir antes) */
.screenFill,
.content{
  display: flex;
  flex-direction: column;
}

/* tela de análise ocupa o espaço vertical */
.analiseWrap{
  flex: 1;
}
.condFooter,
/* 🔧 NORMALIZA symFooter PARA PULSE */
.symFooter {
  position: relative !important;
  overflow: visible !important;
  transform: none !important;
  z-index: 2 !important;
}

/* 🔒 garante que botões normais nunca fiquem presos */
.condWrap > .btn,
.condWrap button.btn{
  position: static !important;
}
.alertBox{
  display:flex;
  align-items:center;
  gap:10px;

  background:#16a34a;
  color:#ffffff;

  padding:12px 14px;
  border-radius:12px;

  margin:10px 16px;   /* 👈 AQUI está a chave */
  
  box-shadow:0 3px 8px rgba(22,163,74,.18);
}

.audioTitle{
  margin-top:6px !important;
}

.alertIcon{
  font-size:22px;
  line-height:1;
}

.alertText{
  font-size:14px;
  line-height:1.35;
}

.alertText strong{
  font-weight:900;
}
.safeBottom {
  padding-bottom: 32px;
}
.appFooter {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  padding: 24px 16px 32px;
  margin-top: 60px;
}
.checkBlock {
  max-width: 360px;
  margin: 18px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkItem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkIcon {
  color: #22c55e;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
}

.checkItem p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #0f172a;
}

.checkText {
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.checkFinal {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.checkFinal span {
  color: #16a34a;
}
/* =========================
   TESTIMONIAL – PADRÃO INLEAD CLEAN
========================= */

/* container geral (afasta da parede) */
.testimonials{
  max-width: 420px;
  margin: 28px auto 0;
  padding: 0 12px;              /* 🔥 margem lateral */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* card */
.testiCard{
  background:#ffffff;
  border-radius:18px;
  padding:16px 16px 18px;
  border:1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(2,6,23,.06);
}

/* header */
.testiHeader{
  display:flex;
  align-items:center;
  gap:12px;
}

/* avatar */
.testiAvatar{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid #e5e7eb;
}

/* nome */
.testiName{
  font-weight:800;
  font-size:14.5px;
  color:#0f172a;
}

/* local */
.testiLoc{
  font-size:12.5px;
  color:#94a3b8;                /* 🔥 cinza mais suave */
  margin-top:2px;
}

/* estrelas */
.testiStars{
  color:#facc15;
  font-size:13px;
  letter-spacing:1px;
  margin-top:2px;
}

/* texto do depoimento */
.testiText{
  margin-top:14px;
  font-size:14px;
  line-height:1.6;              /* 🔥 mais confortável */
  color:#475569;                /* 🔥 cinza InLead */
  font-weight:500;
}


/* LISTA PADRÃO INLEAD */
.inleadList {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inleadItem {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;

  padding: 14px 16px;
  font-size: 15px;
}

.inleadItem .check {
  width: 20px;
  height: 20px;
  border-radius: 4px;

  background: #22c55e;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.inleadItem .text {
  flex: 1;
  font-weight: 500;
  color: #0f172a;
}

.inleadItem .price {
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}
.bonusBlock {
  max-width: 420px;
  margin: 28px auto 0;
  padding: 0 12px;
  text-align: center;
}

.bonusTitle {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.bonusList {
  margin: 16px 0 22px;
  padding-left: 18px;
  text-align: left;
  color: #334155;
  font-size: 14.5px;
  line-height: 1.5;
}

.bonusList li {
  margin-bottom: 8px;
}

.bonusBtn {
  width: 100%;
  margin-top: 6px;
}

.giftText {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: #16a34a;
  line-height: 1.4;
}
/* ===== PADRÃO INLEAD – TEXTO ===== */

.questionTitle {
  font-size: 22px;
  font-weight: 800;
  color: #111827; /* preto forte */
  line-height: 1.3;
  margin-bottom: 12px;
}

.questionSubtitle {
  font-size: 15px;
  font-weight: 600;
  color: #111827; /* não usar cinza claro */
  line-height: 1.5;
  margin-bottom: 8px;
}

.questionText {
  font-size: 14.5px;
  color: #374151; /* cinza escuro padrão InLead */
  line-height: 1.55;
  margin-bottom: 10px;
}

.questionHint {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}
.optionTitle {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.optionDesc {
  font-size: 13.5px;
  color: #6b7280;
}
p.ql-align-center {
    text-align: center;
}
/* ===========================
   BOTÃO PULSE À PROVA DE LAYOUT
   =========================== */

.btn-pulse {
  position: relative !important;
  isolation: isolate; /* 🔥 CHAVE DA SOLUÇÃO */
  z-index: 0 !important;
  
  /* sombra fixa inferior */
  box-shadow:
    0 6px 0 #166534,
    0 10px 20px rgba(22, 163, 74, 0.55) !important;
}

/* halo do pulse (ANTES, não depois) */
.btn-pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;

  background: rgba(34, 197, 94, 0.85);
  z-index: -1;
  opacity: 0;

  pointer-events: none;
  animation: pulseHaloSafe 1.4s ease-out infinite;
}

/* animação rápida e nítida */
@keyframes pulseHaloSafe {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  35% {
    opacity: 0.55;
    transform: scale(1.05);
  }
  65% {
    opacity: 0.25;
    transform: scale(1.10);
  }
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}
/* ===== MULTI CHECK (estilo da imagem) ===== */
.multiWrap{
  width:100%;
  max-width:420px;
  margin:0 auto;
  padding: 10px 14px 18px;
}

.multiTitle{
  font-size:20px;
  line-height:1.15;
  font-weight:900;
  text-align:center;
  margin: 6px 0 6px;
}

.multiDesc{
  text-align:center;
  color:#64748b;
  margin: 0 0 14px;
}

.multiList{
  display:grid;
  gap:12px;
}

.multiItem{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border-radius:18px;
  border:2px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.06);
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .05s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.multiItem:active{
  transform: scale(.995);
}

.multiCheck{
  width:28px;
  height:28px;
  border-radius:7px;
  border:2px solid rgba(22,163,74,.55);
  background:#fff;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}

.multiTick{
  width:18px;
  height:18px;
  display:none; /* aparece só selecionado */
}

.multiText{
  font-weight:700;
  letter-spacing:.2px;
  color:#0f172a;
  font-size:14.5px;
}

.multiText .dot{
  display:inline-block;
  margin-right:8px;
  font-weight:900;
}

.multiItem.is-on{
  border-color:#16a34a;
  box-shadow: 0 0 0 2px rgba(22,163,74,.10) inset;
  background: rgba(22,163,74,.08);
}

.multiItem.is-on .multiCheck{
  background:#16a34a;
  border-color:#16a34a;
}

.multiItem.is-on .multiTick{
  display:block;
}

.multiFooter{
  margin-top:16px;
}
/* Título e texto menor dentro das opções */
.options .option .txt{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.optTitle{
  font-weight:900;
  font-size:18px;
  line-height:1.1;
  color:#0f172a;
}

.optSmall{
  font-size:14px;
  line-height:1.25;
  color:#334155;
  font-weight:500;
  max-width: 260px; /* ajuda a quebrar igual a imagem */
}
/* =========================
   V2 (igual ao print 2)
   NÃO mexe nas classes globais
========================= */


.option--v2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:16px 16px;
  border-radius:16px;

  background:#eaf7ee;
  border:3px solid #6fcf97;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}

/* emoji grande e alinhado */
.emoji--v2{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#dff3e6;
  font-size:28px;
  flex:0 0 44px;
}

/* texto mais "fino" dentro dos botões */
.txt--v2{ flex:1; }

.optText--v2{
  display:block;
  font-size:17px;     /* um pouco grande */
  font-weight:600;    /* mais fino que 800/900 */
  line-height:1.15;
  color:#0f172a;
}

/* chevron bolinha */
.chev--v2{
  width:34px;
  height:34px;
  border-radius:999px;
  background:#ffffff;
  display:grid;
  place-items:center;
  box-shadow:0 6px 14px rgba(0,0,0,.10);
  color:#64748b;
}
/* ✅ Conserta o texto indo pra direita (força ocupar o centro) */
.multiItem.centralizar .multiText{
  grid-column: 2;
  width: 100% !important;
  justify-self: stretch !important;
  text-align: center !important;

  /* mata regras antigas que empurram pra direita */
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

/* garante que nada dentro do item esteja com "auto" empurrando */
.multiItem.centralizar *{
  justify-self: unset;
}

/* se o .multiItem tinha justify-content antigo, neutraliza */
.multiItem.centralizar{
  justify-content: initial !important;
}/* container */
.options--emojiRight{}

/* opção */
.option--emojiRight{
  position: relative;
  display: block;                 /* não usa mais space-between */
  padding: 16px 110px 16px 18px;  /* reserva espaço p/ rightPack */
}

/* texto CENTRAL no card */
.option--emojiRight .txt{
  width: 100%;
  text-align: center;
}

/* (se quiser fonte um pouco mais fina dentro do botão) */
.option--emojiRight .txt .bold{
  font-weight: 600;               /* antes era 700/800 */
  letter-spacing: .2px;
}

/* pack da direita: seta + emoji fixos na direita */
.option--emojiRight .rightPack{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* emoji em formato "badge" */
.option--emojiRight .emoBox{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef8f0;
  border: 2px solid rgba(22,163,74,.35);
  font-size: 22px;
  line-height: 1;
}

/* seta em círculo */
.option--emojiRight .chev{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(22,163,74,.25);
  color: rgba(22,163,74,.9);
}
/* ====== MULTI DREAM (TELA DO PRINT) ====== */

.multiWrap--dream{
  padding-bottom: 92px; /* espaço pro botão fixo */
}

.multiTitle--dream{
  font-weight: 800;
  line-height: 1.15;
}

.multiDesc--dream{
  margin-top: 10px;
}

/* lista */
.multiList--dream{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

/* item */
.multiItemDream{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(22,163,74,.07);
  border: 2px solid rgba(22,163,74,.35);
  box-shadow: 0 10px 20px rgba(15, 23, 42, .06);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.textDream{
  flex: 1;
  text-align: center;          /* fica igual ao print */
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

/* checkbox (vazio) */
.boxDream{
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 2px solid rgba(22,163,74,.55);
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
}

/* selecionado */
.multiItemDream.is-selected{
  background: rgba(22,163,74,.11);
  border-color: rgba(22,163,74,.95);
  box-shadow: 0 12px 22px rgba(15, 23, 42, .10);
}

.multiItemDream.is-selected .boxDream{
  background: rgba(22,163,74,.08);
  border-color: rgba(22,163,74,.95);
}

.multiItemDream.is-selected .boxDream::after{
  content: "✓";
  font-weight: 900;
  font-size: 16px;
  color: rgba(22,163,74,1);
  line-height: 1;
}

/* botão fixo embaixo (igual print) */
.multiFooter--dream{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 18px;
  background: #ffffff;
  box-shadow: 0 -10px 20px rgba(15, 23, 42, .08);
  z-index: 50;
}

.multiFooter--dream .btn{
  width: min(560px, 100%);
  margin: 0 auto;
  display: block;
  border-radius: 18px;
  padding: 18px 16px;
  font-size: 18px;
  font-weight: 800;
}
.logofinal2{
  width: 200px;
}/* =========================
   ANTES / DEPOIS – INLEAD
========================= */

.cardOpt--inlead{
  border-radius:18px;
  overflow:hidden;
}

/* título no topo do card */
.cardTopTitle{
  text-align:center;
  font-weight:900;
  font-size:14px;
  letter-spacing:.8px;
  padding:10px 0;
  text-transform:uppercase;
}

/* cores diferentes */
.cardTopTitle.before{

  color:#0f172a;
}

.cardTopTitle.after{

  color:#000000;
}

/* imagem mantém padrão */
.cardOpt--inlead .img{
  height:200px;
  overflow:hidden;
}

.cardOpt--inlead img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}

/* corpo do texto */
.cardBody{
  padding:12px 12px 14px;
}

.cardOpt--inlead .sub{
  margin:0;
  font-size:13px;
  line-height:1.35;
  color:#475569;
  text-align:center;
}
