Government Pavilion, C/ Padre Herrera s/n
Post Office Box 456
38200, San Cristobal de La Laguna
Santa Cruz de Tenerife - Spain
Switchboard Tel.: (+34) 922 31 90 00
Hours: Mon, 8:00 a.m. to 9:00 p.m.
This micro-credential equips individuals to analyze business situations, identifying problems, opportunities, and strategic factors through diagnostic methodologies. The program addresses the design of innovative and viable solutions, as well as the development and communication of professional proposals, assessing their impact on competitiveness, sustainability, and efficiency.
A university degree is not required to access this micro-credential. However, students wishing to access it must meet the following requirements:
Block 1. Introduction to intrapreneurship and presentation of the Business Challenge
Block 2. Strategic diagnosis applied to the Business Challenge
Block 3. Designing innovative solutions for the business challenge
Block 4. Organizational and economic viability of the proposals
Block 5. Professional communication and proposal presentation
The training activities to be carried out during the delivery of the micro-credential will be:
Regarding the way to organize the teaching to achieve the objectives set out in the micro-credential, the organizational modality summarized below will be followed:
The microcredential will have an evaluation system (ES) based on the following assessment tests:
Credits: 2 ECTS
Duration: 18/05/2026 – 29/05/2026
Teaching modality: Blended learning
Location: Virtual Campus University of La Laguna
Training 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», for the year 2025, as well as by the CEOE-Tenerife Chair of Business and Labor Relations ULL.
Short courses available in various formats (in-person, online, or hybrid). Ideal for learning without interrupting your professional life.
Content created and delivered by professionals and experts in the field, designed for immediate application.
Endorsed by the University of La Laguna. You will receive an official ECTS certificate, valid in the European Higher Education Area.

Full Professor of Business Organization at the University of La Laguna (ULL). Lecturer in Business Management, Human Behavior in Organizations and Entrepreneurship.,
both at the ULL and for companies and institutions. Director of the group of
ULL research on human behavior internal and external to the organization.

Accredited PhD in Education, consultant in strategy and innovation and
academic coordinator with extensive experience in the design and management of
Projects related to entrepreneurship, intrapreneurship, digital transformation, and university-business knowledge transfer. Has performed the following functions:
Management and leadership in innovation ecosystems, including parks
technological, and has participated in public and European programs focused on business development, training and competitiveness.

Economist with a degree from the University of La Laguna, a Master's in Senior Management from ESADE, and extensive additional training in
Digitalization, labor law, and management skills. She has over 15 years of experience at CEOE-Tenerife, where she currently serves as Secretary General, having previously held the positions of manager and technical advisor. She has actively participated in numerous national and regional organizations and committees.
related to economics, employment, and public policy.

Psychologist with over 10 years of experience in people development and organizational environments, I have prepared reports, defended proposals and presented results to management teams in companies up to 750 employees.
people (Leroy Merlin, Fred Olsen, Spring Hotels). As a certified teacher,
I combine practical tools with a psychological perspective applied to the
Professional communication: I work not only on what to say, but also on how to sustain the presentation, manage nerves, and receive feedback.

Technician in the Entrepreneurship Service of the University
from La Laguna, with experience in training and support to
Entrepreneurs and SMEs. Specialized in active methodologies such as Design
Thinking works on entrepreneurial culture in the classroom through practical, participatory approaches oriented towards the development of real initiatives.

// Variables comunes (mejoramos el encoding para email) const pageUrl = window.location.href; const pageTitle = document.title;
// Funciones de compartir (las de redes con window.open siguen iguales, pero agregamos return false para evitar salto de página) 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'); }
// Función para compartir por email (copia al portapapeles + fallback Gmail) function shareByEmail() { const pageUrl = window.location.href; const pageTitle = document.title.trim();
// Texto listo para pegar en email (con salto de línea) const emailText = `${pageTitle}\n${pageUrl}\n\nTe comparto este artículo interesante.`;
// Intentamos copiar al portapapeles if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(emailText).then(() => { // Mensaje de éxito (puedes usar alert, toast o un div temporal) alert('¡Enlace copiado al portapapeles!\nPégalo en tu email (Ctrl+V).'); }).catch(err => { console.error('Error al copiar:', err); fallbackToGmail(); }); } else { // Si no soporta clipboard (navegadores muy viejos) fallbackToGmail(); } }
function fallbackToGmail() { const pageUrl = encodeURIComponent(window.location.href); const pageTitle = encodeURIComponent(document.title); const body = encodeURIComponent(document.title + '\n' + window.location.href + '\n\nTe comparto esto:');
// Abre compose de Gmail window.open(`https://mail.google.com/mail/?view=cm&fs=1&su=${pageTitle}&body=${body}`, '_blank', 'width=800,height=600'); }