body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to right, #290131, #22001f);
      color: #fff;
      line-height: 1.6;
    }
 
 
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }



  .container {
    max-width: 400px;
    margin: auto;
    padding: 1.5rem 1rem;
  }

  .quiz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff3399, #ff66cc);
    color: white;
    padding: 1rem 1.4rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 102, 204, 0.3);
    margin-top: 1.5rem;
  }

  .quiz-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 102, 204, 0.5);
  }

  .header-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: #f8d8eb;
  }

.abajur {
  width: 100%;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem;
  position: relative;
  background: transparent;
  border-radius: 1rem;
  z-index: 1;
  text-align: center;
  box-sizing: border-box;
}

.abajur h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000; /* Letras pretas */
  font-weight: 700;
}
.abajur h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
 margin-top: -1.5rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 600;
}


.abajur p {
  font-size: 1rem;
  color: #000; /* Também deixei o parágrafo com letras pretas, se quiser */
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

  .botao-roxo-fixo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(128, 0, 128, 0.25); /* roxo mais intenso */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff; /* branco puro */
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  z-index: 9999;
  transition: background 0.3s ease, color 0.3s ease;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4); /* essa linha faz a mágica da legibilidade */
}

.botao-roxo-fixo:hover {
  background: rgba(128, 0, 128, 0.4);
  color: #ffffff;
}

@keyframes pulsarTexto {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

.botao-roxo-fixo span {
  display: inline-block;
  animation: pulsarTexto 1.8s infinite ease-in-out;
}


.notificacao-topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(84, 0, 84, 0.25); /* roxo translúcido */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
  letter-spacing: 0.5px;
}