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

:root {
  --primary: #233a70;
  --secondary: #2d4f9d;
  --light: #f5f5f5;
  --text: #333;
  --white: #fff;
  --border: #ddd;
}

.material-symbols-outlined {
  vertical-align: middle;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #233a70;
}

a:hover {
  color: green;
}

/* =========================
           HEADER
        ========================= */

.top-header {
  background:
    linear-gradient(rgba(35, 58, 112, .88), rgba(35, 58, 112, .88)),
    url('/static/img/bg.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px 10px 20px;
  position: relative;
}

/* TOPO */

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 78px;
  height: 78px;
  border: 4px solid white;
  border-radius: 10px;
  background-image: url('/static/img/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}

.logo h1 {
  margin-left: 15px;
  font-size: 2rem;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
}

.header-actions a {
  color: white;
  font-size: 0.95rem;
}

/* =========================
           MENU
========================= */

#menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* NAV */

.navbar {
  margin-top: 15px;
  font-size: 17px;
  font-weight: bold;
}

.nav-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.nav-list a {
  color: white;
  padding: 10px 15px;
  display: block;
}

.nav-list a:hover {
  border-radius: 4px;
  background-color: #243b7b
}

/* =========================
           MAIN
========================= */


.content_body {
  display: flex;
  align-items: stretch;
  text-align: justify;
}

.content_body_menu {
  width: 220px;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.content_body_content {
  margin-left: 20px;
  flex: 1;
}


.menu_active,
.menu_normal {
  display: flex;
  width: 100%;
  padding: 8px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  text-align: left;
}

.menu_active {
  font-weight: bold;
  background-color: #e7e7e7;
}

.menu_active:hover,
.menu_normal:hover {
  background: #243b7b;
  color: white;
}


.main-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px 30px 0;
}

.breadcrumb {
  background: #f7f7f7;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.content-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-card h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.content-card h3 {
  margin-top: 35px;
  margin-bottom: 20px;
  color: var(--primary);
}

.content-card p {
  margin-bottom: 18px;
}

.content-card ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-card li {
  margin-bottom: 10px;
}

.highlight {
  font-weight: bold;
  margin: 25px 0;
}

/* GRID */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-box {
  border: 1px solid var(--border);
  background: #fafafa;
  border-radius: 8px;
  padding: 20px;
}

.info-box h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* =========================
           FOOTER
        ========================= */

footer {
  background: var(--primary);
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}

.footer-container a {
  color: white;
}

.footer-container a:hover {
  color: green;
}

footer h1 {
  font-size: 19px;
}

.footer-contact {
  width: 100%;
  display: flex;
}

.footer-contact div {
  flex: 1;
}


.footer-address {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  margin-top: 15px;
  font-size: 14px;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  padding-top: 10px;
}

/* =========================
           RESPONSIVO
        ========================= */

@media (max-width: 768px) {

  .content_body {
    flex-direction: column;
  }

  .content_body_menu {
    width: 100%;
    margin-bottom: 20px;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  /* BOTÃO MENU */

  .menu-button {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  /* MENU FECHADO */

  .navbar {
    display: none;
    width: 100%;
  }

  /* MENU ABERTO */

  #menu-toggle:checked+.menu-button+.navbar {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    overflow: hidden;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list a {
    padding: 14px 18px;
  }

  .content-card {
    padding: 25px;
  }

  .content-card h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .main-container {
    padding: 20px 12px 40px;
  }

  .content-card {
    padding: 20px;
  }

  .logo-box {
    width: 42px;
    height: 42px;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .header-actions {
    flex-direction: column;
  }

  .header-actions a {
    font-size: 0.9rem;
  }
}




.tabela {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.tabela th {
  padding: 6px 4px;
  border: 1px solid #233a70;
  background-color: #233a70;
  color: white;
  text-align: center;
}

/* Corpo */
.tabela td {
  padding: 6px 4px;
  border: 1px solid #f1f1f1;
}

.tabela tr:nth-child(even) {
  background: #f8f9fc;
}

/* Hover */
.tabela tr:hover {
  background: #eef3ff;
}

.top {
  border-top: 2px solid #f1f1f1;
  text-align: right;
  padding-top: 6px;
  margin-top: 15px;
}

.top span i {
  margin-right: 5px;
}

.top span {
  margin-left: 25px;
  font-weight: bold;
}

.content_body h1 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 20px;
}

.icone_botao {
  font-size: 28px;
}

select {
  font-size: 16px;
  padding: 8px;
  border-radius: 4px;
  border-color: #DDD;
}

.header-actions a {
  padding: 0 20px;
  text-align: center;
}

.header-actions i {
  font-size: 24px;
}

.header-actions a:hover {
  border-radius: 4px;
  background-color: #243b7b;
}