html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background-image: url('/appweb/imagens/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #0078ff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin: 8px 0;
}

button:hover { background: #005fcc; }

#installPrompt {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

.tela-lista {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    padding: 10px 30px;
}

.tela-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}

.tela-icon {
    flex-shrink: 0;
    width: 1.5em;
    text-align: center;
}

.tela-texto {
    text-align: left;
}

