/* ===== CATEGORIAS PAGE ===== */

.header-interno {
  height: 10vh;
  background: linear-gradient(180deg, #000, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-interno h1 {
  font-size: 48px;
  color: var(--verde);
}

.categorias-page {
  padding: 40px 20px;
  max-width: 100%;
  overflow-x: hidden;
}

.categorias-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
}

.cat-title {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--verde);
  border-left: 6px solid var(--verde);
  padding-left: 15px;
}

.cat-desc {
  max-width: 980px;
  margin: 0 auto 16px;
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.6;
}

.tabela-categorias {
  width: 100%;
  max-width: 1200px;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: #0b0b0b;
  margin: 40px auto;
  font-size: 16px;
  border-radius: 12px;
   overflow: hidden;
    box-shadow: 0 0 30px rgba(5, 163, 89, 0.589);
}

.tabela-categorias th {
  background: var(--verde);
  color: #000;
  padding: 12px;
  text-align: center;
}

.tabela-categorias td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #222;
}

.tabela-categorias tr:hover {
  background: #111;
  transition: 0.3s;
}

/* botão home pagina categorias */

.btn-voltar {
  position: fixed;
  top: 20px;
  left: 20px;
  background: var(--verde);
  color: #000;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  z-index: 99999;
}


/* pesquisa pag categorias */

.search-box {
  max-width: 800px;
  margin: 30px auto;
  padding: 10px;
  position: relative;
  z-index: 1;
}

#searchInput {
  width: 100%;
  padding: 14px 120px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  background: #ffffff;
  color: #000000;
}

/* responsividade mobile - REMOVIDA */

/* Responsividade para tabelas */
@media (max-width: 768px) {
  .categorias-page {
    padding: 30px 10px;
  }

  .categorias-wrapper,
  .search-box,
  .tabela-categorias {
    width: 100%;
  }

  .tabela-categorias {
    display: table;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    font-size: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tabela-categorias th,
  .tabela-categorias td {
    padding: 8px 6px;
    white-space: normal;
    word-break: normal;
  }

  .cat-title {
    font-size: 24px;
    margin-top: 40px;
  }

  .search-box {
    margin: 20px auto;
  }

  #searchInput {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .categorias-page {
    padding: 24px 6px;
  }

  .categorias-wrapper,
  .search-box,
  .tabela-categorias {
    width: 100%;
  }

  .tabela-categorias {
    font-size: 12px;
    margin-left: 0;
    margin-right: 0;
  }

  .tabela-categorias th,
  .tabela-categorias td {
    padding: 7px 5px;
  }

  .cat-title {
    font-size: 20px;
  }
}
