/* Configurações gerais */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px 0;
  background-color: #2091D0;
  color: #000;
}

/* Cabeçalho centralizado */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

header .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 80px; /* ajusta depois se quiser maior */
  height: auto;
}

/* Campo de busca */
#search {
  display: block;
  margin: 20px auto;
  padding: 12px;
  width: 60%;
  max-width: 600px;
  font-size: 16px;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* Tabela */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  
}

th, td {
  padding: 8px;
  border: 1px solid #ccc;
}

th {
  background-color: #f2f2f2;
}

thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-bottom: 2px solid #ccc;
}

/* Rodapé centralizado */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #2091D0;
  border-radius: 8px;
}

/* Botão voltar ao topo */
#btnTopo {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #2091D0;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

#btnTopo:hover {
  background-color: #0056b3;
}

header h1 {
    font-family: montserrat, serif;
    font-size: 40px;;
}

.destaque {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
}