Human rights and hate crimes against the LGBTIQA+ Community: Legal perspective and criminal protection

Human rights and hate crimes against the LGBTIQA+ Community: Legal perspective and criminal protection

Overview

This micro-credential focuses on the analysis of the rights of the LGBTIQA+ community within the conceptual and legal framework of international human rights. It addresses in detail the administrative and criminal sanction systems to ensure an effective response to violations of these rights, and provides training in the identification of and legal action against hate crimes related to sexual orientation, gender identity or expression, and sex characteristics.

Goals

  • To analyze and understand the importance of linking and grounding the rights of the LGBTIQA+ community within the conceptual and legal framework of Human Rights at the level
    international.
  • Examine in detail the current administrative and criminal sanction systems to respond effectively to violations of the rights of the LGBTIQA+ community.
  • To provide training in the approach, identification and legal response to hate crimes motivated by sexual orientation, gender identity or expression and sex characteristics.

Access requirements

Students must be between 25 and 64 years old on the date the training begins.

A university degree will not be required to access this micro-credential.

However, the student who wishes to gain admission must meet the following admission requirements:

  • Baccalaureate.
  • Higher vocational training cycle (senior technician).

Academic program

Contents

  1. LGBTIQA+ rights as human rights: supranational protection of
    sexual, family and gender diversity.
  2. Hate crimes based on sexual orientation, gender identity or expression, and characteristics
    sexual rights: legal framework and challenges for its improvement.
  3. The sanctioning regimes of the laws for the real and effective equality of people
    LGBTIQA+: special reference to conversion therapies and female genital mutilation of babies
    intersex.

Methodology and activities

  • Theoretical classes: expository, explanatory or demonstration sessions of the contents and knowledge.
  • Independent work: independent and self-regulated activity of the student based on the documentation and guidelines proposed in the subject, preparation of classes and exams, preparation of final reports, internship reports, etc.
  • Tutoring (individual, group…): activity in which the teaching staff attends to, facilitates and guides one or more students in the training process.
  • Assessment: continuous assessment tests and final exams. Tests may be in person or online, and may be written, oral, or consist of practical exercises.

The methodology will be as follows:

  • Lectures/expository method: presentation or explanation by the teaching staff.
  • Evaluation: written tests, oral tests, practical tests, etc.
  • Tutoring: instruction period in which teachers and students interact with the aim of reviewing and discussing materials and topics presented in class.
  • Active methodologies: cooperative learning, project-based learning, flipped classroom, service learning, game-based learning, case studies, problem solving, etc.

They are aimed at making learning a participatory process and are based on student agency.

Evaluation criteria

  • Objective tests (true/false, multiple choice, test-type, fill-in-the-blank, ordering, etc.): These are measurement instruments that allow for the evaluation of knowledge, skills, performance, aptitudes, etc. The answers are closed-ended, thus promoting objectivity during the scoring process.
  • Case studies, exercises and problems: tests in which students must solve, in a reasoned manner, within a certain time, and according to the established criteria, the cases, exercises or problems posed by the teaching staff, with the aim of applying the knowledge acquired.

General information

Credits: 3

Duration: 16/03/2026-29/05/2026

Teaching modality: Virtual

Location: Virtual Classroom

Registration fee: €65.25

Valued at €217.50

Registration
More info and registration help

The cost of tuition for this Microcredential will be subsidized by the 'Plan for the development of university microcredentials', investment 6 of component 21 of the Addendum to the 'Recovery, Transformation and Resilience Plan', financed by the European Union – Next Generation EU, year 2025.

Flexibility

Short courses available in various formats (in-person, online, or hybrid). Ideal for learning without interrupting your professional life.

Employability

Content created and delivered by professionals and experts in the field, designed for immediate application.

Certification

Endorsed by the University of La Laguna. You will receive an official ECTS certificate, valid in the European Higher Education Area.

Teaching staff

Sergio Siverio Luis

Doctor of Law with summa cum laude distinction and international doctorate mention, with a doctoral thesis on the constitutional foundations of gender self-determination for trans people. Assistant Professor of Constitutional Law at the University of La Laguna since 2021.

Daniel López Rubio

He holds a degree in Law and Political Science and a Master's degree from Carlos III University. He has worked as a legal consultant and is currently a doctoral candidate at the same university, researching the relationship between constitutional justice and direct democracy. He is a Professor of Constitutional Law.

Share this microcredential

// Common variables (we improved the encoding for email) const pageUrl = window.location.href; const pageTitle = document.title; // Sharing functions (those for social networks with window.open remain the same, but we added return false to avoid page breaks) function shareFacebook() { window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=400'); } function shareLinkedIn() { window.open(`https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=500'); } function shareTelegram() { window.open(`https://t.me/share/url?url=${encodeURIComponent(pageUrl)}&text=${encodeURIComponent(pageTitle)}`, '_blank', 'width=600,height=400'); } function shareWhatsApp() { window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(pageTitle + ' ' + pageUrl)}`, '_blank'); } // Email share function (copy to clipboard + Gmail fallback) function shareByEmail() { const pageUrl = window.location.href; const pageTitle = document.title.trim(); // Text ready to paste into email (with line breaks) const emailText = `${pageTitle}\n${pageUrl}\n\nI'm sharing this interesting article with you.`; // We try to copy to the clipboard if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(emailText).then(() => { // Success message (you can use alert, toast, or a temporary div) alert('Link copied to clipboard!\nPaste it into your email (Ctrl+V).'); }).catch(err => { console.error('Error copying:', err); fallbackToGmail(); }); } else { // If clipboard is not supported (very old browsers) fallbackToGmail(); } } function fallbackToGmail() { const pageUrl = encodeURIComponent(window.location.href); const pageTitle = encodeURIComponent(document.title); const body = encodeURIComponent(document.title + '\n' + window.location.href + '\n\nI'll share this with you:'); // Open Gmail compose window.open(`https://mail.google.com/mail/?view=cm&fs=1&su=${pageTitle}&body=${body}`, '_blank', 'width=800,height=600'); }