diff --git a/app/controllers/management/highlights_controller.rb b/app/controllers/management/highlights_controller.rb
index 967c8b2946752c6a4b13d7e610d0a7fd589a4a3a..355bbb983a278b237996da6a58613a44ee0aff40 100644
--- a/app/controllers/management/highlights_controller.rb
+++ b/app/controllers/management/highlights_controller.rb
@@ -24,14 +24,21 @@ class Management::HighlightsController < ManagementController
 
   def create
     render :action => 'new'
-    @name = params[:name]
-    @url = params[:url]
     db = OrientDb::HighlightRepository.new
-    db.insert_data(@name,@url)
+    db.insert_data(params[:name],params[:url])
 
+  end
+
+  def destroy
 
+    params[:name].each do |name|
+      db = OrientDb::HighlightRepository.new
+      db.destroy_data(name)
+    end
+    redirect_to management_highlights_index_path
   end
 
 
 
+
 end
diff --git a/app/repositories/orient_db/highlight_repository.rb b/app/repositories/orient_db/highlight_repository.rb
index 2fde09314516c44b28b67825d1ae90103c2999f9..870479c7c5a6b64940ad8afa82607d63f2a4f2c5 100644
--- a/app/repositories/orient_db/highlight_repository.rb
+++ b/app/repositories/orient_db/highlight_repository.rb
@@ -17,9 +17,10 @@ module OrientDb
         return nil
     end
 
-    def remove_data
-
-    #return @connection.command "DELETE FROM Highlight (name)"
+    def destroy_data(name)
+        return @connection.command "DELETE VERTEX Highlight where name = '#{name}'"
+      rescue
+        return nil
     end
 
   end
diff --git a/app/views/management/highlights/_form_delete.html.erb b/app/views/management/highlights/_form_delete.html.erb
index 13bebe30a1e7c5126362cacd7c882994bb02cb87..74f2c97ff82fa191c4bc12304d39d62bb3697a80 100644
--- a/app/views/management/highlights/_form_delete.html.erb
+++ b/app/views/management/highlights/_form_delete.html.erb
@@ -6,24 +6,28 @@
   <class="ls-title-2"><h3>Remover destaque</h3><br>
 
 
-  <fieldset>
+
+  <%= form_tag(:action => "destroy", :method => "get") do %>
+    <fieldset>
 <!-- Exemplo com Radio button -->
-<div class="ls-label col-md-5">
-  <p>Escolha os destaques a remover:</p>
-  <% @highlights.each do |highlight| %>
-    <label class="ls-label-text">
-      <input type="radio" name="plataforms">
-      <%= highlight['name'] %>
-    </label>
-  <%end%>
-</div>
-</fieldset>
+    <div class="ls-label col-md-5">
+      <p>Escolha os destaques a remover:</p>
+      <% @highlights.each do |highlight| %>
+        <label class="ls-label-text">
+          <input type="checkbox" name="name[]" value= <%= highlight['name'] %>>
+            <%= highlight['name'] %>
+          </label>
+      <%end%>
+    </div>
+  </fieldset>
 
+
+  <div class="ls-actions-btn">
+    <%= submit_tag "Salvar", class: "ls-btn" %>
+    <%= link_to "Cancelar", management_highlights_index_path, class: "ls-btn-danger" %>
+  </div>
+  <%end%>
 </div>
 
 
-<div class="ls-actions-btn">
-  <button class="ls-btn">Remover</button>
-  <%= link_to "Cancelar", management_highlights_index_path, class: "ls-btn-danger" %>
-</div>
 </body>
diff --git a/config/routes.rb b/config/routes.rb
index 4cf78d0b1e3c970cb281e57bb3af9ec1a446f91c..bf222848a97dac519ba60251aa3ebc3348cc2373 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -9,7 +9,7 @@ Rails.application.routes.draw do
   namespace :management do
     root 'welcome#index'
     post 'highlights/create'
-
+    post 'highlights/destroy'
   end
 
   root 'welcome#index'