/* ===============================
   🔧 HUB – FERRAMENTAS FREE FIRE
   Estilo editorial / clean / forte
   =============================== */

/* Título principal do hub */
section[itemtype*="ItemList"] > h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  border-bottom: 3px solid #f49d16;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* Texto explicativo */
section[itemtype*="ItemList"] > p.small {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

/* Campo de busca */
#filtroFerramentas {
  border: 2px solid #ddd;
  border-radius: 30px;
  padding: 12px 18px;
  font-size: 1rem;
  transition: all .2s ease;
}

#filtroFerramentas:focus {
  border-color: #f49d16;
  box-shadow: 0 0 0 3px rgba(244,157,22,.15);
}

/* Títulos das categorias */
section[itemtype*="ItemList"] h3.blockquote {
  background: transparent;
  border-left: 4px solid #f49d16;
  padding: 6px 0 6px 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin: 28px 0 10px;
}

/* Lista */
section[itemtype*="ItemList"] .list-group {
  border-radius: 6px;
}

/* Itens */
section[itemtype*="ItemList"] .list-group-item {
  border: 0;
  border-bottom: 1px solid #eee;
  padding: 14px 12px;
  font-size: 1rem;
  transition: background .15s ease, transform .15s ease;
}

/* Último item sem linha */
section[itemtype*="ItemList"] .list-group-item:last-child {
  border-bottom: 0;
}

/* Hover clean e moderno */
section[itemtype*="ItemList"] .list-group-item:hover {
  background-color: #fafafa;
  transform: translateX(4px);
}

/* Nome da ferramenta */
section[itemtype*="ItemList"] .list-group-item strong {
  color: #111;
  font-weight: 700;
}

/* Emojis / ícones mais suaves */
section[itemtype*="ItemList"] .list-group-item span {
  color: #444;
}