.cat-bar{ 
  background:var(--azul);
  margin-top: 95px;
}

.cat-bar-inner {
  max-width: 1300px;
  margin:0 auto;
  display: flex;
  justify-content: center;
}

.cat-item {
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 129px;
  padding: 25px 20px 20px 20px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.cat-item:hover {
  cursor: pointer;
  background-color: #3d7786;
  transition-delay: 0.1s;
}

.cat-item img { 
  height: 42px;
  margin-bottom: 2px;
}

.cat-item span {
  color:#fff;
  font-size:10.5px;
  font-weight:700;
  text-align:center;
  letter-spacing:.2px;
  line-height:1.3;
}

.cat-item-ativo { background-color: #3d7786; }

.search-box .form-control{ border-color:#dee2e2; }

.search-box .btn-search{ 
  background-color:var(--verde);
  color:#fff;
  border-color:var(--verde); }

.search-box .btn-search:hover {
  background-color: var(--verde-escuro);
  border-color:var(--verde-escuro);
}

.side-titulo {
  background-color: var(--azul);
  color:#ffffff;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing:.4px;
  padding: 12px 16px;
  cursor: pointer;
}

.side-titulo-categoria {
  background-color: var(--verde);
}

.list-group-item {
  background-color:#eef0f0;
  border:none;
  border-bottom:1px solid #c9c9c9;
  font-size:12px;
  font-weight:600;
  color:var(--azul-escuro);
  border-radius:0;
}

.list-group-item a { font-size: 14.5px; }

.produtos-titulo {
  font-size: 34px;
  font-weight: 800;
  font-style: italic;
  color:var(--azul-escuro); 
}

.produto-card {
  box-shadow: 0 0 20px #ebedef;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 0px 20px 20px 20px;
  cursor: pointer;
}

.produto-card img { transition: transform .5s ease; }
.produto-card:hover img { transform: scale(1.08); }

.produto-imagem {
  height: 270px;
  padding: 15px;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.produto-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.produto-info h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a4566;
  line-height: 1.35;
  margin: 0;
}

.btn-produto {
  background-color: var(--verde-escuro);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-produto:hover {
  background-color: var(--verde);
  color: #ffffff;
}

.link-busca { margin-top: 10px; }
.link-busca a:hover { color: var(--azul-escuro); }
.espaco-loja { margin-bottom: 45px; padding-top: 225px; }
.scroll-remove.hide-scroll { display: none; }
.espaco-loja { margin-bottom: 45px; padding-top: 225px; }

#foto-principal {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.foto-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.img-thumbnail {
  border: 2px solid transparent;
  opacity: 0.5;
}

.img-thumbnail.active {
  border-color: var(--azul-escuro);
  opacity: 1;
}

.detalhes-item { 
  background-color: var(--azul);
  color: #ffffff;
  box-shadow: 0 0 20px #ebedef;
  border-radius: 6px;
  padding: clamp(2.4rem, 2.0833vw, 4rem);
}

.detalhes-produto { width: auto; }

.detalhes-produto td {
  padding: .25rem .5rem;
  color: #fff;
}

.detalhes-produto td:first-child {
  width: 90px;
  font-style: italic;
  white-space: nowrap;
}

@media (max-width: 992px) { 
  .espaco-loja { margin-bottom: 45px; padding-top: 65px; }
  .link-busca { margin-top: 0px; }
  .link-busca a, span { font-size: 12.5px; }
  .produto-card { padding: 5px; }
  .produto-imagem { height: 220px; }
  #foto-principal { height: 350px; }
  .nav-thumbnail { justify-content: center; }
  .foto-slide { background-position: center center; }
}