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

body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f4f6f8;
  color: #1c2733;
  padding: 16px;
}

main {
  max-width: 640px;
  margin: 0 auto;
}

h1 {
  font-size: 26px;
  margin-bottom: 4px;
}

.subtitulo {
  color: #5a6a7a;
  margin-bottom: 20px;
  font-size: 16px;
}

.bloco {
  background: #fff;
  border: 1px solid #dde4ea;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.bloco h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #33424f;
}

input[type="number"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
textarea {
  width: 100%;
  font-size: 24px;
  padding: 12px;
  border: 2px solid #b9c6d2;
  border-radius: 10px;
  background: #fff;
}

textarea {
  font-size: 18px;
  min-height: 70px;
  resize: vertical;
}

.linha {
  display: flex;
  gap: 12px;
}

.linha > div {
  flex: 1;
}

.pergunta-momento {
  font-size: 18px;
  color: #33424f;
  margin: 14px 0 8px;
}

.momentos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.momento {
  font-size: 21px;
  padding: 14px;
  border: 2px solid #b9c6d2;
  border-radius: 10px;
  background: #fff;
  color: #1c2733;
  cursor: pointer;
  text-align: left;
}

.momento.activo {
  border-color: #1a7f37;
  background: #e6f4ea;
  font-weight: 700;
}

.momento.activo::before {
  content: "✓ ";
  color: #1a7f37;
}

.opcao {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  padding: 10px 0;
  cursor: pointer;
}

.opcao input[type="checkbox"] {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.botao-principal {
  width: 100%;
  font-size: 26px;
  font-weight: 700;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: #1a7f37;
  color: #fff;
  cursor: pointer;
}

.botao-principal:active {
  background: #145c28;
}

.botao-principal:disabled {
  background: #9ab5a2;
}

.botao {
  font-size: 15px;
  padding: 9px 14px;
  border: 1px solid #b9c6d2;
  border-radius: 8px;
  background: #fff;
  color: #1c2733;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.botao:hover {
  background: #eef2f5;
}

.confirmacao {
  background: #e6f4ea;
  border: 2px solid #1a7f37;
  color: #14532d;
  border-radius: 14px;
  padding: 18px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 16px;
  display: none;
}

.erro {
  background: #fdecea;
  border: 2px solid #c0392b;
  color: #7b241c;
  border-radius: 14px;
  padding: 14px;
  font-size: 18px;
  margin-bottom: 16px;
  display: none;
}

.aviso-token {
  background: #fff8e1;
  border: 2px solid #d9a406;
  color: #6b5304;
  border-radius: 14px;
  padding: 18px;
  font-size: 20px;
  text-align: center;
}

/* ---- painel ---- */

.painel main {
  max-width: 960px;
}

.cartoes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cartao {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid #dde4ea;
  border-radius: 14px;
  padding: 16px;
}

.cartao .rotulo {
  font-size: 14px;
  color: #5a6a7a;
  margin-bottom: 4px;
}

.cartao .valor {
  font-size: 30px;
  font-weight: 700;
}

.cartao .quando {
  font-size: 13px;
  color: #5a6a7a;
  margin-top: 4px;
}

.barra-accoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 16px;
}

.barra-accoes .campo {
  display: flex;
  flex-direction: column;
}

.barra-accoes label {
  font-size: 13px;
  margin-bottom: 3px;
}

.barra-accoes input {
  font-size: 15px;
  padding: 8px;
}

table.registos {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #dde4ea;
  border-radius: 14px;
  overflow: hidden;
  font-size: 15px;
}

table.registos th,
table.registos td {
  padding: 9px 10px;
  border-bottom: 1px solid #eef2f5;
  text-align: left;
  vertical-align: top;
}

table.registos th {
  background: #eef2f5;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #33424f;
}

.alto {
  color: #b3261e;
  font-weight: 700;
}

.apagar {
  border: none;
  background: none;
  color: #b3261e;
  cursor: pointer;
  font-size: 14px;
}

/* ---- impressão ---- */

.imprimir main {
  max-width: 1000px;
}

table.mensal {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}

table.mensal th,
table.mensal td {
  border: 1px solid #8a99a8;
  padding: 5px 6px;
  vertical-align: top;
  text-align: left;
}

table.mensal th {
  background: #eef2f5;
}

table.mensal .dia {
  white-space: nowrap;
  font-weight: 700;
  width: 70px;
}

table.mensal .med {
  text-align: center;
  width: 40px;
}

.legenda {
  font-size: 12px;
  color: #5a6a7a;
  margin: 10px 0;
}

@media print {
  body {
    background: #fff;
    padding: 0;
    color: #000;
  }
  .nao-imprimir {
    display: none !important;
  }
  table.mensal {
    font-size: 11px;
  }
  table.mensal th,
  table.mensal td {
    border-color: #000;
  }
}
