/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 1: VARIABLES GLOBALES
   Define la identidad visual completa del ecosistema DCEO.
   ============================================================ */

:root {

    /* ------------------------------------------------------------
       PALETA PRINCIPAL — Identidad de marca
       ------------------------------------------------------------ */
    --color-primary: #6A00FF;          /* Morado Maestro */
    --color-primary-light: #8C33FF;
    --color-primary-dark: #4B00B8;

    --color-secondary: #00C2FF;        /* Azul Activo */
    --color-secondary-light: #33D2FF;
    --color-secondary-dark: #0099CC;

    --color-accent: #FFB800;           /* Amarillo Élite */
    --color-accent-light: #FFD766;
    --color-accent-dark: #CC9300;

    /* ------------------------------------------------------------
       PALETA NEUTRA — Base del sistema
       ------------------------------------------------------------ */
    --color-black: #0D0D0D;
    --color-dark: #1A1A1A;
    --color-gray-1: #2A2A2A;
    --color-gray-2: #3A3A3A;
    --color-gray-3: #5A5A5A;
    --color-gray-4: #8A8A8A;
    --color-gray-5: #CFCFCF;
    --color-gray-6: #E8E8E8;
    --color-white: #FFFFFF;

    /* ------------------------------------------------------------
       ESTADOS — UX Inteligente
       ------------------------------------------------------------ */
    --color-success: #00C853;
    --color-success-light: #5CF28C;

    --color-warning: #FFB300;
    --color-warning-light: #FFD666;

    --color-danger: #FF3B30;
    --color-danger-light: #FF7A72;

    --color-info: #0091EA;
    --color-info-light: #4DB6FF;

    /* ------------------------------------------------------------
       TIPOGRAFÍA — Sistema tipográfico
       ------------------------------------------------------------ */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Tamaños base */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-xxl: 2rem;

    /* ------------------------------------------------------------
       ESPACIADO — Sistema de separación
       ------------------------------------------------------------ */
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;

    /* ------------------------------------------------------------
       RADIOS — Bordes redondeados
       ------------------------------------------------------------ */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 999px;

    /* ------------------------------------------------------------
       SOMBRAS — Profundidad premium
       ------------------------------------------------------------ */
    --shadow-soft: 0 2px 6px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.20);

    /* ------------------------------------------------------------
       TRANSICIONES — Microinteracciones
       ------------------------------------------------------------ */
    --transition-fast: 0.15s ease;
    --transition-md: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* ------------------------------------------------------------
       CONTENEDORES — Anchos máximos
       ------------------------------------------------------------ */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;
}

/* ============================================================
   FIN DEL BLOQUE 1 — VARIABLES GLOBALES
   ============================================================ */
   /* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 2: TIPOGRAFÍA
   Sistema tipográfico completo para todo el ecosistema DCEO.
   ============================================================ */

/* ------------------------------------------------------------
   1. Carga de fuentes (Inter + Poppins)
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ------------------------------------------------------------
   2. Configuración base del documento
   ------------------------------------------------------------ */
html, body {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-dark);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* ------------------------------------------------------------
   3. Titulares (Headings)
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin: 0 0 var(--space-md) 0;
    color: var(--color-black);
}

h1 { font-size: var(--text-xxl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }
h5 { font-size: var(--text-sm); }
h6 { font-size: var(--text-xs); }

/* ------------------------------------------------------------
   4. Texto general
   ------------------------------------------------------------ */
p {
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
    color: var(--color-gray-1);
}

small {
    font-size: var(--text-xs);
    color: var(--color-gray-3);
}

/* ------------------------------------------------------------
   5. Enlaces
   ------------------------------------------------------------ */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ------------------------------------------------------------
   6. Listas
   ------------------------------------------------------------ */
ul, ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

li {
    margin-bottom: var(--space-xs);
}

/* ------------------------------------------------------------
   7. Negritas y énfasis
   ------------------------------------------------------------ */
strong, b {
    font-weight: 600;
    color: var(--color-black);
}

em, i {
    font-style: italic;
}

/* ============================================================
   FIN DEL BLOQUE 2 — TIPOGRAFÍA
   ============================================================ */
/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 3: LAYOUT Y ESPACIADO
   Estructura visual, contenedores y respiración del sistema.
   ============================================================ */

/* ------------------------------------------------------------
   1. Contenedores principales
   ------------------------------------------------------------ */
.container-sm  { max-width: var(--container-sm);  margin: 0 auto; padding: 0 var(--space-md); }
.container-md  { max-width: var(--container-md);  margin: 0 auto; padding: 0 var(--space-md); }
.container-lg  { max-width: var(--container-lg);  margin: 0 auto; padding: 0 var(--space-md); }
.container-xl  { max-width: var(--container-xl);  margin: 0 auto; padding: 0 var(--space-md); }
.container-xxl { max-width: var(--container-xxl); margin: 0 auto; padding: 0 var(--space-md); }

/* ------------------------------------------------------------
   2. Secciones verticales
   ------------------------------------------------------------ */
.section-xs  { padding: var(--space-sm) 0; }
.section-sm  { padding: var(--space-md) 0; }
.section-md  { padding: var(--space-lg) 0; }
.section-lg  { padding: var(--space-xl) 0; }
.section-xl  { padding: var(--space-xxl) 0; }

/* ------------------------------------------------------------
   3. Sistema de espaciado utilitario
   ------------------------------------------------------------ */

/* Margen */
.m-0  { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.mt-xs { margin-top: var(--space-xs) !important; }
.mt-sm { margin-top: var(--space-sm) !important; }
.mt-md { margin-top: var(--space-md) !important; }
.mt-lg { margin-top: var(--space-lg) !important; }
.mt-xl { margin-top: var(--space-xl) !important; }

.mb-xs { margin-bottom: var(--space-xs) !important; }
.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }

/* Padding */
.p-0  { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.pt-xs { padding-top: var(--space-xs) !important; }
.pt-sm { padding-top: var(--space-sm) !important; }
.pt-md { padding-top: var(--space-md) !important; }
.pt-lg { padding-top: var(--space-lg) !important; }
.pt-xl { padding-top: var(--space-xl) !important; }

.pb-xs { padding-bottom: var(--space-xs) !important; }
.pb-sm { padding-bottom: var(--space-sm) !important; }
.pb-md { padding-bottom: var(--space-md) !important; }
.pb-lg { padding-bottom: var(--space-lg) !important; }
.pb-xl { padding-bottom: var(--space-xl) !important; }

/* ------------------------------------------------------------
   4. Sistema de alineación
   ------------------------------------------------------------ */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.flex-row    { flex-direction: row; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between{ display: flex; justify-content: space-between; align-items: center; }
.flex-start  { display: flex; justify-content: flex-start; align-items: center; }
.flex-end    { display: flex; justify-content: flex-end; align-items: center; }

/* ------------------------------------------------------------
   5. Grid utilitario
   ------------------------------------------------------------ */
.grid        { display: grid; gap: var(--space-md); }
.grid-2      { grid-template-columns: repeat(2, 1fr); }
.grid-3      { grid-template-columns: repeat(3, 1fr); }
.grid-4      { grid-template-columns: repeat(4, 1fr); }
.grid-auto   { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ------------------------------------------------------------
   6. Contenedores visuales
   ------------------------------------------------------------ */
.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
}

.card-lg {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   FIN DEL BLOQUE 3 — LAYOUT Y ESPACIADO
   ============================================================ */
/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 4: COMPONENTES
   Botones, badges, inputs, formularios y elementos interactivos.
   ============================================================ */

/* ------------------------------------------------------------
   1. Botones
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-md);
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
    border: none;
    text-decoration: none;
    color: var(--color-white);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Botón primario */
.btn-primary {
    background: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

/* Botón secundario */
.btn-secondary {
    background: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary-dark);
}

/* Botón de acento */
.btn-accent {
    background: var(--color-accent);
    color: var(--color-black);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
}

/* Botón deshabilitado */
.btn-disabled {
    background: var(--color-gray-3);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ------------------------------------------------------------
   2. Badges (etiquetas)
   ------------------------------------------------------------ */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-white);
}

.badge-primary   { background: var(--color-primary); }
.badge-secondary { background: var(--color-secondary); }
.badge-accent    { background: var(--color-accent); color: var(--color-black); }
.badge-success   { background: var(--color-success); }
.badge-warning   { background: var(--color-warning); color: var(--color-black); }
.badge-danger    { background: var(--color-danger); }

/* ------------------------------------------------------------
   3. Inputs y formularios
   ------------------------------------------------------------ */
.input, input[type="text"], input[type="email"], input[type="number"], input[type="password"], textarea, select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-4);
    background: var(--color-white);
    font-size: var(--text-md);
    transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.input:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(106, 0, 255, 0.15);
    outline: none;
}

/* ------------------------------------------------------------
   4. Alertas
   ------------------------------------------------------------ */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-md);
    font-weight: 500;
}

.alert-success { background: var(--color-success-light); color: var(--color-dark); }
.alert-warning { background: var(--color-warning-light); color: var(--color-dark); }
.alert-danger  { background: var(--color-danger-light);  color: var(--color-dark); }
.alert-info    { background: var(--color-info-light);    color: var(--color-dark); }

/* ------------------------------------------------------------
   5. Contenedores interactivos
   ------------------------------------------------------------ */
.hover-card {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   FIN DEL BLOQUE 4 — COMPONENTES
   ============================================================ */
/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 5: PATRONES
   Estructuras repetibles para headers, footers y secciones clave.
   ============================================================ */

/* ------------------------------------------------------------
   1. Header principal
   ------------------------------------------------------------ */
.header-maestro {
    width: 100%;
    background: var(--color-primary);
    padding: var(--space-md) 0;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.header-maestro .logo {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: 600;
}

.header-maestro nav a {
    color: var(--color-white);
    margin-left: var(--space-md);
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.header-maestro nav a:hover {
    opacity: 0.8;
}

/* ------------------------------------------------------------
   2. Footer maestro
   ------------------------------------------------------------ */
.footer-maestro {
    width: 100%;
    background: var(--color-dark);
    color: var(--color-gray-5);
    padding: var(--space-xl) 0;
    text-align: center;
    font-size: var(--text-sm);
}

.footer-maestro a {
    color: var(--color-secondary);
    font-weight: 500;
}

.footer-maestro a:hover {
    color: var(--color-secondary-light);
}

/* ------------------------------------------------------------
   3. Sección destacada (hero)
   ------------------------------------------------------------ */
.hero-maestro {
    padding: var(--space-xxl) 0;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: var(--color-white);
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-maestro h1 {
    font-size: var(--text-xxl);
    margin-bottom: var(--space-md);
}

.hero-maestro p {
    font-size: var(--text-lg);
    opacity: 0.9;
}

/* ------------------------------------------------------------
   4. Barra superior informativa
   ------------------------------------------------------------ */
.topbar-maestro {
    width: 100%;
    background: var(--color-black);
    color: var(--color-gray-5);
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    text-align: center;
}

/* ------------------------------------------------------------
   5. Sección con fondo suave
   ------------------------------------------------------------ */
.section-soft {
    background: var(--color-gray-6);
    padding: var(--space-xl) 0;
    border-radius: var(--radius-lg);
}

/* ------------------------------------------------------------
   6. Sección con borde premium
   ------------------------------------------------------------ */
.section-bordered {
    padding: var(--space-xl);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

/* ------------------------------------------------------------
   7. Tarjetas de contenido maestro
   ------------------------------------------------------------ */
.card-maestro {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card-maestro:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   FIN DEL BLOQUE 5 — PATRONES
   ============================================================ */
/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 6: MÓDULOS
   Componentes completos para operaciones, datos y contenido.
   ============================================================ */

/* ------------------------------------------------------------
   1. Tablas premium
   ------------------------------------------------------------ */
.table-maestro {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-maestro thead {
    background: var(--color-primary);
    color: var(--color-white);
}

.table-maestro th {
    padding: var(--space-md);
    font-weight: 600;
    text-align: left;
    font-size: var(--text-sm);
}

.table-maestro td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-gray-6);
    font-size: var(--text-md);
}

.table-maestro tr:hover td {
    background: var(--color-gray-6);
}

/* ------------------------------------------------------------
   2. Listas operativas
   ------------------------------------------------------------ */
.list-maestro {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-maestro li {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-maestro li:hover {
    box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------
   3. Tarjetas de producto
   ------------------------------------------------------------ */
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.product-card .title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-card .price {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--color-primary);
}

/* ------------------------------------------------------------
   4. Paneles informativos
   ------------------------------------------------------------ */
.panel-maestro {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.panel-maestro h3 {
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.panel-maestro p {
    margin-bottom: var(--space-sm);
}

/* ------------------------------------------------------------
   5. Módulo de datos (estadísticas)
   ------------------------------------------------------------ */
.stats-maestro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.stats-maestro .stat {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stats-maestro .stat h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.stats-maestro .stat p {
    font-size: var(--text-sm);
    color: var(--color-gray-3);
}

/* ------------------------------------------------------------
   6. Módulo de pasos (workflow)
   ------------------------------------------------------------ */
.steps-maestro {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.step-item .number {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-item .text {
    font-size: var(--text-md);
}

/* ============================================================
   FIN DEL BLOQUE 6 — MÓDULOS
   ============================================================ */
/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 7: RESPONSIVE
   Ajustes para móviles, tablets y pantallas grandes.
   ============================================================ */

/* ------------------------------------------------------------
   1. Móviles (≤ 480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }

    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding: 0 var(--space-sm);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-maestro {
        padding: var(--space-xl) var(--space-md);
    }

    .product-card {
        padding: var(--space-md);
    }

    .panel-maestro {
        padding: var(--space-lg);
    }

    .steps-maestro {
        gap: var(--space-md);
    }
}

/* ------------------------------------------------------------
   2. Tablets (481px – 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-maestro h1 {
        font-size: 1.8rem;
    }

    .hero-maestro p {
        font-size: 1.1rem;
    }

    .product-card {
        padding: var(--space-lg);
    }
}

/* ------------------------------------------------------------
   3. Laptops (769px – 1200px)
   ------------------------------------------------------------ */
@media (max-width: 1200px) {

    .container-xl,
    .container-xxl {
        padding: 0 var(--space-lg);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ------------------------------------------------------------
   4. Pantallas grandes (≥ 1600px)
   ------------------------------------------------------------ */
@media (min-width: 1600px) {

    body {
        font-size: 18px;
    }

    .container-xxl {
        max-width: 1500px;
    }

    .hero-maestro {
        padding: var(--space-xxl) var(--space-xl);
    }
}

/* ============================================================
   FIN DEL BLOQUE 7 — RESPONSIVE
   ============================================================ */
/* ============================================================
   THEME MAESTRO V1.0 — BLOQUE 8: DOCUMENTACIÓN INTERNA
   Este bloque no afecta estilos. Sirve como guía estructural.
   ============================================================ */

/*
   ESTRUCTURA COMPLETA DEL THEME MAESTRO V1.0
   ------------------------------------------

   1. VARIABLES GLOBALES
      - Paleta de colores
      - Tipografía
      - Espaciado
      - Sombras
      - Radios
      - Transiciones
      - Contenedores

   2. TIPOGRAFÍA
      - Base del documento
      - Headings
      - Texto general
      - Enlaces
      - Listas
      - Negritas y énfasis

   3. LAYOUT Y ESPACIADO
      - Contenedores
      - Secciones verticales
      - Sistema de espaciado utilitario
      - Flex utilitario
      - Grid utilitario
      - Contenedores visuales

   4. COMPONENTES
      - Botones
      - Badges
      - Inputs y formularios
      - Alertas
      - Hover cards

   5. PATRONES
      - Header maestro
      - Footer maestro
      - Hero maestro
      - Topbar
      - Secciones suaves
      - Secciones bordeadas
      - Tarjetas maestro

   6. MÓDULOS
      - Tablas premium
      - Listas operativas
      - Tarjetas de producto
      - Paneles informativos
      - Estadísticas
      - Pasos (workflow)

   7. RESPONSIVE
      - Móviles
      - Tablets
      - Laptops
      - Pantallas grandes

   8. DOCUMENTACIÓN INTERNA
      - Estructura
      - Notas
      - Roadmap

   ROADMAP FUTURO (V2, V3…)
   -------------------------
   - Animaciones avanzadas
   - Modo oscuro automático
   - Componentes dinámicos
   - Sistema de iconografía
   - Variables de accesibilidad
   - Layouts inteligentes
   - Integración con módulos DCEO

   FIN DEL THEME MAESTRO V1.0
*/
