.catalogoTotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cata_format {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cata_format img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
}

.cata_format h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.cata_format p {
  font-size: 14px;
  color: #555;
}

.botoes {
  display: flex;
  gap: 10px;
}

.botoes button {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.excluir {
  background: #ff4d4d;
  color: white;
}

.editar {
  background: #4da6ff;
  color: white;
}

.botoes button:hover {
  opacity: 0.85;
}