.Perguntas-pokemon{
  background: white;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

}

h3{
    font-family: 'Press Start 2P', cursive;
}


header {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

header h2 {
  font-family: 'Press Start 2P', cursive;
  text-align: center;
  font-size: 22px;
  color: #2a2a2a;
}


body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f4f6fb, #e9ecff);
      background-color: #f4f6fb;
      font-family: 'Press Start 2P', cursive;
}

label{
    font-family: 'Press Start 2P', cursive;
    font-style: obliquebody; 
  font-family: Arial, sans-serif;
  background: #f4f6fb;
  
}

.Perguntas-pokemon {
  background: white;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  
}

/* .opcoes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.opcoes label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
}

.opcoes label:hover {
  background: #eef1ff;
} */

#botao-enviar {
  font-family: 'Press Start 2P', cursive;
  background-color: #ffffff;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(#4f46e5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: #4f46e5;
  
}

#botao-enviar:active {
  transform: scale(0.97);
}

#botao-enviar:hover {
  background-color: #47456d;
  box-shadow: 0 8px 20px rgba(#4f46e5);
  border: 3px solid black;
}

.botao-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;   
}

main {
  max-width: 900px;
  width: 100%;
  padding: 20px;
}

.opcoes label {
  padding: 10px 14px;
  border-radius: 12px;
  background: #f4f6fb;
  transition: 0.2s;
  font-family: 'Press Start 2P', cursive;
}
.opcoes {
  display: flex;
  flex-direction: column; /* deixa uma embaixo da outra */
  gap: 8px; /* espaço entre as respostas */
}

.opcoes label:hover {
  background: #dfe4ff;
}


.opcoes label:has(input:checked) {
  background: #4f46e5;
  color: white;
}

.progresso {
  height: 10px;
  background: #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
}

.barra {
  height: 100%;
  width: 40%;
  background: #4f46e5;
  border-radius: 10px;
}