diff --git a/app/assets/stylesheets/application/learning_objects.scss b/app/assets/stylesheets/application/learning_objects.scss
index a6fb67e1a6ecd30625322f9ab5d4ebd8c8154214..63efc2f8113c7089d684053c26db5095c6127d95 100644
--- a/app/assets/stylesheets/application/learning_objects.scss
+++ b/app/assets/stylesheets/application/learning_objects.scss
@@ -80,13 +80,15 @@ $background-grey: #e7e7e8;
 
     .actions {
       text-align: center;
-      color: #F05421;
-      font-weight: 400;
 
       .action {
         margin-top: 10px;
         padding: 0;
 
+        a {
+          color: #F05421;
+          font-weight: 400;
+        }
         img {
           width: 40px;
           height: 40px;
diff --git a/app/models/learning_object.rb b/app/models/learning_object.rb
index b28f497a28be4e68517e93f9ae4d0448bbcbbdd8..70cb8ccf6231ac51aa197ef0ccb77b54d337c7ba 100644
--- a/app/models/learning_object.rb
+++ b/app/models/learning_object.rb
@@ -52,6 +52,14 @@ class LearningObject
     end
   end
 
+  def get_retrievelink
+    get_bitstream_retrievelink_of "ORIGINAL"
+  end
+
+  def get_filename
+    get_bitstream_filename_of "ORIGINAL"
+  end
+
   private
 
   def defaults
diff --git a/app/views/learning_objects/show.html.erb b/app/views/learning_objects/show.html.erb
index efb4720e63e728d46db928602f74678594d438a2..b27ec2fa4410f3c1f406584295e46c67472424cc 100644
--- a/app/views/learning_objects/show.html.erb
+++ b/app/views/learning_objects/show.html.erb
@@ -74,8 +74,10 @@
       </div>
       <div class="actions">
         <div class="col-md-3 action">
-          <%= image_tag "icons/download.png", alt: "Download do objeto" %>
-          <h6>salvar no computador</h6>
+          <a href="<%= @learning_object.get_retrievelink %>">
+            <%= image_tag "icons/download.png", alt: "Download do objeto" %>
+            <h6>salvar no computador</h6>
+          </a>
         </div>
         <div class="col-md-3 action">
           <%= image_tag "icons/collection-add.png", alt: "Adicionar à coleção" %>