:root{
  --bg:#f3f4f6;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;

  --pink:#65a30d;
  --pinkSoft:#65a30d;

  --green:#16a34a;
  --greenDark:#12823c;

  --border:#e5e7eb;
  --shadow: 0 14px 28px rgba(2,6,23,.08);
}

*{ box-sizing:border-box; }

html{
  scroll-behavior: auto;
}

body{
  margin:0;
  padding:0px;
  background:#fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
    overflow-y: auto;
}

/* ===== PRIMEIRO BLOCO / LANDING ===== */
.heroIntro{
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 55px 14px 0;
}

.landingHeadline{
  max-width: 362px;
  margin: 0 auto;
  text-align: center;
  color: #000;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.85px;
}

.landingHeadline .greenText{
  color: #009b3d;
}

.urgentMark{
  display: inline-block;
  padding: 0 2px;
  background: #081421;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.landingSub{
  max-width: 356px;
  margin: 15px auto 23px;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.landingSub span{
  color: #009b3d;
}

.heroIntro .mosaic{
  margin: 0 auto 22px;
}

.heroIntro .mosaic img{
  width: 330px;
  max-width: 330px;
  border-radius: 11px;
}

.landingBullets{
  width: 356px;
  margin: 0 auto 18px;
  padding-left: 20px;
  color: #009b3d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.landingBullets li::marker{
  color: #667085;
  font-size: 8px;
}

.heroBtn{
  max-width: 360px;
  min-height: 57px;
  margin-top: 0;
  border-radius: 12px;
  padding: 18px 16px;
  background: #16a34a;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 5px 0 #12823c;
}

.heroBtn:active{
  transform: translateY(2px);
  box-shadow: 0 3px 0 #12823c;
}

.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: visible;

  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;
}


.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, var(--pink), #65a30d);
  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 rgba(80, 79, 79, 0.55);
   justify-content: center !important;
  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;
    text-align: center;        /* centraliza texto */
  align-items: center;       /* garante eixo flex */
}
.option .txt b{
  font-size:14px;
  line-height:1.2;
}
.option .txt small{
  font-size:12px;
  color:var(--muted);
  line-height:1.2;
}
.option .txt span,
.option .txt .bold{
  display: block;
  text-align: center;
}
.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; }

.genderScreen{
  padding-top: 30px;
}

.genderScreen .title{
  font-size: 23px;
  line-height: 1.18;
}

.genderScreen .desc{
  margin-top: 17px;
  color: #000;
  font-size: 18px;
  font-weight: 800;
}

.genderScreen .grid2{
  max-width: 326px;
  margin: 20px auto 0;
  gap: 16px;
}

.genderScreen .cardOpt{
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
}

.genderScreen .cardOpt .img{
  height: 112px;
}

.genderScreen .cardOpt .label{
  padding: 12px 16px 15px;
  font-size: 16px;
}

/* grid opções com imagem */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
  margin: 10px;
}

.cardOpt{
  border-radius:18px;
  border:1px solid #65a30d;
  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:150px;        /* 🔥 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: 40px 16px 0;          /* 🔥 empurra para baixo */
}


/* ===== seleção rosinha ===== */
.condItem.selected{
  background: #65a30d;         /* rosa */
  border-color: #65a30d;
}

.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;
  padding: 10px;
}

.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: 320px;
  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;
  padding-bottom: 24px;
}

/* 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{

  text-align:center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  margin-left: 10px;
  margin-right: 10px;
}

/* 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;
}
.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;
}

.audioProofScreen{
  padding: 30px 22px 0 !important;
}

.audioProofScreen .caseImg,
.audioProofScreen .testiCard,
.audioProofScreen .audioCard{
  max-width: 356px;
}

.audioProofScreen .caseImg{
  margin-top: 24px;
}

.audioProofScreen .testiCard{
  margin-top: 26px;
}

.audioProofFooter{
  max-width: 390px;
  margin: 28px auto 0;
  padding: 0 12px 70px;
}

.audioProofFooter .btn{
  margin: 0 auto !important;
  max-width: 356px;
  min-height: 59px;
  border-radius: 12px;
  background: #55a805;
  box-shadow: 0 5px 0 #458d04 !important;
}

.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: 320px;
  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, #65a30d, #518508);
  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: 12px;
}

.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 {
  display: none;
  text-align: center;
  font-size: 12px;
  color: #8a99b5;
  padding: 24px 16px 32px;
  margin-top: 36px;
}

/* ===== AJUSTE FINAL PARA BATER COM O QUIZ ORIGINAL ===== */
.phone{
  max-width: 390px;
  margin: 0 auto;
}

.headerLogo{
  margin-top: 8px;
  padding: 9px 0 5px;
}

.headerLogo img{
  width: 111px;
}

.topbar{
  top: 8px;
  left: 12px;
}

.back{
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.progressWrap{
  margin: 3px 0 0;
  padding: 0 14px;
}

.progress{
  height: 6px;
  background: #edf5e7;
  border: 0;
}

.bar{
  background: #55a805;
}

.screenCenter{
  padding: 28px 14px 0;
  justify-content: flex-start !important;
}

.bigChoiceWrap{
  max-width: 362px;
}

.bigQuestion,
.bigChoiceWrap h2,
.condPage h2,
.screenCenter h2{
  color: #000 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.65px !important;
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 360px !important;
}

#btnContinuar{
  justify-content: center !important;
  text-align: center !important;
}

.condPage h2{
  font-size: 18px !important;
  line-height: 1.08 !important;
  max-width: 330px !important;
}

.condPage p{
  font-size: 16px !important;
  margin-top: 16px !important;
}

.bigQuestion span,
.bigChoiceWrap h2 span,
.condPage h2 span,
.screenCenter h2 span{
  color: #08a83d !important;
}

.bigSub,
.bigChoiceWrap p,
.condPage p,
.screenCenter p:not(.warning-text){
  color: #666 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  margin: 14px auto 0 !important;
  text-align: center !important;
}

.bigChoices{
  width: 100%;
  gap: 44px;
  margin-top: 18px;
  padding: 0 12px 44px;
}

.bigBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 58px;
  padding: 15px 20px;
  border-radius: 11px;
  background: #55a805;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  box-shadow: 0 6px 0 #458d04 !important;
}

.bigBtn.btn-pulse::before{
  inset: 0;
  border-radius: 10px;
  background: transparent;
  animation: none;
}

.bigBtn:first-child{
  margin-top: 0;
}

.btn:not(.heroBtn),
.condFooter .btn{
  max-width: 355px;
  min-height: 58px;
  border-radius: 11px;
  background: #55a805;
  font-size: 14px;
  box-shadow: 0 6px 0 #458d04 !important;
}

.condWrap,
.condPage{
  max-width: 390px;
  margin: 0 auto;
  padding: 27px 12px 24px;
  gap: 14px;
}

.condList{
  width: 100%;
  gap: 8px;
  margin-top: 23px;
  padding: 0;
}

.condItem{
  min-height: 52px;
  border-radius: 12px;
  padding: 15px 16px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,.14);
  background: #fff;
}

.condText{
  color: #000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .05px;
}

.condDot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #111;
  flex: 0 0 4px;
  margin-left: 2px;
  margin-top: 8px;
}

.condFooter{
  padding-top: 22px;
  border: 0;
  background: transparent !important;
}

.condFooter .btn{
  max-width: 355px;
  min-height: 59px;
  margin: 0 auto;
  border-radius: 12px;
  font-size: 16px;
  background: #8bc34a !important;
  box-shadow: inset 0 -4px 0 rgba(92, 150, 40, .28) !important;
}

.medicineTitle{
  color: #000;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.45px;
  text-align: center;
  max-width: 330px;
  margin: 0 auto;
}

.medicineSub{
  margin: 14px auto 0;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.medicineTitle + .medicineSub + *,
.medicineSub ~ .condList{
  margin-top: 18px;
}

.medicinePage #condList .condItem{
  justify-content: center;
  min-height: 51px;
}

.medicinePage #condList .condDot{
  display: none;
}

.medicinePage #condList .condText{
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}


/* Destaques coloridos e emojis como no quiz original */
.redText,
.alertTitle .redText{
  color: #ef1b1b !important;
}

.greenText,
.alertTitle .greenText,
.bigQuestion span,
.bigChoiceWrap h2 span,
.condPage h2 span,
.screenCenter h2 span{
  color: #149a27 !important;
}

.alertTitle{
  max-width: 348px !important;
  margin: 0 auto 10px !important;
  color: #000 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.35px !important;
  text-align: center !important;
}

.g1Screen{
  padding-bottom: 72px !important;
}

.g1Screen .g1Box{
  max-width: 356px;
  margin-top: 24px;
  overflow: visible !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.g1Screen .g1Box img{
  width: 100%;
  border-radius: 0;
}

.g1Screen .btn{
  margin-top: 22px;
  margin-bottom: 58px;
  max-width: 356px;
  min-height: 58px;
  border-radius: 11px;
  box-shadow: 0 6px 0 #458d04 !important;
}

.g1Link{
  display: block;
  margin: 12px auto 14px;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
}

.g1Box{
  overflow: visible !important;
  -webkit-overflow-scrolling: touch;
}

.g1Box img{
  border-radius: 14px;
}

.bigBtn{
  white-space: normal;
}

.bigBtn::first-letter{
  font-size: inherit;
}

/* ===== TELAS ADICIONAIS DOS PRINTS 35-61 ===== */
.optionPage{
  padding: 27px 12px 0;
}

.optionTitleMain{
  max-width: 340px;
  margin: 0 auto 40px;
  color: #000;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.55px;
  text-align: center;
}

.monitorOptions{
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 356px;
}

.monitorOption{
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  padding: 0 13px 0 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,.16);
}

.monitorText{
  color: #000;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.monitorEmoji{
  font-size: 28px;
  text-align: right;
}

.loadWrap{
  width:100%;
  max-width:390px;
  margin: 0 auto;
  text-align:center;
  padding: 30px 22px 0;
}

.loadLogoCard{
  position: relative;
  max-width: 274px;
  min-height: 228px;
  margin: 0 auto 34px;
  padding: 18px 18px 24px;
  border-radius: 12px;
  background: #08b807;
  color: #fff;
  box-shadow: 7px 8px 0 #6b8ea1;
}

.loadLogoSmall{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 7px;
  line-height: 1;
}

.loadLogoBig{
  margin-top: 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  line-height: .95;
}

.loadLogoText{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.24;
}

.loadLogoText span{
  display: inline-block;
  margin-top: 2px;
  padding: 1px 4px;
  background: #8fa3c4;
}

.loadSeal{
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2b7abf;
  border: 4px solid #6fe4e6;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.loadBars{
  display: grid;
  gap: 31px;
}

.loadWrap .loadLineTop{
  display: block !important;
  width: 100% !important;
  max-width: 354px;
  margin: 0 auto 5px;
  text-align: right !important;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.loadWrap .loadTrack{
  display: block !important;
  width: 100% !important;
  max-width: 354px;
  height: 11px;
  margin: 0 auto 12px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden !important;
}

.loadWrap .loadFill{
  display: block !important;
  height: 100% !important;
  width: 0%;
  min-width: 8px;
  border-radius: inherit;
  background: #55a805;
  transition: width .12s linear;
}

.loadCaption{
  margin-top: 0;
  color: #667085;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.finalVideoPage{
  padding: 21px 8px 42px;
}

.successLine{
  margin: 0 auto 24px;
  color: #000;
  font-size: 16px;
  text-align: center;
}

.finalReadyCard{
  max-width: 336px;
  margin: 0 auto 18px;
}

.finalReadyCard img{
  width: 100%;
  display: block;
  border-radius: 14px;
}

.miniVslWrap{
  max-width: 400px;
  margin: 0 auto 16px;
}

.finalVideoBtn{
  max-width: 356px;
  min-height: 52px;
  margin: 0 auto !important;
  border-radius: 9px;
  font-size: 13px;
}

.finalVideoBtn.is-hidden{
  display: none;
}

.videoMock{
  position: relative;
  max-width: 356px;
  height: 574px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #101010;
  border-radius: 10px;
  background: #111;
}

.videoMock img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoOverlay{
  position: absolute;
  left: 36px;
  right: 36px;
  top: 178px;
  height: 223px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: rgba(18, 180, 58, .82);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.playCircle{
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 9px solid #fff;
  border-radius: 999px;
  font-size: 68px;
  line-height: 1;
  padding-left: 9px;
}

  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;
}

.testimonials {
  max-width: 420px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testiCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  border: 1px solid #e5e7eb;
}

.testiHeader {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testiAvatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testiName {
  font-weight: 800;
  font-size: 14.5px;
  color: #0f172a;
}

.testiLoc {
  font-size: 12.5px;
  color: #64748b;
  margin-top: -2px;
}

.testiStars {
  color: #facc15;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.testiText {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

/* 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);
  }
}
.alerta-protocolo {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  max-width: 620px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f2937;
}

.alerta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 10px;
}

.alerta-icon {
  font-size: 20px;
}

.alerta-protocolo p {
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}

.alerta-destaque {
  color: #16a34a; /* verde destaque */
  font-weight: 600;
}
/* 🔵 bolinha */
.condDot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#111827; /* preto elegante */
  flex-shrink:0;
}
/* 🔥 ESCONDE LOGO SOMENTE NA TELA ATENÇÃO */
.hide-logo .headerLogo{
  display: none;
}
/* ESCONDE LOGO SOMENTE NA TELA ATENÇÃO */
.phone.hide-logo .headerLogo{
  display: none !important;
}

/* remove scroll interno das telas longas; só a página inteira deve rolar */
html,
body{
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.phone,
.content,
.screenFill,
.condWrap,
.condPage,
.condScroll,
.symPage,
.symScroll,
.analiseWrap,
.audioProofPage,
.finalVideoPage,
.loadWrap{
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.phone{
  display: block !important;
}

.content{
  display: block !important;
}

.condFooter,
.symFooter{
  position: static !important;
  bottom: auto !important;
}

/* desktop: impede qualquer wrapper central de criar barra própria */
@media (min-width: 700px){
  *{
    scrollbar-gutter: auto !important;
  }

  .phone,
  .content,
  .screenFill,
  .condWrap,
  .condPage,
  .analiseWrap,
  .finalVideoPage,
  .loadWrap{
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
}
