@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background: linear-gradient(135deg, #55DDE0, #0E1B4B);
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  color: #222;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
  border: 5px solid #EB4277;
}

h1 {
  font-family: "Turret Road", sans-serif;
  font-weight: 800;
  font-size: 2em;
  margin: 10px;
  color: #0E1B4B;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  margin: 5px 0 20px 0;
  color: #0E1B4B;
}

.profissoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px;

}
.profissoes button {
   font-family: "Turret Road", sans-serif;
   font-size: 20px;
   font-weight: 500;
   letter-spacing: 2px;
}

button {
  padding: 15px;
  border: none;
  border-radius: 15px;
  background: #0E1B4B;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

button:hover {
  background: #EB4277;
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}

#proxima {
  display: none;
  margin-top: 20px;
  background: #FC8545;
}

.quiz {
  margin: 2% 10%;
  display: none;
  background: #fff;
  color: #222;
  border-radius: 20px;
  padding: 20px;
  border: 5px solid #0E1B4B;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}

#pergunta {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0E1B4B;
}

.opcoes button {
  display: block;
  margin: 10px auto;
  width: 80%;
  border-radius: 12px;
  font-size: 15px;
}

.resultado {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
}

.correct {
  background-color: #55DDE0 !important;
  color: #000;
}

.incorrect {
  background-color: #eb4250 !important;
  color: #fff;
}

/* --- DESCRIÇÃO LADO A LADO --- */
.descricao {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 900px;
  gap: 20px;
}

.descricao img {
  max-width: 300px;
}

.texto {
  flex: 1;
  font-size: 18px;
  color: #222;
  padding: 20px;
  border: #EB4277 3px solid;
  border-radius: 15px;
  background: #f8f8f8;
  text-align: left;
  line-height: 1.5em;
}

/* --- FOOTER --- */
.footer{
  background: #0E1B4B;
  padding: 15px;
  margin-top: 40px;
  text-align: center;
  border-top: 3px solid #55DDE0;
}
.footer p {
  margin: 5px 0;
  color: #fff;  
  font-size: 15px;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 768px) {
  .descricao {
    flex-direction: column;
    text-align: center;
  }

  .descricao img {
    max-width: 200px;
  }

  .texto {
    text-align: center;
    font-size: 16px;
  }
}
