/* Páginas de Produtos — tipografia Elun + cards modernos
   Escopo: app-produtos / #produtos (listagens e subcategorias) */

app-produtos,
#produtos {
  --prod-font: var(--font, "Helvetica Neue", Helvetica, Arial, sans-serif);
  --prod-display: var(--font-h1, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif);
  --prod-green: #0c6937;
  --prod-green-deep: #063d22;
  --prod-mint: #e8f6ee;
  --prod-ink: #14231b;
  --prod-muted: #4a5c52;
  font-family: var(--prod-font) !important;
  color: var(--prod-ink);
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(183, 240, 201, 0.28), transparent 50%),
    radial-gradient(70% 50% at 0% 30%, rgba(12, 105, 55, 0.06), transparent 45%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 55%, #f7fbf8 100%);
  min-height: 60vh;
}

/* ---------- Banner / título "Produtos" (mesma família do H1 Elun) ---------- */
#produtos .banner {
  background-image:
    linear-gradient(180deg, rgba(6, 40, 24, 0.55) 0%, rgba(6, 40, 24, 0.72) 100%),
    url(/eximport-site-novo/background-home.png) !important;
  background-size: cover !important;
  background-position: center !important;
  min-height: 180px !important;
  height: auto !important;
  padding-block: 3.5rem !important;
}

#produtos .banner h1 {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  margin: 0 !important;
}

#produtos .banner h2 {
  font-family: var(--prod-font) !important;
  font-weight: 400 !important;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  letter-spacing: -0.01em !important;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-top: 0.5rem !important;
}

/* ---------- Tipografia do conteúdo ---------- */
#produtos .container {
  max-width: 1180px !important;
  padding: 2rem 1.25rem 3.5rem !important;
}

#produtos .container h3 {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
  color: var(--prod-green-deep) !important;
  text-align: center !important;
  margin: 0.5rem auto 1.75rem !important;
  max-width: 42rem;
}

#produtos .container h3 span {
  font-family: inherit !important;
  font-weight: 500 !important;
  color: var(--prod-muted) !important;
}

#produtos .loading p {
  font-family: var(--prod-font) !important;
  color: var(--prod-muted) !important;
}

/* ---------- Cards de categoria / subcategoria (verde escuro + texto branco) ---------- */
#produtos .categorias-list {
  gap: 1.1rem !important;
  margin: 1.5rem auto 2rem !important;
}

#produtos .categorias-list li {
  flex: 0 1 calc(25% - 0.85rem) !important;
  min-width: 200px !important;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(183, 240, 201, 0.22), transparent 48%),
    radial-gradient(90% 80% at 100% 100%, rgba(0, 0, 0, 0.22), transparent 50%),
    linear-gradient(165deg, #0f7a42 0%, #0c6937 42%, #063d22 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 18px !important;
  box-shadow:
    0 14px 36px rgba(4, 30, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease !important;
  overflow: hidden;
}

#produtos .categorias-list li:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(183, 240, 201, 0.45) !important;
  box-shadow:
    0 20px 44px rgba(4, 30, 18, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 3px 0 0 #b7f0c9 !important;
  filter: brightness(1.05);
}

#produtos .categorias-list li span,
#produtos .categorias-list li a {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding: 1.25rem 1.15rem !important;
  text-decoration: none !important;
}

#produtos .categorias-list li:hover span,
#produtos .categorias-list li:hover a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ---------- Grid + cards de produto ---------- */
#produtos .produtos-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  margin-top: 1.5rem !important;
}

@media (max-width: 1100px) {
  #produtos .produtos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 800px) {
  #produtos .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 500px) {
  #produtos .produtos-grid {
    grid-template-columns: 1fr !important;
  }

  #produtos .categorias-list li {
    flex: 1 1 100% !important;
  }
}

#produtos .produto-card {
  background: #ffffff !important;
  border: 1px solid rgba(12, 105, 55, 0.1) !important;
  border-radius: 20px !important;
  box-shadow:
    0 12px 32px rgba(8, 40, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  overflow: hidden !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease !important;
  isolation: isolate;
}

#produtos .produto-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(12, 105, 55, 0.22) !important;
  box-shadow:
    0 20px 44px rgba(8, 40, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  filter: none;
}

#produtos .produto-card a {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  text-decoration: none !important;
  color: #0c6937 !important;
  background: #ffffff !important;
}

#produtos .produto-card img {
  width: 100% !important;
  height: 210px !important;
  object-fit: contain !important;
  padding: 1.25rem 1.1rem 0.75rem !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border-bottom: 1px solid rgba(12, 105, 55, 0.08) !important;
  flex-shrink: 0 !important;
  transition: transform 0.35s ease !important;
}

#produtos .produto-card:hover img {
  transform: scale(1.03);
}

#produtos .produto-card h4 {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #0c6937 !important;
  -webkit-text-fill-color: #0c6937 !important;
  text-align: center !important;
  padding: 1rem 1rem 1.25rem !important;
  margin: 0 !important;
  flex-grow: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
}

#produtos .produto-card p {
  font-family: var(--prod-font) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  color: #4a5c52 !important;
  -webkit-text-fill-color: #4a5c52 !important;
  line-height: 1.45 !important;
  text-align: center !important;
  padding: 0 1rem 1.25rem !important;
  margin: 0 !important;
  background: #ffffff !important;
}

/* app-produtos-categoria (rota alternativa) — mesmo visual */
#produtos-categoria {
  font-family: var(--font, "Helvetica Neue", Helvetica, Arial, sans-serif) !important;
}

#produtos-categoria .banner h1,
#produtos-categoria h1,
#produtos-categoria h3,
#produtos-categoria .produto-card h4 {
  font-family: var(--font-h1, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif) !important;
  letter-spacing: -0.025em !important;
}

#produtos-categoria .produto-card {
  background: #ffffff !important;
  border: 1px solid rgba(12, 105, 55, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 32px rgba(8, 40, 24, 0.08) !important;
  overflow: hidden !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
}

#produtos-categoria .produto-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 44px rgba(8, 40, 24, 0.12) !important;
}

#produtos-categoria .produto-card img {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  object-fit: contain !important;
  padding: 1rem !important;
  box-sizing: border-box !important;
  border-bottom: 1px solid rgba(12, 105, 55, 0.08) !important;
}

#produtos-categoria .produto-card h4,
#produtos-categoria .produto-card a,
#produtos-categoria .produto-card p {
  color: #0c6937 !important;
  -webkit-text-fill-color: #0c6937 !important;
  font-weight: 600 !important;
}

/* ========== Detalhe do produto (app-produto / #product) ========== */
app-produto,
app-sistema,
#product {
  --prod-font: var(--font, "Helvetica Neue", Helvetica, Arial, sans-serif);
  --prod-display: var(--font-h1, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif);
  --prod-green: #0c6937;
  --prod-green-deep: #063d22;
  display: block !important;
  font-family: var(--prod-font) !important;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(183, 240, 201, 0.28), transparent 50%),
    radial-gradient(70% 50% at 0% 20%, rgba(12, 105, 55, 0.07), transparent 45%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 50%, #f7fbf8 100%);
  padding: 1.5rem 0 3rem;
  min-height: 50vh;
}

#product .container {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 1.5rem 1.25rem !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}

#product .product-image,
app-produto .product-image,
app-sistema .product-image {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid rgba(12, 105, 55, 0.12) !important;
  border-radius: 22px !important;
  box-shadow:
    0 14px 36px rgba(8, 40, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  padding: 1.75rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#product .product-image img,
app-produto .product-image img,
app-sistema .product-image img {
  max-height: 420px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Card de detalhes / descrição */
#product .produto,
#product .sistema {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(183, 240, 201, 0.2), transparent 48%),
    radial-gradient(90% 80% at 100% 100%, rgba(0, 0, 0, 0.18), transparent 52%),
    linear-gradient(165deg, #0f7a42 0%, #0c6937 42%, #063d22 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 22px !important;
  box-shadow:
    0 18px 48px rgba(4, 30, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  padding: 1.75rem 1.6rem !important;
  margin: 0 !important;
  color: #ffffff !important;
}

#product .produto h1,
#product .sistema h1 {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.12 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 0 1.1rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
}

/* Meta tags: Categoria + Descrição */
#product .produto h4,
#product .sistema h4 {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.45rem !important;
  font-size: 0 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0 0 1rem !important;
  line-height: 1 !important;
}

#product .produto h4::before,
#product .sistema h4::before {
  content: "Categoria";
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.38rem 0.78rem !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.78) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--prod-font) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

#product .produto h4 a,
#product .sistema h4 a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #b7f0c9 0%, #8ee0ab 100%) !important;
  border: 1px solid rgba(183, 240, 201, 0.55) !important;
  box-shadow: 0 6px 16px rgba(4, 30, 18, 0.18) !important;
  color: #063d22 !important;
  -webkit-text-fill-color: #063d22 !important;
  font-family: var(--prod-font) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  line-height: 1.25 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

#product .produto h4 a:hover,
#product .sistema h4 a:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 8px 20px rgba(4, 30, 18, 0.24) !important;
  color: #042816 !important;
  -webkit-text-fill-color: #042816 !important;
}

#product .produto h5,
#product .sistema h5 {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 0.75rem !important;
  padding: 0.38rem 0.85rem !important;
  border-radius: 999px !important;
  background: rgba(183, 240, 201, 0.16) !important;
  border: 1px solid rgba(183, 240, 201, 0.38) !important;
  color: #b7f0c9 !important;
  -webkit-text-fill-color: #b7f0c9 !important;
  font-family: var(--prod-font) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

#product .produto main,
#product .produto p,
#product .produto main p,
#product .sistema main,
#product .sistema p,
#product .sistema main p {
  font-family: var(--prod-font) !important;
  font-size: 0.98rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  letter-spacing: -0.01em !important;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  text-align: left !important;
  margin: 0 0 0.75rem !important;
}

#product .produto .btn,
#product .produto a.btn,
#product .sistema .btn,
#product .sistema a.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 1rem !important;
  padding: 0.75rem 1.35rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #b7f0c9 0%, #7ed9a0 100%) !important;
  color: #063d22 !important;
  -webkit-text-fill-color: #063d22 !important;
  font-family: var(--prod-font) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

/* Seletor de idioma — layout + ícones circulares (cores no formularios-moderno.css) */
#product .form-language-selector,
app-produto .form-language-selector,
app-sistema .form-language-selector {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 1.75rem auto 1.25rem !important;
  padding: 1rem 1.15rem !important;
  max-width: 1180px;
  border-radius: 18px !important;
}

#product .language-btn,
app-produto .language-btn,
app-sistema .language-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  padding: 0.45rem 1rem 0.45rem 0.45rem !important;
  border-radius: 999px !important;
  font-family: var(--prod-font) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

#product .language-btn .flag-icon,
app-produto .language-btn .flag-icon,
app-sistema .language-btn .flag-icon,
#product .flag-icon,
app-produto .flag-icon,
app-sistema .flag-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  box-shadow:
    0 0 0 1.5px rgba(12, 105, 55, 0.14),
    0 4px 10px rgba(8, 40, 24, 0.12) !important;
}

#product .language-btn span,
app-produto .language-btn span,
app-sistema .language-btn span {
  font-family: var(--prod-font) !important;
  font-weight: 600 !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* Bloco do formulário de catálogo — layout; visual no formularios-moderno.css */
#product .manual,
app-produto .manual,
app-sistema .manual {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 1.25rem 2rem !important;
}

@media (max-width: 1023px) {
  #product .produto,
  #product .sistema {
    margin-top: 1rem !important;
  }
}


/* ========== Sistemas (app-categorias-sistemas) — cards iguais a Produtos ========== */
app-sistema,
app-categorias-sistemas,
app-sistemas,
#categorias {
  --prod-font: var(--font, "Helvetica Neue", Helvetica, Arial, sans-serif);
  --prod-display: var(--font-h1, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif);
  --prod-green: #0c6937;
  --prod-green-deep: #063d22;
  display: block !important;
  font-family: var(--prod-font) !important;
  color: #14231b;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(183, 240, 201, 0.28), transparent 50%),
    radial-gradient(70% 50% at 0% 30%, rgba(12, 105, 55, 0.06), transparent 45%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 55%, #f7fbf8 100%);
  padding: 0 0 3rem;
  min-height: 50vh;
}

#categorias,
app-categorias-sistemas #categorias {
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

#categorias .container,
app-categorias-sistemas .container {
  max-width: 1180px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 2rem 1.25rem 3.5rem !important;
  box-sizing: border-box !important;
}

#categorias .col-full,
app-categorias-sistemas .col-full {
  width: 100% !important;
}

#categorias h1,
app-categorias-sistemas h1 {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.1 !important;
  color: var(--prod-green-deep) !important;
  -webkit-text-fill-color: var(--prod-green-deep) !important;
  margin: 0 0 1.75rem !important;
  text-align: left !important;
}

/* Grid no mesmo ritmo dos cards de produtos */
#categorias ul,
app-categorias-sistemas ul {
  list-style: none !important;
  margin: 1.5rem 0 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  width: 100% !important;
  justify-items: stretch !important;
}

@media (max-width: 1100px) {
  #categorias ul,
  app-categorias-sistemas ul {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 800px) {
  #categorias ul,
  app-categorias-sistemas ul {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 500px) {
  #categorias ul,
  app-categorias-sistemas ul {
    grid-template-columns: 1fr !important;
  }
}

/* Remove o “card antigo” do Angular no <li> */
html body #categorias li,
html body app-categorias-sistemas li {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 0 !important;
}

/* Card = mesmo visual de #produtos .produto-card */
html body #categorias li a,
html body app-categorias-sistemas li a {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 1rem 1.25rem !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  border: 1px solid rgba(12, 105, 55, 0.1) !important;
  border-radius: 20px !important;
  box-shadow:
    0 12px 32px rgba(8, 40, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: #0c6937 !important;
  -webkit-text-fill-color: #0c6937 !important;
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  text-align: center !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease !important;
  isolation: isolate;
}

html body #categorias li a:hover,
html body app-categorias-sistemas li a:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(12, 105, 55, 0.22) !important;
  box-shadow:
    0 20px 44px rgba(8, 40, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  color: #0c6937 !important;
  -webkit-text-fill-color: #0c6937 !important;
  filter: none;
}

/* Imagem full-bleed no topo do card (compensa o padding lateral do <a>) */
html body #categorias li a img,
html body app-categorias-sistemas li a img {
  width: calc(100% + 2rem) !important;
  max-width: none !important;
  height: 210px !important;
  object-fit: contain !important;
  padding: 1.25rem 1.1rem 0.75rem !important;
  margin: 0 -1rem 1rem !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(12, 105, 55, 0.08) !important;
  border-radius: 0 !important;
  flex-shrink: 0 !important;
  transition: transform 0.35s ease !important;
}

html body #categorias li a:hover img,
html body app-categorias-sistemas li a:hover img {
  transform: scale(1.03);
}

/* Título tipado como h4 dos produtos (texto direto no <a>) */
html body #categorias li a h4,
html body app-categorias-sistemas li a h4,
html body #categorias li a .sistema-card-title,
html body app-categorias-sistemas li a .sistema-card-title {
  font-family: var(--prod-display) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #0c6937 !important;
  -webkit-text-fill-color: #0c6937 !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-grow: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}
