*{
  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;
  }

}