diff --git a/frontend/src/components/AppHeader.vue b/frontend/src/components/AppHeader.vue index 9f815fe..b7f7460 100644 --- a/frontend/src/components/AppHeader.vue +++ b/frontend/src/components/AppHeader.vue @@ -87,9 +87,7 @@ -
- SIB Logo -
+

{{ t('header.title') }}

@@ -207,28 +205,27 @@ const handleLogout = () => { } } -.header-title-container { - display: flex; - align-items: center; - justify-content: center; +.header-title { + font-size: 24px; + font-weight: 800; + letter-spacing: -0.04em; + color: var(--text-primary); + margin: 0; + text-align: center; grid-column: 2; cursor: pointer; - height: 40px; transition: all 0.3s ease; + text-transform: uppercase; } -.header-logo-img { - height: 100%; - max-width: 140px; - object-fit: contain; +:global(.dark) .header-title { + color: var(--active-color); + text-shadow: 0 0 15px rgba(254, 231, 21, 0.3); } -:global(.dark) .header-logo-img { - filter: drop-shadow(0 0 10px rgba(254, 231, 21, 0.2)); -} - -.header-title-container:hover { - transform: scale(1.05); +.header-title:hover { + transform: scale(1.02); + letter-spacing: 0.05em; } diff --git a/frontend/src/views/AdminPanel.vue b/frontend/src/views/AdminPanel.vue index fc1ee47..1753d98 100644 --- a/frontend/src/views/AdminPanel.vue +++ b/frontend/src/views/AdminPanel.vue @@ -3,8 +3,7 @@
SISTEMA CENTRAL

Panel de Control

- SIB Logo -

Ecosistema Administrativo Central

+

Ecosistema Administrativo SIB

@@ -147,20 +146,12 @@ h1 { margin: 0; } -.admin-brand-header { - height: 50px; - max-width: 200px; - margin: 0 auto 10px; - object-fit: contain; -} - .subtitle { color: var(--text-secondary); - font-size: 0.9rem; + font-size: 1rem; font-weight: 500; - margin-top: 2px; + margin-top: 6px; letter-spacing: 0.05em; - text-transform: uppercase; } .dashboard-sections { diff --git a/frontend/src/views/AuthView.vue b/frontend/src/views/AuthView.vue index 09dc54b..f886e1f 100644 --- a/frontend/src/views/AuthView.vue +++ b/frontend/src/views/AuthView.vue @@ -46,7 +46,7 @@ const toggleAuth = () => {
- SIB Logo +

SIB

{{ t('auth.brandingSubtitle') }}

@@ -69,7 +69,7 @@ const toggleAuth = () => {
- +

SIB

@@ -192,9 +192,15 @@ const toggleAuth = () => { filter: drop-shadow(0 0 20px rgba(254, 231, 21, 0.4)); } -.brand-title-img { - width: 280px; - filter: drop-shadow(0 0 15px rgba(254, 231, 21, 0.3)); +.brand-title { + font-size: 5rem; + font-weight: 800; + margin: 0; + letter-spacing: -0.04em; + background: linear-gradient(to right, #fff, var(--active-color)); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; } .brand-tagline { diff --git a/frontend/src/views/RoutesView.vue b/frontend/src/views/RoutesView.vue index 9d8b28d..62f7db9 100644 --- a/frontend/src/views/RoutesView.vue +++ b/frontend/src/views/RoutesView.vue @@ -85,7 +85,7 @@ const correlimientos = computed(() => { - SIB Logo +

SIB

diff --git a/frontend/src/views/StrategicAnalytics.vue b/frontend/src/views/StrategicAnalytics.vue index 6b9ded2..0ae5296 100644 --- a/frontend/src/views/StrategicAnalytics.vue +++ b/frontend/src/views/StrategicAnalytics.vue @@ -8,11 +8,8 @@
INTELIGENCIA ESTRATÉGICA
-
- -

Centro de Operaciones

-
-

Análisis estratégico y rendimiento de red

+

Centro de Operaciones

+

Análisis segmentado de rendimiento SIB

@@ -634,29 +631,8 @@ onMounted(async () => { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(254, 231, 21, 0.3); } -.analytics-header-branding { - display: flex; - align-items: center; - justify-content: center; - gap: 20px; - margin-bottom: 2px; -} - -.analytics-logo { - height: 44px; - object-fit: contain; -} - -h1 { font-size: 2.2rem; font-weight: 900; margin: 0; letter-spacing: -0.04em; } - -.subtitle { - color: var(--text-secondary); - margin-top: 4px; - text-transform: uppercase; - font-size: 0.85rem; - letter-spacing: 0.1em; - font-weight: 600; -} +h1 { font-size: 2.2rem; font-weight: 900; margin: 0; } +.subtitle { color: var(--text-secondary); margin-top: 6px; } /* TABS */ .tabs-control { display: flex; gap: 12px; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }