* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
}

.oculto { display: none !important; }

.tela {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

h1 { margin: 40px 0 0; text-align: center; }
.subtitulo { text-align: center; color: #94a3b8; margin-bottom: 30px; }

label { display: block; margin-top: 14px; margin-bottom: 4px; font-size: 14px; color: #cbd5e1; }

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #f1f5f9;
  font-size: 16px;
}

.btn-primario, .btn-secundario {
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
}

.btn-primario {
  background: #38bdf8;
  color: #0f172a;
  width: 100%;
}

.btn-secundario {
  background: #334155;
  color: #e2e8f0;
}

.erro { color: #f87171; margin-top: 10px; min-height: 18px; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #334155;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #1e293b;
  font-size: 12px;
  color: #94a3b8;
}

.barra-sync {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fbbf24;
  margin-bottom: 16px;
}

section { margin-bottom: 22px; }
section h2 { font-size: 16px; color: #94a3b8; margin-bottom: 8px; }

.lista { display: flex; flex-direction: column; gap: 10px; }

.card {
  background: #1e293b;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #334155;
}

.card .endereco { color: #94a3b8; font-size: 14px; }

.aviso {
  margin-top: 6px;
  color: #fbbf24;
  font-size: 12px;
}

.vazio { color: #64748b; font-size: 14px; }

.input-foto {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  color: #cbd5e1;
  font-size: 13px;
}

.label-foto {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
}

.banner-instalar {
  background: #1e293b;
  border: 1px solid #38bdf8;
  border-radius: 10px;
  padding: 14px;
  margin: 20px 0 24px;
  text-align: center;
}

.banner-instalar p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #e2e8f0;
}

.seta-ios {
  font-size: 28px;
  animation: banner-instalar-pular 1.2s infinite;
}

@keyframes banner-instalar-pular {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dica-navegador-externo {
  color: #fbbf24;
  font-size: 13px;
}

.btn-fechar-banner {
  margin-top: 4px;
  font-size: 12px;
  padding: 6px 12px;
}
