/* Fonte limpa e profissional */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  background-color: #f9f9f9;
}

/* Título principal */
h1 {
  font-size: 2.2rem;
  color: #002855;
  margin-bottom: 20px;
  border-bottom: 3px solid #00509d;
  padding-bottom: 10px;
}

/* Subtítulo */
h2 {
  font-size: 1.6rem;
  color: #00509d;
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 5px solid #00509d;
  padding-left: 10px;
}

/* Seção de apoio */
h3 {
  font-size: 1.2rem;
  color: #444;
  margin-top: 25px;
  margin-bottom: 8px;
}

/* Parágrafos explicativos */
p, ul {
  font-size: 1rem;
  margin-bottom: 16px;
  text-align: justify;
}

/* Figuras */
figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  max-width: 90%;
}

figure img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  font-style: italic;
}

/* ---------------------------------- */
/* -------- ESTILO PARA TABELAS ----- */
/* ---------------------------------- */

table {
  width: 50%;                 /* ocupa metade da página */
  margin: 25px auto;          /* centraliza horizontalmente */
  border-collapse: collapse;
  font-size: 1rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

table caption {
  caption-side: top;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 8px;
  color: #002855;
}

table th {
  background-color: #00509d;
  color: white;
  text-align: left;
  padding: 12px;
  font-size: 1rem;
  border-bottom: 2px solid #003b73;
}

table td {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
}

/* Linhas alternadas */
table tr:nth-child(even) {
  background-color: #f2f7ff;
}

/* Hover */
table tr:hover {
  background-color: #e8f1ff;
}

.equacao {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0;
}
.no-sublinhado {
    text-decoration: none; /* remove o sublinhado */
    color: inherit;        /* mantém a cor do texto igual ao padrão */
}
