/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilos do body */
body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Cabeçalho */
header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  color: #555;
}

/* Seção de FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
}

.faq-question {
  font-size: 1rem;
  margin-bottom: 5px;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.5;
}

/* Rodapé */
footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* Estilos para o overlay do Easter Egg */
#easter-egg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  overflow: hidden;
}

#easter-egg-overlay img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 80%; /* Imagem um pouco maior */
  height: auto;
  animation: flicker 2s infinite alternate;
  pointer-events: none; /* Não clicável */
  user-select: none;   /* Não copiável */
}

/* Animação de flicker (ajustada via JavaScript para duração aleatória) */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
