/* --- Estilos Gerais e Importação --- */
@import url('https://fonts.googleapis.com/css2?family=Circular+Std:wght@700&display=swap');
* {
  margin: 0;
  padding: 0;
}

body {
  background-repeat: no-repeat;
}

/* --- Layout Principal (Grid) --- */
.container {
  display: flex;
  flex-direction: column;
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 10px;
}

.titulo {
  margin-bottom: 16px;
  padding: 10px;
  background-color: aliceblue;
  justify-items: center;
}

h1 {
  font-family: 'Poppins', sans-serif;
  color: #585858;
  font-size: 32px;
  text-align: center;
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #585858;
  background-color: #d6ecf9;
  border-radius: 6px;
  border: 2px solid #333;
  text-align: center;
}

h5 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: rgb(0, 0, 0);
  font-size: 100%;
  font-weight: 2;
  font-weight: bold;
}

h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: rgb(0, 0, 0);
  font-size: 100%;
  font-weight: 2;
  font-weight: bold;
}

/* --- Estilos de Tabela --- */
.table1,
.table2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

td {
  border: 2px solid #333;
  padding: 8px;
  text-align: left;
  border-radius: 6px;
  width: 70px;
}

th {
  border: 2px solid #333;
  padding: 8px;
  text-align: left;
  width: 200px;
}

tr:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* --- Estilos Responsivos (Telas Menores) --- */
@media only screen and (max-width: 1000px) {
  .container {
    margin-left: 2%;
    margin-right: 2%;
  }

  #nav img {
    width: 100px;
  }

  td {
    padding: 12px;
    width: 100px;
  }
}