*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#eef8ee;
  color:#1f1f1f;
  overflow-x:hidden;
}

.screen{
  min-height:100vh;
  display:none;
}

.screen.active{
  display:flex;
  justify-content:center;
  align-items:center;
}

.container,
.quiz-container,
.story-container{
  width:100%;
  max-width:540px;
  padding:40px 24px;
}

.hero-container{
  text-align:center;
}

.logo{
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

.tag{
  display:inline-flex;
  background:#d8f6d9;
  color:#58bc67;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:28px;
}

.hero-container h1{
  font-size:54px;
  line-height:1.05;
  letter-spacing:-2px;
  margin-bottom:22px;
}

.hero-container h1 span{
  color:#75d77f;
}

.description{
  font-size:18px;
  line-height:1.7;
  color:#666;
  margin-bottom:32px;
}

.image-card{
  position:relative;
  background:#fff;
  border-radius:30px;
  padding:18px;
  margin-bottom:24px;
  box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.image-card img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:24px;
}

.badge{
  position:absolute;
  left:28px;
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.badge-top{
  top:24px;
}

.badge-second{
  top:74px;
}

.small-text{
  color:#666;
  line-height:1.6;
  margin-bottom:24px;
}

.main-button,
.continue-button,
.pulse-button{
  width:100%;
  height:72px;
  border:none;
  border-radius:999px;
  background:linear-gradient(90deg,#7bdd84,#57c96c);
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(88,203,106,0.35);
  margin-top:10px;
}

.bottom-info{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  color:#777;
}

.quiz-container h2,
.story-container h2{
  font-size:42px;
  line-height:1.1;
  margin-bottom:12px;
}

.quiz-subtitle{
  color:#666;
  margin-bottom:28px;
}

.options{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.option{
  background:#fff;
  border-radius:22px;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  cursor:pointer;
  transition:.2s;
  border:2px solid transparent;
}

.option:hover{
  border-color:#7ad882;
}

.option span{
  font-size:17px;
  font-weight:500;
}

.option input{
  width:22px;
  height:22px;
}

.gender-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gender-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  cursor:pointer;
  transition:.2s;
}

.gender-card:hover{
  transform:translateY(-4px);
}

.gender-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.gender-card h3{
  padding:18px;
  text-align:center;
}

.story-container{
  text-align:center;
}

.story-container p{
  line-height:1.7;
  color:#666;
  margin-bottom:24px;
}

.before-after{
  width:100%;
  border-radius:28px;
  margin-bottom:26px;
}

.text-input{
  width:100%;
  height:68px;
  border:none;
  border-radius:20px;
  padding:0 20px;
  font-size:16px;
  margin:22px 0;
  outline:none;
}

.pulse-button{
  animation:pulse 1s infinite;
}

@keyframes pulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.03);
  }

  100%{
    transform:scale(1);
  }

}

@media(max-width:768px){

  .container,
  .quiz-container,
  .story-container{
    padding:28px 18px;
  }

  .hero-container h1{
    font-size:40px;
  }

  .quiz-container h2,
  .story-container h2{
    font-size:32px;

  }


  .image-card img{
    height:400px;
  }

}

@media(max-width:480px){

  .screen.active{
    align-items:flex-start;
  }

  .hero-container h1{
    font-size:32px;
  }

  .description{
    font-size:15px;
  }

  .image-card{
    padding:12px;
    border-radius:24px;
  }

  .image-card img{
    height:320px;
    border-radius:18px;
  }

  .badge{
    left:18px;
    font-size:11px;
    padding:8px 12px;
  }

  .badge-top{
    top:16px;
  }

  .badge-second{
    top:54px;
  }

  .main-button,
  .continue-button,
  .pulse-button{
    height:60px;
    font-size:14px;
  }

  .quiz-container h2,
  .story-container h2{
    font-size:28px;
  }

  .option{
    min-height:68px;
    padding:0 18px;
  }

  .option span{
    font-size:14px;
  }

  .gender-grid{
    grid-template-columns:1fr;
  }

  .gender-card img{
    height:220px;
  }

}

#atençao{
  color: red;
  font-weight: bold;
}

#negrito{
  font-weight: bold;
}

/* =========================
   PROGRESS BAR
========================= */

.quiz-progress{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  z-index:999;

  background:#eef8ee;

  padding:14px 20px;

  border-bottom:1px solid rgba(0,0,0,0.04);

  display:none;
}

.progress-top{

  width:100%;
  max-width:1000px;

  margin:auto;

  display:flex;
  align-items:center;
  gap:14px;
}

.progress-logo{

  font-size:15px;
  font-weight:700;

  white-space:nowrap;
}

.progress-bar{

  flex:1;

  height:8px;

  background:#dcdcdc;

  border-radius:999px;

  overflow:hidden;
}

.progress-fill{

  width:0%;

  height:100%;

  background:linear-gradient(
    90deg,
    #7bdd84,
    #58c96c
  );

  border-radius:999px;

  transition:.4s;
}

.progress-percent{

  font-size:14px;
  font-weight:600;
  color:#666;

  min-width:42px;
  text-align:right;
}

/* empurra conteúdo */

.screen{
  padding-top:80px;
}

/* primeira tela sem barra */

.screen:first-of-type{
  padding-top:0;
}

/* mobile */

@media(max-width:480px){

  .quiz-progress{
    padding:12px 14px;
  }

  .progress-logo{
    font-size:13px;
  }

  .progress-percent{
    font-size:12px;
  }

}

/* LOGO PRINCIPAL */

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.logo img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

/* LOGO DA BARRA DE PROGRESSO */

.progress-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-logo img {
  width: 180px;
  object-fit: contain;
}

/* BARRA SUPERIOR */

.quiz-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  z-index: 9999;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.progress-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
}

.progress-bar {
  flex: 1;
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #8fdc7f, #5ebf68);
  border-radius: 999px;
  transition: width .4s ease;
}

.progress-percent {
  min-width: 50px;
  font-weight: 700;
  color: #2f5130;
  font-size: 14px;
}

/* ESPAÇO PARA A BARRA FIXA */

body {
  padding-top: 90px;
}

/* MOBILE */

@media (max-width: 768px) {

  .logo img {
    max-width: 200px;
  }

  .progress-logo img {
    width: 120px;
  }

  .progress-top {
    gap: 10px;
    padding: 12px;
  }

  .progress-percent {
    font-size: 12px;
    min-width: 40px;
  }

  body {
    padding-top: 1px;
  }

}

/* =========================
   LOADING SCREEN
========================= */

.loading-container{
  width:100%;
  max-width:520px;
  margin:auto;
  padding:40px 24px;
  text-align:center;
}

.loading-logo img{
  width:220px;
  margin-bottom:40px;
}

.loading-container h2{
  font-size:34px;
  line-height:1.2;
  margin-bottom:18px;
}

#loadingMessage{
  color:#666;
  font-size:16px;
  margin-bottom:30px;
  min-height:50px;
}

.loading-bar{
  width:100%;
  height:18px;
  background:#e4e4e4;
  border-radius:999px;
  overflow:hidden;
}

.loading-fill{
  width:0%;
  height:100%;
  background:linear-gradient(90deg,#7bdd84,#57c96c);
  border-radius:999px;
  transition:.2s;
}

.loading-percent{
  margin-top:16px;
  font-size:24px;
  font-weight:800;
  color:#58c96c;
}

/* =========================
   RESULT SCREEN
========================= */

.result-container{
  width:100%;
  max-width:540px;
  margin:auto;
  padding:30px 18px 60px;
}

.result-alert{
  background:#fff;
  border-radius:28px;
  padding:28px;
  margin-bottom:22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.result-alert h2{
  font-size:30px;
  line-height:1.2;
  margin-bottom:18px;
}

.result-alert h2 span{
  color:#ff2f2f;
}

.result-alert p{
  color:#666;
  line-height:1.7;
}

/* IMC */

.result-card{
  background:#fff;
  border-radius:24px;
  padding:24px;
  margin-bottom:22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.imc-header{
  display:flex;
  justify-content:space-between;
  margin-bottom:18px;
  font-size:14px;
}

.imc-header strong{
  color:#ff3838;
}

.imc-bar{
  width:100%;
  height:24px;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    #52c234,
    #f0c000,
    #ff2d2d
  );
  position:relative;
}

.imc-indicator{
  position:absolute;
  right:18%;
  top:-12px;
}

.imc-indicator span{
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  box-shadow:0 4px 10px rgba(0,0,0,0.12);
}

.imc-indicator::after{
  content:"";
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  border:4px solid #ff7a00;
  display:block;
  margin:4px auto 0;
}

.imc-labels{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  font-size:13px;
  font-weight:600;
}

/* INFO CARDS */

.info-card{
  border-radius:24px;
  padding:24px;
  margin-bottom:20px;
  color:#fff;
}

.info-cardroxo{
  border-radius:24px;
  padding:24px;
  margin-bottom:20px;
  color:#ffffff;
  background-color: #c847ff;
}

.info-card h3{
  margin-bottom:12px;
  font-size:22px;
}

.info-card p,
.info-card li{
  line-height:1.7;
}

.info-card ul{
  padding-left:20px;
}


.yellow{
  background:linear-gradient(135deg,#efff89,#d7ef61);
  color:#1f1f1f;
}

.red{
  background:linear-gradient(135deg,#ff3535,#d60000);
}

/* RESULT GRID */

.result-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:24px;
}

.circle-card,
.result-image{
  background:#fff;
  border-radius:24px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.result-image img{
  width:100%;
  border-radius:18px;
}

.circle-progress{
  width:150px;
  height:150px;
  border-radius:50%;
  margin:auto;
  background:conic-gradient(
    #69d36f 0%,
    #69d36f 87%,
    #eee 87%
  );
  display:flex;
  align-items:center;
  justify-content:center;
}

.circle-inner{
  width:110px;
  height:110px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
}

.circle-card p{
  margin-top:18px;
  text-align:center;
  font-weight:600;
}

/* PROJECTION */

.projection{
  background:#fff;
  border-radius:24px;
  padding:24px;
  margin-bottom:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.projection h3{
  text-align:center;
  margin-bottom:26px;
  line-height:1.4;
}

.projection h3 span{
  color:#ff2f2f;
}

.projection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.projection-item{
  text-align:center;
}

.mini-bar{
  width:24px;
  height:60px;
  background:#69d36f;
  margin:12px auto;
  border-radius:999px;
}

.medium{
  height:90px;
}

.big{
  height:120px;
}

/* TRANSFORMATION */

.transformation{
  background:#fff;
  border-radius:24px;
  padding:24px;
  margin-bottom:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.transformation h3{
  text-align:center;
  margin-bottom:20px;
}

.transformation-img{
  width:100%;
  border-radius:18px;
}

.final-button{
  position:sticky;
  bottom:20px;
}

/* MOBILE */

@media(max-width:480px){

  .result-grid{
    grid-template-columns:1fr;
  }

  .result-alert h2{
    font-size:24px;
  }

  .info-card h3{
    font-size:20px;
  }

}

/* =========================
OFERTA
========================= */

.offer-container{
  width:100%;
  max-width:540px;
  margin:auto;
  padding:30px 18px 80px;
}

.offer-header{
  text-align:center;
  margin-bottom:28px;
}

.offer-header h2{
  font-size:32px;
  line-height:1.3;
  margin-bottom:14px;
}

.offer-header span{
  color:#35c14d;
}

.offer-header p{
  color:#666;
}

/* COMPARAÇÃO */

.comparison-card{
  background:#fff;
  border-radius:24px;
  padding:22px;
  margin-bottom:28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.comparison-top{
  display:flex;
  justify-content:space-between;
  font-weight:800;
  margin-bottom:20px;
}

.comparison-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.comparison-side img{
  width:100%;
  border-radius:16px;
  margin-bottom:12px;
}

.comparison-side p{
  font-size:13px;
  font-weight:600;
  margin-bottom:12px;
}

.comparison-bar{
  height:10px;
  border-radius:999px;
  position:relative;
  margin-bottom:12px;
}

.red-bar{
  background:#ff4040;
}

.green-bar{
  background:#35c14d;
}

.comparison-dot{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  border:4px solid currentColor;
  position:absolute;
  right:10%;
  top:-4px;
}

.red-label,
.green-label{
  padding:10px;
  border-radius:14px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-align:center;
}

.red-label{
  background:#ff4040;
}

.green-label{
  background:#35c14d;
}

/* COMO FUNCIONA */

.how-work{
  text-align:center;
  margin-bottom:28px;
}

.how-work h3{
  font-size:30px;
  color:#35c14d;
  margin-bottom:14px;
}

.how-work p{
  line-height:1.8;
  color:#555;
}

/* BENEFÍCIOS */

.benefits-card{
  background:#c9f5bf;
  border-radius:24px;
  padding:28px;
  margin-bottom:28px;
}

.benefits-card h3{
  text-align:center;
  margin-bottom:24px;
  color:#228b22;
}

.benefits-card ul{
  list-style:none;
}

.benefits-card li{
  margin-bottom:18px;
  line-height:1.6;
  font-weight:600;
}

/* BONUS */

.bonus-title{
  text-align:center;
  font-size:28px;
  font-weight:800;
  line-height:1.4;
  margin-bottom:26px;
}

.bonus-title span{
  color:#35c14d;
}

.bonus-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:28px;
}

.bonus-item{
  border-radius:24px;
  padding:24px;
  color:#fff;
}

.bonus-item h4{
  font-size:24px;
  margin-bottom:10px;
}

.bonus-item p{
  line-height:1.6;
}

.green-bonus{
  background:linear-gradient(135deg,#8bc34a,#43a047);
}

.orange-bonus{
  background:linear-gradient(135deg,#ff9800,#ef6c00);
}

.purple-bonus{
  background:linear-gradient(135deg,#ab47bc,#8e24aa);
}

.pink-bonus{
  background:linear-gradient(135deg,#ec407a,#d81b60);
}

/* PREÇO */

.price-card{
  background:#fff;
  border:4px solid #35c14d;
  border-radius:28px;
  padding:32px;
  margin-bottom:28px;
  text-align:center;
}

.price-card h3{
  color:#35c14d;
  margin-bottom:20px;
}

.price-card ul{
  list-style:none;
  margin-bottom:28px;
}

.price-card li{
  margin-bottom:14px;
  font-weight:700;
}

.small-price{
  display:block;
  font-size:22px;
  margin-bottom:10px;
}

.main-price{
  font-size:74px;
  font-weight:900;
  color:#35c14d;
}

/* SEGURANÇA */

.security{
  text-align:center;
  margin-top:26px;
  color:#666;
  font-size:14px;
  line-height:1.8;
}

/* MOBILE */

@media(max-width:480px){

  .comparison-images{
    grid-template-columns:1fr;
  }

  .offer-header h2{
    font-size:24px;
  }

  .bonus-title{
    font-size:22px;
  }

  .main-price{
    font-size:58px;
  }

}

/* LOGO PREÇO */

.price-logo{
  display:flex;
  justify-content:center;
  margin-bottom:24px;
}

.price-logo img{
  width:180px;
  object-fit:contain;
}

/* =========================
BOTÃO VSL
========================= */

.final-offer-button{

  animation:vslPulse .9s infinite;

}

@keyframes vslPulse{

  0%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(88,203,106,.7);
  }

  50%{
    transform:scale(1.06);
  }

  70%{
    box-shadow:
      0 0 0 18px rgba(88,203,106,0);
  }

  100%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(88,203,106,0);
  }

}
/* =========================
GARANTIA
========================= */

.guarantee-badge{

  display:flex;
  justify-content:center;

  margin:28px 0;

}

.guarantee-badge img{

  width:220px;
  max-width:100%;

  object-fit:contain;

  filter:drop-shadow(
    0 10px 20px rgba(0,0,0,.08)
  );

}