/* Mantendo as cores originais, mas refinando o visual */
:root {
  --cor-fundo: #f7fafc;         /* fundo claro */
  --cor-secundaria: #ffffff;    /* caixas/quadro branco */
  --cor-primaria: #28b485;      /* verde principal */
  --cor-borda: #e0e7ef;         /* borda suave */
  --cor-botao: #28b485;         /* verde botão */
  --cor-botao-hover: #218c6a;   /* verde escuro botão hover */
  --cor-texto: #222;            /* texto escuro */
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 500px;
  width: 100%;
  padding: 32px 20px;
  box-sizing: border-box;
  background: var(--cor-secundaria);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40, 180, 133, 0.10);
}

header {
  margin-bottom: 24px;
  text-align: center;
}

.logo {
  width: 100px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(40,180,133,0.08);
}

.progress-bar {
  width: 80%;
  height: 8px;
  background-color: var(--cor-borda);
  border-radius: 4px;
  margin: 0 auto 24px auto;
}

.quiz-start h1 {
  font-size: 2rem;
  color: var(--cor-primaria);
  margin-bottom: 14px;
  font-weight: 700;
}

.quiz-start p {
  font-size: 1rem;
  max-width: 400px;
  margin: 10px auto;
  color: #444;
}

.quiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 0.7s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

.options, .quiz-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.option {
  background-color: var(--cor-secundaria);
  border: 2px solid var(--cor-borda);
  border-radius: 14px;
  padding: 18px;
  width: 220px;
  box-shadow: 0 4px 16px rgba(40, 180, 133, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(40, 180, 133, 0.14);
}

.option img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(40,180,133,0.08);
}

.option button, .quiz-btn {
  width: 100%;
  padding: 12px 0;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--cor-botao);
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(40,180,133,0.08);
  transition: background 0.2s, transform 0.2s;
}

.option button:hover, .quiz-btn:hover {
  background-color: var(--cor-botao-hover);
  transform: translateY(-2px) scale(1.04);
}

.option.small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 220px;
}

.hidden {
  display: none;
}

/* Responsividade */
@media (max-width: 600px) {
  .container {
    padding: 16px 6px;
    max-width: 98vw;
  }
  .option, .option.small {
    width: 98vw;
    max-width: 320px;
    padding: 12px;
  }
  .quiz-start h1 {
    font-size: 1.2rem;
  }
}
.option button, .quiz-btn {
  width: 100%;
  padding: 14px 0; /* Mais espaço vertical */
  font-weight: bold;
  font-size: 1rem;
  border: 2px solid #218c6a; /* Borda mais escura */
  border-radius: 12px;        /* Mais arredondado */
  background-color: var(--cor-botao);
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(40,180,133,0.08);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.option button:hover, .quiz-btn:hover {
  background-color: var(--cor-botao-hover);
  border-color: #14543a; /* Borda ainda mais escura no hover */
  transform: translateY(-2px) scale(1.04);
}
.option button, .quiz-btn {
  width: 100%;
  padding: 14px 24px; /* Mais espaço nas laterais */
  font-weight: bold;
  font-size: 1rem;
  border: 2px solid #218c6a;
  border-radius: 12px;
  background-color: var(--cor-botao);
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(40,180,133,0.08);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.apresentacao-produto {
  max-width: 500px;
  margin: 40px auto;
  background: var(--cor-secundaria);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40, 180, 133, 0.10);
  padding: 32px 24px;
  text-align: center;
  animation: fadeIn 0.7s;
}
.apresentacao-produto h2 {
  color: var(--cor-primaria);
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.apresentacao-produto p {
  font-size: 1.1rem;
  color: var(--cor-texto);
  margin-bottom: 18px;
}
.beneficios {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.beneficios li {
  background: #f7fafc;
  border-left: 4px solid var(--cor-primaria);
  margin-bottom: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
  text-align: left;
  box-shadow: 0 2px 8px rgba(40,180,133,0.05);
}
.depoimento {
  font-style: italic;
  color: #444;
  margin-bottom: 24px;
  background: #f7fafc;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(40,180,133,0.05);
}
.cta-btn {
  width: 100%;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: bold;
  border: 2px solid #218c6a;
  border-radius: 12px;
  background-color: var(--cor-botao);
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(40,180,133,0.08);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  margin-top: 12px;
}
.cta-btn:hover {
  background-color: var(--cor-botao-hover);
  border-color: #14543a;
  transform: translateY(-2px) scale(1.04);
}
.garantia {
  margin-top: 18px;
  color: #218c6a;
  font-size: 0.98rem;
  font-weight: 500;
}
.quiz-progress {
  font-size: 1rem;
  font-weight: bold;
  color: #1bb38a; /* ou a cor do seu tema */
  margin: 0 auto 20px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}
