/* Contenedor general */
#quiz-paletas {
  max-width: 650px;
  margin: 40px auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* Caja del cuestionario */
.quiz-container {
  padding: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.6s ease;
}

/* Pregunta */
#quiz-step h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111;
}

/* Botones de opciones */
.quiz-option {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 12px auto;
  padding: 14px 22px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  background: linear-gradient(135deg, #70e000, #38b000);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quiz-option:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #38b000, #70e000);
}

/* Botón siguiente (si lo usas) */
#quiz-next {
  margin-top: 20px;
  padding: 12px 28px;
  border: none;
  background: #ff6b6b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#quiz-next:hover {
  background: #ff4b4b;
  transform: scale(1.05);
}

/* Resultados */
#quiz-results {
  margin-top: 35px;
  text-align: left;
}

#quiz-results h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 25px 0 15px;
  border-left: 5px solid #0073aa;
  padding-left: 12px;
  color: #0073aa;
}

/* Tarjeta de producto */
#quiz-results div {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

#quiz-results div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

#quiz-results img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

#quiz-results a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: color 0.2s ease;
}

#quiz-results a:hover {
  color: #0073aa;
}

/* Animación fadeUp */
.fadeup {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
