@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.cor-verde {
  color: #25711b;
}

:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --link: #0f766e;
  --link-hover: #115e59;
  --maxw: 1080px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  text-decoration: none
}

.header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.brandbar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 20px 10px 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.brandbar div{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
  margin-top: 3px;

}

.brandbar .brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brandbar .subtitle {
  color: var(--muted);
  font-size: 14px
}

.nav {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px 16px 20px;
  display: flex;
  flex-wrap: wrap;
}

a:focus-visible {
  outline: none
}

.nav a {
  color: black;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover  {
  color: #25711b;
}

.nav a[aria-current="page"] {
  color: #25711b;
  border-bottom-color: #25711b;
  font-weight: 600
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 20px 44px 20px;
}

h1 {
  font-size: 26px;
  margin: 0 0 14px 0
}

h2 {
  font-size: 18px;
  /* margin: 10px 0 10px 0 */
}

p {
  margin: 10px 0
}

.small {
  font-size: 13px;
  color: var(--muted)
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 16px;
  background: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.tile {
  grid-column: span 6;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.tile h3 {
  margin: 0 0 6px 0;
  font-size: 15px
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

@media (max-width: 820px) {
  .tile {
    grid-column: span 12
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 10px 10px;
  vertical-align: top;
  font-size: 14px;
}

.table th {
  background: #fafafa;
  text-align: left
}

.kv {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px 14px;
}

@media (max-width: 700px) {
  .kv {
    grid-template-columns: 1fr
  }
}

.list {
  margin: 10px 0 0 18px;
}

.footer {
  background-color: #25711b;
  border-top: 1px solid var(--border);
  color: #ffffff;
  font-size: 13px;
  padding: 30px 20px;
  height: 200px;
  width: 100%;
}

.footer-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  gap: 40px;
}

.footer-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin-top: 8px;
}

.footer .inner {
  display: flex;
  flex-wrap: wrap;

  gap: 8px 18px;
  justify-content: space-between;
  margin: 0 auto;
  font-size: 16px;
  max-width: var(--maxw);
  padding-top: 20px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}

.footer-end {
  color: #ffffff;
}

.footer-dados {
  color: #ffffff;
}

.pagina-titulo {
  color: #25711b;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0px;
}


p{
  text-align: justify;
}



.menu-item {
  position: relative;
  display: flex;
}

.menu-item > a {
  cursor: pointer;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 1000;
}

.submenu a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #f0f0f0;
}

.menu-item:hover .submenu {
  display: block;
}