* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #ffffff;
}

/* Barra de progresso com a MESMA largura da imagem/conteúdo */
.progress-wrapper {
  width: 100%;
  max-width: 420px;     /* MESMA largura da imagem */
  margin: 8px auto 12px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: #e5e5e5;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Wrapper */
.quiz-wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Conteúdo */
.quiz-container {
  padding: 24px 8px;
  text-align: center;
}

/* Título */
.quiz-title {
  font-size: 22px;
  font-weight: bolder;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Desktop */
@media (min-width: 768px) {
  .quiz-container {
    padding: 40px 20px;
  }

  .quiz-title {
    font-size: 28px;
  }
}

.quiz-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
}

/* Opções */
.options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Botões de opção */
.option-btn {
  align-items: flex-start;   /* emoji alinhado com a primeira linha do texto */
  width: 100%;
  color: #111;
  background: #fff;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  text-align: left;
  white-space: normal;
  gap: 12px;
  min-height: 56px;
  transition: background 0.2s ease, border-color 0.15s;
}

.option-emoji {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
  flex: 0 0 auto;
}

.option-text {
  flex: 1 1 auto;
}

/* hover */
.option-btn:hover {
  border-color: #bcbcbc;
}

/* Animação de transição */
.quiz-container {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.quiz-container.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* imagens das perguntas */
.question-image {
  margin: 20px 0 32px;
  display: flex;
  justify-content: center;
}

.question-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
}

/* INTRO */
.intro-container {
  text-align: center;
}

.intro-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: -20px;
  margin-top: -20px;
}

@media (min-width: 768px) {
  .intro-title {
    font-size: 28px;
  }
}

.intro-alert {
  font-size: 26px;
  margin: 12px 0;
}

.intro-subtitle {
  font-size: 18px;
  color: #111;
  margin-bottom: 24px;
  font-weight: bolder;
}

.intro-image {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.intro-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
}

.intro-time {
  font-size: 18px;
  margin-bottom: 20px;
}

/* botão iniciar */
.intro-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 16px auto 0;
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ===== alinhar largura do conteúdo (imagem, texto e botões) ===== */
.quiz-container,
.intro-container {
  max-width: 420px;     /* largura interna que você quer que a imagem e botões respeitem */
  margin: 0 auto;       /* centraliza dentro da coluna */
  padding-left: 0;
  padding-right: 0;
}

/* garante que a imagem tenha o mesmo max-width */
.intro-image img,
.question-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
}

/* TELA FINAL */
.final-timer {
  background: #fde2e2;
  color: #b91c1c;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 18px;
}

.final-description {
  text-align: center;
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: bolder;
}

/* PREÇO */
.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dcfce7;
  border-radius: 0 0 14px 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.price-left { text-align: left; }
.price-right { text-align: right; }

.price-old {
  text-decoration: line-through;
  color: #dc2626;
  font-weight: 700;
}

.price-label {
  display: block;
  font-weight: 700;
}

.price-discount {
  color: #16a34a;
  font-weight: 700;
}

.price-new {
  font-size: 22px;
  font-weight: 800;
  color: #16a34a;
}

/* BOTÃO FINAL */
.final-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
  background: #16a34a;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* PROVAS SOCIAIS (NOVO LAYOUT: avatar + estrelas acima do depoimento) */
.testimonials {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

.testimonial-avatar {
  margin-top: 2px;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-body {
  flex: 1 1 auto;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-stars {
  color: #f6c100;
  font-size: 14px;
  line-height: 1;
}

.testimonial-meta strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-location {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.testimonial-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin-top: 4px;
}

/* Responsividade */
@media (max-width: 420px) {
  .testimonial {
    gap: 10px;
    padding: 12px;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
  .testimonial-text {
    font-size: 13px;
  }
}

.offer-badge {
  background: #020617; /* preto elegante */
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px 10px 0 0;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  letter-spacing: 0.3px;
}

/* CORRIGE alinhamento das provas sociais */
.testimonials,
.testimonial,
.testimonial * {
  text-align: left !important;
}
