.portal-categoria3-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  background-color: #8b0000; /* vermelho escuro */
  border-radius: 16px;
}

.portal-categoria3-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-categoria3-item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portal-categoria3-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 10px;
}

.portal-categoria3-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portal-categoria3-titulo h4 {
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  color: #5c0000;
  font-family: "Fira Sans Condensed", sans-serif;
}

.portal-categoria3-titulo-bloco {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: "Fira Sans Condensed", sans-serif;
  text-transform: uppercase;
}
