/* ---------------- Base ---------------- */
:root{
  --rosa:#FF2D95;
  --rosa-2:#FF57B2;
  --rosa-claro:#FFD7E7;
  --fundo:#FFE4F0;
  --texto:#5B2C47;
}
*{box-sizing:border-box}
body{
  font-family: Arial, sans-serif;
  margin:0; padding:0; overflow-x:hidden; position:relative;
  color:var(--texto);
}

/* Fundo de partículas */
#particles-js{
  position:fixed; inset:0; z-index:-1;
  background:linear-gradient(135deg,#FFDDE6,#FFE4F0);
}

/* Containers */
.quiz-container{
  max-width: 520px; margin: 48px auto; padding: 26px;
  background: rgba(255,240,246,.95);
  border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.15);
  text-align: center; position: relative; overflow:hidden; z-index:10;
  animation: fadeIn .5s ease;
}
@keyframes fadeIn{from{opacity:0; transform:translateY(12px)} to{opacity:1; transform:translateY(0)}}

.quiz-container h1,h2,h3{color:var(--rosa); margin:10px 0 14px}
.quiz-container p{margin:0 0 16px}

/* Capa */
.quiz-capa, #miniVenda img{
  max-width: 55%; height:auto; border-radius:14px; display:block; margin:0 auto 18px;
  box-shadow:0 6px 14px rgba(0,0,0,.08); transition: transform .4s ease;
}
.quiz-capa:hover{transform:scale(1.04)}

/* Barra de progresso (perguntas) */
#progressContainer{
  width:100%; height:12px; border-radius:12px; overflow:hidden; background:var(--rosa-claro);
  max-width:520px; margin: -10px auto 24px;
}
#progressBar{
  width:0%; height:100%; background:var(--rosa); border-radius:12px; transition: width .35s ease;
}

/* Botões */
button{
  background:var(--rosa); color:#fff; border:none; padding:14px 22px;
  border-radius:14px; cursor:pointer; font-size:1rem; margin:12px auto;
  box-shadow:0 6px 15px rgba(0,0,0,.12); transition:.25s;
}
button:hover{background:var(--rosa-2); transform:translateY(-2px) scale(1.02)}

.answerBtn{
  width:100%; padding:14px; margin:10px 0; border-radius:12px; text-align:left;
  background:var(--rosa-claro); color:var(--texto); font-weight:700;
  display:flex; gap:10px; align-items:center; opacity:0; transition:.25s;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}
.answerBtn:hover{background:#FFB0D3; color:#fff; transform:scale(1.02)}
.answerBtn.selected{background:var(--rosa); color:#fff; transform:scale(1.05)}

/* Botão voltar */
.backBtn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: transparent;
  border: none;
  color: var(--rosa);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.25s ease;
  z-index: 20;
}
.backBtn:hover { color: var(--rosa-2); }

/* MiniVenda / CTA */
#miniVenda{
  display: none;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  color: #333;
  background: #fff0f6;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* Exibir MiniVenda */
#miniVenda.show { display: block; }

/* Oferta */
.oferta{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-align: center;
}
.oferta h2{ color: var(--rosa); font-size:26px; margin-bottom:8px; }
.oferta h3{ font-size:22px; margin-bottom:12px; }
.oferta p{ font-size:18px; margin-bottom:12px; }
.produto-img{ max-width:200px; height:auto; border-radius:12px; margin-bottom:12px; transition: transform .4s ease;}
.produto-img:hover{transform:scale(1.03);}
.oferta button{
  background: var(--rosa); color:#fff; border:none; padding:12px 24px;
  border-radius:12px; font-size:18px; cursor:pointer; transition:.25s;
}
.oferta button:hover{background: var(--rosa-2); transform:scale(1.03);}

/* Descrição do Produto Resumida */
.descricao-produto{
  margin:20px 0;
  line-height:1.6;
  text-align: justify;
  font-size:16px;
}
.descricao-produto p{ margin-bottom:12px; }

/* Benefícios e Milhares de alunas */
.beneficios{ margin:20px 0; }
.beneficios h3{ color: var(--rosa); font-size:22px; margin-bottom:10px; text-align:left;}
.beneficios h4{ color: var(--rosa); font-size:20px; margin:12px 0 6px; text-align:left;}
.beneficios ul{ list-style: none; padding-left:0; margin:0 0 12px;}
.beneficios ul li{ position:relative; padding-left:28px; margin-bottom:8px; font-size:16px;}
.beneficios ul li::before{ content:'✔'; position:absolute; left:0; top:0; color:var(--rosa); font-weight:bold;}
.alunas-sucesso{ margin-top:16px; padding:12px; background:#ffd7e7; border-radius:12px; text-align:center;}
.alunas-sucesso h3{ margin-bottom:8px; font-size:18px; color:var(--rosa);}
.alunas-sucesso p{ margin:0; font-size:16px; }

/* Depoimentos (Carrossel) */
.depoimentos-container {
  margin: 24px 0;
  text-align: center;
}
.depoimentos-container h3 {
  color: var(--rosa);
  font-size: 20px;
  margin-bottom: 16px;
}

.depoimentos-carousel {
  position: relative;
  height: 200px;
}

.depoimentos-carousel img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 220px;
  height: auto;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.depoimentos-carousel img.active {
  opacity: 1;
}


/* FAQ */
.faq{ margin:32px 0; text-align:left;}
.faq h3{ color: var(--rosa); font-size:22px; margin-bottom:16px; text-align:center;}
.faq-item{ margin-bottom:12px; border-radius:8px; overflow:hidden; border:none; box-shadow:0 4px 10px rgba(0,0,0,0.08); }
.faq-item button{
  width:100%; text-align:left; padding:12px 16px; background:#fff; color:var(--texto);
  border:none; font-size:16px; font-weight:700; cursor:pointer;
  border-radius:8px;
}
.faq-item .faq-content{
  display:none; padding:12px 16px; background:#ffe4f0; font-size:15px; line-height:1.5; border-radius:0 0 8px 8px;
}

/* Rodapé */
.rodape{
  margin-top:32px;
  text-align:center;
  font-size:14px;
  color:var(--texto);
}
.selo-container{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:12px;
}
.selo-ajustado{
  width:60px;
  height:auto;
}

/* Instrutor e Instagram */
.instrutor-img{ width:32px; height:32px; border-radius:50%; vertical-align:middle; margin-right:6px; }

/* CTA Flutuante */
.cta-flutuante{
  position:fixed;
  bottom:20px;
  right:20px;
  background:var(--rosa);
  color:#fff;
  padding:14px 26px;
  border-radius:12px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
  z-index:999;
  transition:0.3s;
}
.cta-flutuante:hover{ background:var(--rosa-2); transform:scale(1.05); }

/* Mobile */
@media(max-width:600px){
  .oferta{ gap:10px;}
  .produto-img{ max-width:180px; }
  .beneficios h3, .beneficios h4{ font-size:18px; }
  .alunas-sucesso h3{ font-size:16px; }
  .depoimentos-carousel{ height:160px; }
  .depoimentos-carousel img{ width:180px; }
  .cta-flutuante{ padding:12px 20px; font-size:15px; bottom:14px; right:14px; }
}
