/* Reset básico / estilo global */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f7f9fb;
  color: #333;
}

a {
  color: #0f4f79;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Cabeçalho / topo azul */
.header {
  background: #0f4f79;
  color: #fff;
  padding: 20px 16px;
  text-align: center;
}

.header img {
  max-width: 120px;
  height: auto;
}

.header h1 {
  margin: 10px 0 0;
  font-size: 1.5rem; /* adaptável */
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Container central */
.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Cartões / campo de formulário em card */
.card {
  background: #fff;
  border: 1px solid #dce3ea;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

/* Rótulos e campos de formulário */
label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #0f4f79;
}

select,
input[type="text"],
input[type="number"],
input[type="date"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dce3ea;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #333;
  box-sizing: border-box;
}

input[type="checkbox"] {
  margin-right: 8px;
}

/* Botão principal */
button,
.btn {
  display: inline-block;
  background-color: #0f4f79;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover,
.btn:hover {
  background-color: #0c3a5a;
}

/* Links secundários / rodapé */
.footer-links {
  margin-top: 24px;
  font-size: 0.875rem;
}

.footer-links a {
  margin-right: 16px;
  color: #0f4f79;
}

/* Aviso / instrução banner */
.alert-instrucoes {
  background: #eef6fb;
  border-left: 4px solid #0f4f79;
  padding: 14px 16px;
  border-radius: 8px;
  color: #0f4f79;
  margin-bottom: 20px;
}

/* Ícones circulares em cards (exemplo para formulário) */
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #0f4f79;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

/* Responsividade */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.25rem;
  }

  .card {
    padding: 16px;
  }

  select,
  input[type="text"],
  input[type="number"],
  input[type="date"],
  textarea,
  button,
  .btn {
    font-size: 0.95rem;
    padding: 10px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .header h1 {
    font-size: 1.1rem;
  }

  .card {
    padding: 12px;
  }

  select,
  input[type="text"],
  input[type="number"],
  input[type="date"],
  textarea,
  button,
  .btn {
    font-size: 0.9rem;
    padding: 8px;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
    height: 400px; /* altura do gráfico */
}

canvas#graficoRecitativos {
    width: 100%;
}
