*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
body {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
  color-scheme: only light;
  -webkit-filter: none !important;
  filter: none !important;
  forced-color-adjust: none;
}

body {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-loaded {
  opacity: 1;
}

:root {
  --green: #2d8c6e;
  --green-dark: #1a5c4a;
  --green-light: #3eb489;
  --green-pale: #eaf5f0;
  --green-ultra-light: #f5faf8;
  --gray-light: #f8faf9;
  --gray-mid: #e8eeec;
  --text: #1e2e28;
  --text-mid: #4a6358;
  --text-light: #7a9e92;
  --white: #fff;
  --section-max: 1600px;
  --section-pad: clamp(16px, 5vw, 48px);
  color-scheme: only light;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.icon-sm {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-lg {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.cat-ico {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.cat-pill-ico {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}

a[href^="tel"],
a[href^="tel"]:visited {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   FADE ANIMATION
   ============================================ */

.pub-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pub-item {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}
.pub-item:nth-child(1) {
  animation-delay: 0.05s;
}
.pub-item:nth-child(2) {
  animation-delay: 0.1s;
}
.pub-item:nth-child(3) {
  animation-delay: 0.15s;
}
.pub-item:nth-child(4) {
  animation-delay: 0.2s;
}
.pub-item:nth-child(5) {
  animation-delay: 0.25s;
}
.pub-item:nth-child(6) {
  animation-delay: 0.3s;
}
.pub-item:nth-child(7) {
  animation-delay: 0.35s;
}
.pub-item:nth-child(8) {
  animation-delay: 0.4s;
}
.pub-item:nth-child(9) {
  animation-delay: 0.45s;
}
.pub-item:nth-child(10) {
  animation-delay: 0.5s;
}
.pub-item:nth-child(11) {
  animation-delay: 0.55s;
}
.pub-item:nth-child(12) {
  animation-delay: 0.6s;
}
.pub-item:nth-child(13) {
  animation-delay: 0.65s;
}
.pub-item:nth-child(14) {
  animation-delay: 0.7s;
}
.pub-item:nth-child(15) {
  animation-delay: 0.75s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

nav {
  background: var(--white);
  position: relative;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo a {
  display: block;
  text-decoration: none;
}
.nav-logo img {
  height: 34px;
  display: block;
}

.nav-logo-fb {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.nav-logo-fb small {
  display: block;
  font-size: 0.48rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  height: 62px;
  align-items: center;
  gap: 0.3rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 62px;
  padding: 0 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.ativo {
  color: var(--green);
  border-color: var(--green);
}

.nav-menu > li > a svg {
  fill: var(--text-mid);
  transition: fill 0.2s;
}
.nav-menu > li > a:hover svg,
.nav-menu > li > a.ativo svg {
  fill: var(--green);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 210px;
  border-top: 2px solid var(--green);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  z-index: 200;
  border-radius: 0 0 8px 8px;
}

.nav-menu > li:hover .dropdown {
  display: block;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-mid);
  transition:
    background 0.15s,
    color 0.15s;
}

.dropdown a:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}
.dropdown a:hover {
  background: var(--green-pale);
  color: var(--green);
}
.dropdown a svg {
  fill: var(--text-mid);
  transition: fill 0.15s;
}
.dropdown a:hover svg {
  fill: var(--green);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 3px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  flex-direction: column;
  display: flex;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mob-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 5vw;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-mid);
  transition:
    background 0.15s,
    color 0.15s;
}

.mob-item:hover,
.mob-item.ativo {
  background: var(--green-pale);
  color: var(--green);
}
.mob-item svg {
  fill: var(--text-mid);
}
.mob-item:hover svg,
.mob-item.ativo svg {
  fill: var(--green);
}

.mob-group-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  padding: 0.9rem 5vw 0.4rem;
  background: var(--gray-light);
}

.mob-sub {
  padding-left: calc(5vw + 1.8rem);
  background: var(--green-ultra-light);
}

/* ============================================
   WRAPPERS
   ============================================ */

.page-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  padding-left: var(--section-pad);
  padding-right: var(--section-pad);
  width: 100%;
}

.section-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  padding-left: var(--section-pad);
  padding-right: var(--section-pad);
}

/* ============================================
   HERO
   ============================================ */

.transp-hero {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transp-hero-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.transp-hero-ico {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transp-hero-ico svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.transp-hero h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.transp-hero p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* ============================================
   FILTROS
   ============================================ */

.filtros-wrap {
  padding-top: 24px;
  padding-bottom: 0;
}

.filtros {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.filtro-btn {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  color: var(--text-mid);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filtro-btn:hover,
.filtro-btn.ativo {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.filtro-btn svg {
  fill: var(--text-mid);
  transition: fill 0.2s;
}
.filtro-btn:hover svg,
.filtro-btn.ativo svg {
  fill: #fff;
}

/* ============================================
   LISTA DE PUBLICAÇÕES
   ============================================ */

.pub-wrap {
  padding-top: 24px;
  padding-bottom: 40px;
  flex: 1;
}
.pub-items-container {
  min-height: 400px;
}

.pub-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--gray-mid);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.pub-item:first-child {
  border-top: 1px solid var(--gray-mid);
}
.pub-item:hover {
  background: var(--green-ultra-light);
  transform: translateX(5px);
}
.pub-item:hover .pub-titulo {
  color: var(--green);
}

.pub-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.pub-content {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.pub-col {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0 1rem;
}

.pub-col:first-child {
  padding-left: 0;
}
.pub-col-titulo {
  flex: 1 1 0;
  min-width: 0;
}

.pub-titulo {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.pub-col-cat {
  width: 200px;
  justify-content: center;
}

.pub-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.22rem 0.75rem;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.pub-cat-emendas {
  background: var(--green-pale);
  color: var(--green);
}

.pub-cat-publicacoes {
  background: var(--green-pale);
  color: var(--green);
}

.pub-cat-avancar {
  background: var(--green-pale);
  color: var(--green);
}

.pub-cat-nota-fiscal {
  background: var(--green-pale);
  color: var(--green);
}

.pub-col-data {
  width: 100px;
  justify-content: center;
}

.pub-data {
  font-size: 0.72rem;
  color: var(--text-light);
  white-space: nowrap;
}

.pub-data svg {
  fill: var(--text-light);
  flex-shrink: 0;
}

.pub-arrow {
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pub-arrow svg {
  fill: var(--text-light);
  transition: fill 0.2s;
}
.pub-item:hover .pub-arrow svg {
  fill: var(--green);
}

/* ============================================
   VAZIO
   ============================================ */

.vazio {
  text-align: center;
  padding: 2.5rem 2rem;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 14px;
  animation: fadeIn 0.5s ease-out;
  margin-bottom: 1.5rem;
}

.vazio-icon {
  width: 70px;
  height: 70px;
  background: var(--green-pale);
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vazio-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--green);
}
.vazio h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.vazio p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   PÁGINA DE PUBLICAÇÃO ABERTA
   ============================================ */

.pub-page {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 50px var(--section-pad);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pub-page-inner {
  flex: 1;
}

.pub-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  transition: gap 0.2s;
}

.pub-back:hover {
  gap: 0.7rem;
}
.pub-back svg {
  fill: var(--green);
}

.pub-header {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
}

.pub-header-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pub-header-cat-emendas {
  background: var(--green-pale);
  color: var(--green);
}

.pub-header-cat-publicacoes {
  background: var(--green-pale);
  color: var(--green);
}

.pub-header-cat-avancar {
  background: var(--green-pale);
  color: var(--green);
}

.pub-header-cat-nota-fiscal {
  background: var(--green-pale);
  color: var(--green);
}

.pub-header-cat svg {
  fill: var(--green);
}

.pub-header h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.pub-header-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gray-mid);
}

.pub-header-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.pub-header-meta-item svg {
  fill: var(--text-light);
}
.pub-header-meta-item strong {
  color: var(--text-mid);
  font-weight: 600;
}

.pub-resumo-box {
  background: var(--green-ultra-light);
  border: 1px solid var(--gray-mid);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   ARQUIVOS
   ============================================ */

.arquivos-titulo {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.arquivos-titulo::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-mid);
}

.arquivo-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.arquivo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.arquivo-item:hover {
  border-color: var(--green);
  background: var(--green-ultra-light);
  transform: translateX(3px);
}

.arquivo-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 9px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.arquivo-ico svg {
  fill: var(--green);
  pointer-events: none;
}

.arquivo-info {
  flex: 1;
  min-width: 0;
  pointer-events: none;
}
.arquivo-info h4 {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;  
}

.arquivo-data {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 0.05rem;
  pointer-events: none;
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 0.42rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.btn-dl:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-dl svg {
  fill: #fff;
  pointer-events: none;
}

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

footer {
  background: #f5faf8;
  border-top: 1px solid var(--gray-mid);
  margin-top: auto;
}

.ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ft-brand img {
  height: 56px;
  opacity: 0.7;
}
.ft-brand .tag {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.45rem;
  font-style: italic;
}

.ft-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.ft-links,
.ft-telefones {
  font-size: 0.72rem;
  color: var(--text-light);
}

.ft-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ft-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ft-links a:hover {
  color: var(--green);
}
.ft-links span {
  color: var(--text-light);
}
.ft-telefones span {
  margin: 0 0.25rem;
}
.ft-right p {
  font-size: 0.72rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  fill: #fff;
}

/* ============================================
   RESPONSIVO — até 1100px
   ============================================ */

@media (max-width: 1100px) {
  .nav-menu {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .transp-hero {
    padding: 32px 0;
  }
  .transp-hero-inner {
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
  }
  .transp-hero-ico {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 11px;
  }
  .transp-hero-ico svg {
    width: 22px;
    height: 22px;
  }
  .transp-hero h1 {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 0.2rem;
  }
  .transp-hero p {
    font-size: 0.78rem;
  }

  .filtros-wrap {
    padding-top: 18px;
  }
  .filtros {
    gap: 0.4rem;
  }
  .filtro-btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }

  .pub-wrap {
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .pub-item {
    gap: 0.6rem;
    padding: 0.75rem 0.8rem;
  }

  .pub-item:hover {
    transform: none;
  }

  .pub-ico {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
  }
  .pub-ico svg {
    width: 16px;
    height: 16px;
  }

  /* Mantém todos os itens sempre na mesma linha horizontal */
  .pub-content {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    overflow: hidden;
  }

  .pub-col {
    padding: 0 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0;
  }

  .pub-col:first-child {
    padding-left: 0;
  }

  .pub-col-titulo {
    flex: 1 1 0;
    min-width: 0;
    flex-shrink: 1;
  }

  .pub-titulo {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    width: 100%;
  }

  .pub-col-cat {
    flex: 0 0 auto;
    width: auto !important;
    justify-content: center;
  }

  .pub-cat {
    width: auto !important;
    min-width: 0;
    font-size: 0.6rem;
    padding: 0.12rem 0.45rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  .pub-col-data {
    flex: 0 0 auto;
    width: auto !important;
    justify-content: center;
  }

  .pub-data {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  /* Oculta ícone do calendário para economizar espaço */
  .pub-data svg {
    display: none;
  }

  .pub-arrow {
    grid-column: 3;
    align-self: center;
  }

  .pub-page {
    padding: 24px var(--section-pad) 40px;
  }
  .pub-header {
    padding: 1.1rem;
  }
  .pub-header h1 {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }
  .pub-header-meta {
    gap: 0.8rem;
  }
  .pub-resumo-box {
    padding: 1rem 1.1rem;
    font-size: 0.85rem;
  }

  .arquivo-item {
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .btn-dl {
    width: 100%;
    justify-content: center;
  }
  .arquivo-ico {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .ft {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ft-brand {
    align-items: center;
  }
  .ft-right {
    align-items: center;
    text-align: center;
  }
  .ft-links {
    justify-content: center;
  }

  .vazio {
    padding: 2rem 1.5rem;
  }
  .vazio-icon {
    width: 60px;
    height: 60px;
  }
  .vazio-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* ============================================
   RESPONSIVO — até 480px
   ============================================ */

@media (max-width: 480px) {
  .transp-hero {
    padding: 24px 0;
  }
  .transp-hero-ico {
    display: none;
  }
  .transp-hero h1 {
    font-size: 1rem;
  }
  .transp-hero p {
    font-size: 0.74rem;
  }

  .filtro-btn {
    font-size: 0.68rem;
    padding: 0.3rem 0.7rem;
  }

  .pub-item {
    padding: 0.65rem 0.6rem;
    gap: 0.4rem;
  }
  .pub-titulo {
    font-size: 0.74rem;
  }
  .pub-cat {
    font-size: 0.56rem;
    padding: 0.1rem 0.35rem;
  }
  .pub-data {
    font-size: 0.6rem;
  }

  .vazio {
    padding: 1.5rem 1rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --green: #2d8c6e;
    --green-dark: #1a5c4a;
    --green-light: #3eb489;
    --green-pale: #eaf5f0;
    --green-ultra-light: #f5faf8;
    --gray-light: #f8faf9;
    --gray-mid: #e8eeec;
    --text: #1e2e28;
    --text-mid: #4a6358;
    --text-light: #7a9e92;
    --white: #fff;
  }

  html, body {
    background-color: #fff !important;
    color: #1e2e28 !important;
  }
}