* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 20px;
  color: #333;
}

#requestPermission {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 15px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

#requestPermission:hover {
  background: #45a049;
}

#requestPermission:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#status {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  color: #333;
  font-size: 0.9em;
  max-width: 400px;
  margin: 0 auto 20px;
}

.cabeca {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.olho-esquerdo,
.olho-direito {
  position: absolute;
  transition: transform 0.1s ease-out;
  z-index: -1;
}

.olho-esquerdo {
  left: 367px;
  top: 417px;
}

.olho-direito {
  left: 616px;
  top: 417px;
}
