/* Estilos principais */
body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9ff;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.center {
  text-align: center;
}

/* Topo com Logo e Título */
.header {
  text-align: center;
  padding: 20px 0;
}

.logo {
  width: 60px;
  vertical-align: middle;
}

.header-title {
  display: inline-block;
  font-size: 1.7rem;
  margin-left: 10px;
  vertical-align: middle;
  color: #5E35B1;
  font-weight: bold;
}

/* Barra de progresso moderna */
.progress-bar {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  height: 15px;
  margin: 30px 0;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #5E35B1, #7C4DFF);
  width: 5%;
  border-radius: 20px;
  transition: width 0.5s ease-in-out;
}

/* Pergunta */
.question {
  font-size: 1.6rem;
  margin: 20px 0;
  color: #333;
  text-align: center;
}

/* Opções */
.quiz-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.option {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  border: 2px solid #ccc;
  max-width: 400px;
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
}

.option:hover {
  border-color: #5E35B1;
  background: #f0f0ff;
}

.option input[type="radio"], .option input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.option-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

/* Botão Próxima Pergunta */
.next-button, .start-button {
  display: inline-block;
  background: linear-gradient(90deg, #5E35B1, #7C4DFF);
  color: white;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  margin-top: 30px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.next-button:hover, .start-button:hover {
  transform: scale(1.05);
}

/* Hero Section (Index) */
.hero-img {
  max-width: 300px;
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-text {
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #5E35B1;
}

/* Responsivo */
@media (max-width: 768px) {
  .option {
    flex-direction: column;
    text-align: center;
  }

  .option-img {
    width: 80px;
    height: 80px;
  }

  .next-button, .start-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .header-title {
    font-size: 1.3rem;
  }

  .question {
    font-size: 1.4rem;
  }
}
