/* =========================================================
   1. VARIÁVEIS DE DESIGN (PALETA WALL STREET)
   ========================================================= */
:root {
	--hub-navy: #0a1a2f;		
    --hub-gold: #b78c4a;      
    --hub-bg: #f5f7fa;      
    --hub-gray-50: #f8fafc;
    --hub-gray-100: #edf2f7;
    --hub-gray-200: #e2e8f0;
    --hub-gray-300: #cbd5e0;
    --hub-gray-400: #a0aec0;
    --hub-gray-500: #718096;
    --hub-gray-600: #4a5568;
    --hub-gray-700: #2d3748;	
    --hub-green: #059669;
	--hub-white: #FFFFFF;
    --hub-red: #b91c1c;     
    --hub-yellow: #b45309; 
	--hub-border: #e2e8f0;
    --hub-muted: #64748b;
    --hub-up: #059669;
    --hub-gold-light: #d4af37;
    --hub-gold-bright: #e6c067;
    --hub-navy-deep: #071424;
	--success: #16a34a;
    --danger: #dc2626;
    --warning: var(--hub-yellow);	
	
	/* PALETA CALENDAR E NEWS */
    --ws-navy: #0f172a;
    --ws-blue-dark: #1e293b;
    --ws-gold: #C5A059;        
    --ws-gold-light: #eecda3;
    --ws-text: #334155;
    --ws-text-light: #64748b;
    --ws-bg: #ffffff;
    --ws-border: #cbd5e1;
    --ws-green: #10b981;
    --ws-red: #ef4444;
    --ws-yellow: #f59e0b;
    --ws-gray-bg: #f8fafc;	
	
    --widget-bg-start: #0d1b3a; 
    --widget-bg-end: #1a2d5e;
    --widget-gold: #C5A059;
    --widget-text: #ffffff;	
	
    --react-gold: #C5A059;
    --react-navy: #0f172a;
    --react-bg: #f8fafc;
    --react-border: #e2e8f0;

    --efx-navy: #0f172a;      
	--efx-gold: #C5A059;     
    --efx-gold-light: #eecda3;
    --efx-bg: #ffffff;
    --efx-text: #334155;     
    --efx-border: #e2e8f0;	

	    /* Otimização LCP - Sombras mínimas no estado inicial */
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-card: 0 4px 6px -2px rgba(0, 20, 40, 0.05);
    
    /* Tipografia otimizada */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Inter', 'SF Mono', Monaco, monospace;
}

/* =========================================================
   2. CONTAINER GERAL DO TERMINAL
   ========================================================= */
.expertfx-terminal {
    background: #fff;
    border: 1px solid var(--hub-border);
    border-top: 4px solid var(--hub-gold);
    border-radius: 2px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* =========================================================
   3. HEADER E BARRA DE STATUS
   ========================================================= */
.efx-header-bar {
    padding: 10px 20px;
    border-bottom: 1px solid var(--hub-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.efx-brand { 
    font-weight: 900; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    color: var(--hub-navy); 
    font-size: 12px; 
}
.efx-status { 
    font-size: 10px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--hub-muted); 
    display: flex; 
    align-items: center; 
}
.status-dot { 
    width: 7px; height: 7px; 
    background: var(--hub-up); 
    border-radius: 50%; 
    margin-right: 6px; 
    animation: efx-pulse 2s infinite; 
}
@keyframes efx-pulse { 0% {opacity: 1;} 50% {opacity: 0.4;} 100% {opacity: 1;} }

/* =========================================================
   4. GRID ESTRUTURAL
   ========================================================= */
.efx-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    min-height: 400px;
    background: var(--hub-border);
    gap: 1px;
}

/* =========================================================
   5. SEÇÃO HERO (ESQUERDA)
   ========================================================= */
.efx-hero {
    position: relative;
    overflow: hidden;
    background: var(--hub-navy);
}
.efx-full-link { display: block; height: 100%; width: 100%; color: white !important; text-decoration: none; }
.efx-hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.efx-hero-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1s ease; opacity: 0.7;
}
.efx-hero:hover .efx-hero-img { transform: scale(1.03); opacity: 0.6; }

.efx-hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,23,42,1) 0%, rgba(15,23,42,0.6) 50%, transparent 100%);
    z-index: 1;
}

.efx-hero-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px; box-sizing: border-box; z-index: 2;
}

.efx-hero-title { font-size: 22px; line-height: 1.25; text-shadow: 0 2px 10px rgba(0,0,0,0.9); margin-bottom: 10px; }
.efx-hero-desc { font-size: 13px; color: #e2e8f0; -webkit-line-clamp: 4; text-shadow: 0 1px 4px rgba(0,0,0,0.9); opacity: 0.95; }

/* =========================================================
   6. SISTEMA DE PROTEÇÃO (BLUR & LOCKED)
   ========================================================= */
.efx-blur-thumb { width: 100%; height: 100%; object-fit: cover; filter: blur(8px); opacity: 0.8; }
.efx-hero-bg.locked { filter: blur(10px); transform: scale(1.02); }

.efx-glass-lock {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px; border-radius: 4px; margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
}
.efx-lock-icon {
    width: 32px; height: 32px; background: var(--hub-gold); color: #000;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    font-size: 12px; flex-shrink: 0;
}
.efx-blur-line {
    font-size: 13px; color: rgba(255,255,255,0.4);
    filter: blur(3px); user-select: none; white-space: nowrap; overflow: hidden;
}

/* =========================================================
   7. BADGES E TAGS (PREMIUM & VIP)
   ========================================================= */
.efx-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.efx-tag-main { 
    background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); 
    font-size: 9px; font-weight: 700; padding: 4px 8px; border-radius: 2px; 
    letter-spacing: 1px; color: #fff; border: 1px solid rgba(255,255,255,0.1); 
}

/* Design de Ouro Metálico Unificado (Substitui ws-gold e ws-gold-light) */
.efx-tag-gold, .efx-mini-badge, .premium-badge-title { 
    background: linear-gradient(135deg, var(--hub-gold) 0%, var(--hub-gold-bright) 50%, var(--hub-gold-light) 100%); 
    color: #001529 !important; font-size: 10px; font-weight: 900; 
    padding: 3px 10px; border-radius: 3px; text-transform: uppercase; 
    letter-spacing: 0.5px; border: 1px solid rgba(0,0,0,0.1);
    display: inline-flex; align-items: center; gap: 5px;
}

.efx-tag-gold i, .efx-mini-badge i, .premium-badge-title i { font-size: 10px; color: #001529; }

/* Posicionamento do badge da miniatura */
.efx-mini-badge { position: absolute; top: 0; right: 0; border-bottom-left-radius: 4px; padding: 3px 7px; z-index: 10; }

/* =========================================================
   8. LIST SIDEBAR (RADAR TRADER)
   ========================================================= */
.efx-list-col { display: flex; flex-direction: column; background: #fff; }
.efx-item { border-bottom: 1px solid var(--hub-border); position: relative; transition: background 0.2s; }
.efx-item:last-child { border-bottom: none; }

.efx-item-link {
    display: flex; align-items: flex-start; padding: 16px; height: 100%;
    text-decoration: none !important; color: inherit; box-sizing: border-box;
}
.efx-item-link:hover { background: var(--hub-gray); }

.efx-thumb {
    width: 90px; height: 60px; border-radius: 2px; overflow: hidden;
    margin-right: 15px; position: relative; flex-shrink: 0; background: #f0f0f0;
}
.efx-thumb img { width: 100%; height: 100%; object-fit: cover; }

.efx-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.efx-item-meta-top { font-size: 10px; color: var(--hub-gold); font-weight: 800; margin-bottom: 4px; text-transform: uppercase; }
.efx-item-title {
    font-size: 14px; font-weight: 700; color: var(--hub-navy); margin: 0 0 6px 0;
    line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.efx-item-author { font-size: 11px; color: var(--hub-muted); }

/* =========================================================
   9. SEÇÃO ÚLTIMAS EDIÇÕES (RADAR TRADER ABAIXO)
   ========================================================= */
.news-container { font-family: 'Inter', 'Segoe UI', sans-serif; }
.news-box {
    display: flex; align-items: flex-start; gap: 15px; padding: 15px;
    background: #fff; border-bottom: 1px solid var(--hub-border); transition: background 0.2s;
}
.news-box:hover { background: #f8fafc; }
.news-box a { text-decoration: none; color: inherit; }
.news-box img { width: 90px; height: 65px; object-fit: cover; border-radius: 4px; border: 1px solid var(--hub-border); }

.title { font-size: 14px; font-weight: 800; color: var(--hub-navy); line-height: 1.3; margin-bottom: 6px; display: block; }
.desc { font-size: 12px; color: var(--hub-muted); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Separadores de Data (Timeline) */
.trending-separator {
    padding: 12px 20px; background: var(--hub-navy);
    border-top: 1px solid var(--hub-border); border-bottom: 1px solid var(--hub-border);
    display: flex; align-items: center; gap: 10px; color: #fff;
}
.trending-separator span { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.trending-separator i { color: var(--hub-gold); font-size: 14px; }

/* =========================================================
   10. ÁREA PREMIUM INTERNA (NEWS ALERT)
   ========================================================= */
.premium-content-preview {
    background: #f8fafc; border: 1px dashed var(--hub-border); border-radius: 6px;
    padding: 12px; margin: 8px 0; position: relative;
}
.premium-content-header { font-size: 10px; font-weight: 800; color: var(--hub-gold); text-transform: uppercase; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.premium-preview-container p { filter: blur(3px); opacity: 0.6; user-select: none; font-size: 12px; }
.premium-preview-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 100%);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px;
}
.premium-content-full {
    background: rgba(197, 160, 89, 0.1); border-left: 3px solid var(--hub-gold);
    padding: 8px 12px; font-size: 11px; font-weight: 700; color: var(--hub-navy);
}


/* =========================================================
   12. RESPONSIVO MOBILE (AJUSTES DE PERMANCE)
   ========================================================= */
@media (max-width: 768px) {
    .efx-wrapper { display: flex; flex-direction: column; }
    .efx-hero { min-height: 450px; }
    .efx-hero-content { padding: 20px; }
    .efx-hero-title { font-size: 22px; }
    
    /* Remove desfoques pesados no mobile para evitar lag de scroll */
    .efx-glass-lock { backdrop-filter: none !important; background: rgba(15, 23, 42, 0.98) !important; }
    .efx-blur-line { filter: none !important; color: transparent !important; text-shadow: 0 0 10px #fff; }
    
    .efx-list-col { border-left: none; border-top: 4px solid var(--hub-gold); }
}

/* =========================================================
   14. SKELETON LOADER (PARA TTFB LENTO)
   ========================================================= */
.efx-skeleton { display: grid; grid-template-columns: 1.6fr 1fr; height: 400px; }
.sk-hero { background: #eee; width: 100%; height: 100%; animation: sk-pulse 1.5s infinite; }
.sk-sidebar { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
.sk-row { height: 80px; background: #eee; border-radius: 4px; animation: sk-pulse 1.5s infinite; }
@keyframes sk-pulse { 0% {opacity:0.5} 50% {opacity:1} 100% {opacity:0.5} }

.efx-recommendation {
    color: var(--hub-gold);
    font-size: 14px;
    transition: transform 0.2s;
}
.efx-recommendation:hover {
    transform: scale(1.2);
}

    /* META */
.efx-meta-hero { font-size: 11px; color: var(--hub-gold); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.efx-meta-hero strong { color: #fff; }
.efx-sep { margin: 0 10px; opacity: 0.4; color: #fff; }

.wss-sidebar-container * {
    box-sizing: border-box;
}

.wss-sidebar-container {
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    gap: 16px; /* Gap reduzido para densidade profissional */
    font-size: 12px;
    line-height: 1.5;
    color: var(--hub-gray-700);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* =========================================
   WIDGET BASE - Clean, sem fundo azul
   ========================================= */
.wss-widget {
    background: var(--hub-white);
    border: 1px solid var(--hub-gray-200);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color 0.15s ease; /* Transição leve só na borda */
}

.wss-widget:hover {
    border-color: var(--hub-gray-300);
}

/* HEADER PROFISSIONAL - Azul só no header, como deve ser */
.wss-widget-header {
    background: var(--hub-navy) !important;
    padding: 12px 16px; /* Padding mais compacto */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 48px; /* Altura consistente */
}

.hubs-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--hub-white) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    line-height: 1;
}

.hubs-title i { 
    color: var(--hub-gold); 
    font-size: 13px;
    opacity: 0.95;
}

/* Badges de status */
.market-status {
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: var(--hub-white) !important;
    padding: 4px 8px;
    border-radius: 30px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.badge-contrarian {
    font-size: 9px;
    font-weight: 700;
    background: var(--hub-gold);
    color: var(--hub-navy-deep);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1;
}

/* =========================================
   LOADING - CSS puro, sem JS
   ========================================= */
.wss-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    color: var(--hub-gray-400);
    font-size: 12px;
    font-weight: 500;
    background: var(--hub-white);
    min-height: 100px;
}

.wss-loading:empty {
    display: none;
}

/* Loader minimalista - sem imagens, otimizado LCP */
.wss-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 2px solid var(--hub-gray-200);
    border-top-color: var(--hub-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   TRADING HUB - Terminal Style
   ========================================= */
.mini-terminal-grid {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--hub-white);
}

.mini-terminal-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    background: transparent;
    transition: background 0.1s ease;
}

.mini-terminal-card:hover {
    background: var(--hub-gray-50);
}

/* Nome do ativo */
.mini-terminal-card strong {
    font-weight: 600;
    color: var(--hub-gray-700);
    min-width: 70px;
    font-size: 12px;
}

/* Preço */
.mini-terminal-card > span {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--hub-gray-600);
    font-size: 12px;
    letter-spacing: -0.01em;
}

/* Badges de sinal - integrado com formatSummary */
.mini-terminal-card strong[style*="color:var(--success)"] {
    color: var(--hub-green) !important;
    font-weight: 600 !important;
    background: rgba(5, 150, 105, 0.08);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 0.2px;
    display: inline-block;
}

.mini-terminal-card strong[style*="color:var(--danger)"] {
    color: var(--hub-red) !important;
    font-weight: 600 !important;
    background: rgba(185, 28, 28, 0.08);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 0.2px;
    display: inline-block;
}

/* Fallback para force-buy/force-sell do processHub */
.force-buy {
    color: var(--hub-green) !important;
    font-weight: 600 !important;
    background: rgba(5, 150, 105, 0.08);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 11px;
}

.force-sell {
    color: var(--hub-red) !important;
    font-weight: 600 !important;
    background: rgba(185, 28, 28, 0.08);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 11px;
}

.force-neutral {
    color: var(--hub-gray-500) !important;
    font-weight: 600 !important;
    background: var(--hub-gray-100);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 11px;
}

/* =========================================
   FX WIDGET LIST - Sentimento Varejo
   ========================================= */
.wss-fx-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--hub-white);
}

.wss-fx-list li {
    list-style: none !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid var(--hub-gray-100);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.1s ease;
}

.wss-fx-list li:hover {
    background: var(--hub-gray-50);
}

.wss-fx-list li:last-child {
    border-bottom: none;
}

/* Par de moedas com bandeiras */
.wss-fx-list li .pair {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--hub-gray-700);
    font-size: 13px;
}

.wss-fx-list li .flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Sentimento badge - integrado com suas classes */
.wss-fx-list li .sentiment {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.2px;
    width: fit-content;
}

.wss-fx-list li .sentiment.bearish {
    background: rgba(185, 28, 28, 0.08);
    color: var(--hub-red) !important;
}

.wss-fx-list li .sentiment.bullish {
    background: rgba(5, 150, 105, 0.08);
    color: var(--hub-green) !important;
}

.wss-fx-list li .sentiment.neutral {
    background: var(--hub-gray-100);
    color: var(--hub-gray-600) !important;
}

/* Retail badge (gerado pelo processSentiment) */
.retail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 0.2px;
    width: 100%;
}

.retail-badge.bearish {
    background: rgba(185, 28, 28, 0.06);
    color: var(--hub-red) !important;
    border: 1px solid rgba(185, 28, 28, 0.1);
}

.retail-badge.bullish {
    background: rgba(5, 150, 105, 0.06);
    color: var(--hub-green) !important;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

/* COT data */
.wss-fx-list li small {
    font-size: 10px;
    color: var(--hub-gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
    display: block;
}

/* =========================================
   FOOTER E BOTÃO
   ========================================= */
.wss-footer {
    padding: 8px 12px 12px;
    background: transparent;
}

.wss-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--hub-navy);
    color: var(--hub-white) !important;
    font-size: 11px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: background 0.15s ease;
    border: none;
}

.wss-btn-full:hover {
    background: var(--hub-navy-deep);
}

.wss-btn-full i {
    font-size: 10px;
    opacity: 0.9;
}

/* =========================================
   OTIMIZAÇÕES LCP
   ========================================= */
/* Evita layout shift com imagens de bandeira */
.flag {
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--hub-gray-100);
}

/* Content-visibility para áreas fora da tela */
.wss-sidebar-container > * {
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
}

/* Transições só em propriedades otimizadas */
.wss-widget,
.mini-terminal-card,
.wss-fx-list li {
    will-change: border-color, background-color;
    transform: translateZ(0);
}

/* Fonte local primeiro, fallback rápido */
@supports (font-variation-settings: normal) {
    .wss-sidebar-container {
        font-family: 'Inter var', sans-serif;
    }
}

/* NEWS E CALENDAR */

    /* --- CONTAINER PRINCIPAL --- */
    .efx-radar-widget {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        font-family: 'Inter', 'Segoe UI', sans-serif;
        overflow: hidden;
        margin-bottom: 20px;
    }

    /* --- HEADER --- */
    .efx-radar-header {
        background: #f8fafc;
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .efx-radar-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #0f172a;
    }

    /* Efeito de Pulso Verde (Radar) */
    .radar-pulse {
        width: 8px;
        height: 8px;
        background-color: #10b981;
        border-radius: 50%;
        position: relative;
    }
    .radar-pulse::after {
        content: '';
        position: absolute;
        top: -4px; left: -4px;
        width: 16px; height: 16px;
        background-color: rgba(16, 185, 129, 0.4);
        border-radius: 50%;
        animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }
    @keyframes pulse-ring {
        0% { transform: scale(0.5); opacity: 1; }
        100% { transform: scale(2); opacity: 0; }
    }

    /* --- BOTÃO DE NOTIFICAÇÃO --- */
	.efx-btn-notify {
        /* Gradiente Dourado Sutil */
        background: linear-gradient(180deg, #FFD700 0%, #ffcc00 100%);
        border: 1px solid #e6c200;
        
        /* Texto Escuro para Contraste Máximo */
        color: #0f172a; 
        
        padding: 7px 14px; /* Um pouco mais encorpado */
        font-size: 0.90rem;
        font-weight: 700; /* Mais grosso para leitura */
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 5px rgba(212, 175, 55, 0.2); /* Sombra dourada */
    }

    .efx-btn-notify:hover {
        background: #f1f5f9;
        color: #334155;
    }

    /* Estado Ativo (Adicionado pelo JS .btn-active) */
    .efx-btn-notify.btn-active {
        background: #fee2e2; /* Fundo Vermelho Claro */
        border-color: #fecaca;
        color: #ef4444; /* Texto Vermelho */
    }
    .efx-btn-notify.btn-active:hover {
        background: #fecaca;
    }

    /* --- ÁREA DE CONTEÚDO --- */
    .efx-radar-list {
        padding: 0;
    	max-height: none;      /* remove limite */
    	overflow: visible;    /* remove scroll */
        min-height: 100px;
    }

    /* Estilização dos itens (Assumindo que seu PHP retorna <li> ou <div>) */
    .efx-radar-list li, 
    .efx-radar-list .news-row {
        padding: 12px 16px;
        border-bottom: 1px solid #f1f5f9;
        list-style: none;
        transition: background 0.2s;
    }
    .efx-radar-list li:hover {
        background: #f8fafc;
    }
    .efx-radar-list a {
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        font-size: 13px;
        display: block;
    }
    .efx-radar-list a:hover {
        color: #C5A059; /* Gold ExpertFX */
    }

    /* Loader State */
    .efx-loader-state {
        padding: 20px;
        text-align: center;
        color: #94a3b8;
        font-size: 12px;
    }

    /* --- FOOTER --- */
    .efx-radar-footer {
        background: #f8fafc;
        padding: 8px 16px;
        font-size: 10px;
        color: #94a3b8;
        text-align: center;
        border-top: 1px solid #e2e8f0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
  
/* === AJUSTE DO CONTAINER PARA 100% (SE NECESSÁRIO) === */
.ws-full-width-calendar {
    max-width: 100%; /* Garante que o widget ocupe toda a coluna */
    margin-top: 20px; /* Espaçamento após o widget de notícias */
}
.ws-separator {
    height: 1px;
    background-color: var(--ws-border);
    margin: 20px 0;
    opacity: 0.5;
}

/* === CALENDÁRIO ECONÔMICO EXPANDIDO (NOVO BLOCO) === */
.ws-sidebar-container { display: flex; flex-direction: column; gap: 20px; font-family: 'Inter', sans-serif; }

    /* Widget Box */
    .ws-widget-box {
        background: var(--ws-bg); border: 1px solid var(--ws-border);
        border-top: 3px solid var(--ws-gold); border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; margin-bottom: 0 !important;
    }

    /* Header */
    .ws-header {
        background: #f8fafc; border-bottom: 1px solid var(--ws-border);
        padding: 12px 15px; display: flex; justify-content: space-between; align-items: center;
    }
    .ws-title { font-size: 12px; font-weight: 800; color: var(--ws-navy); text-transform: uppercase; letter-spacing: 0.5px; }
    .ws-title i { color: var(--ws-gold); margin-right: 6px; font-size: 14px; }
    .ws-status { font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--ws-green); display: flex; align-items: center; gap: 5px; }
    .pulse-green { width: 6px; height: 6px; background: var(--ws-green); border-radius: 50%; animation: pulse 1.5s infinite; }
    @keyframes pulse { 0% {opacity: 1;} 50% {opacity: 0.4;} 100% {opacity: 1;} }

    /* Body */
    .ws-body { padding: 15px; }
    .ws-body.no-padding { padding: 0; }
    .ws-loader { text-align: center; padding: 20px; font-size: 11px; color: var(--ws-text-light); font-style: italic; }

    /* Footer */
    .ws-footer { padding: 10px 15px; border-top: 1px solid var(--ws-border); background: #fff; }
    .ws-btn-full { display: block; text-align: center; background: var(--ws-navy); color: #fff !important; font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 12px; border-radius: 2px; text-decoration: none; transition: all 0.2s; letter-spacing: 1px; }
    .ws-btn-full:hover { background: var(--ws-gold); color: var(--ws-navy) !important; }
    .ws-btn-outline { display: block; text-align: center; border: 1px solid var(--ws-border); color: var(--ws-text) !important; font-size: 10px; font-weight: 700; padding: 10px; border-radius: 2px; text-decoration: none; transition: all 0.2s; text-transform: uppercase; }
    .ws-btn-outline:hover { border-color: var(--ws-navy); color: var(--ws-navy) !important; background: #f8fafc; }

    .ws-separator { height: 1px; background-color: var(--ws-border); margin: 20px 0; opacity: 0.5; }

    /* === TRADING HUB & FOREX (ESTILOS EXISTENTES) === */
    .mini-terminal-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
    .mini-terminal-card { background: #fff; border: 1px solid #e2e8f0; padding: 10px; border-radius: 2px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
    .mini-terminal-card strong { color: var(--ws-navy); font-size: 12px; font-weight: 700; }
    
    .force-buy, .summary-buy, .summary-strong-buy { color: #10b981 !important; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); padding: 2px 6px; border-radius: 3px; text-transform: uppercase; font-size: 10px; font-weight: 800; }
    .force-sell, .summary-sell, .summary-strong-sell { color: #ef4444 !important; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); padding: 2px 6px; border-radius: 3px; text-transform: uppercase; font-size: 10px; font-weight: 800; }
    .force-neutral, .summary-neutral { color: #64748b !important; background: #f1f5f9; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; font-size: 10px; font-weight: 700; }

    .ws-fx-list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
    .ws-fx-list li { padding: 12px 15px; border-bottom: 1px solid #f1f5f9; display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
    .ws-fx-list li:last-child { border-bottom: none; }
    .ws-fx-list li:hover { background: #f8fafc; }
    .retail-badge { font-weight: 800; font-size: 10px; padding: 4px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; width: 100%; box-sizing: border-box; }
    .retail-badge.bearish { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
    .retail-badge.bullish { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }

    /* === CALENDÁRIO ECONÔMICO EXPANDIDO (ESTILO BASE PARA DESKTOP) === */
    .ws-full-width-calendar { max-width: 100%; margin-top: 20px; }

    .ws-calendar-list-expanded {
        background: var(--ws-bg);
        padding: 0;
        border-collapse: collapse;
        width: 100%;
        display: table; /* Padrão Desktop */
    }

    /* Row do Evento */
    .event-row {
        display: table-row;
        border-bottom: 1px solid #e2e8f0;
        transition: background-color 0.2s;
    }
    .event-row:hover {
        background-color: #f8fafc;
    }
    .event-row:last-child {
        border-bottom: none;
    }

    /* Células da Tabela */
    .event-cell {
        display: table-cell;
        padding: 10px 15px;
        vertical-align: middle;
        font-size: 12px;
        color: var(--ws-text);
    }

    /* Colunas fixas (Desktop) */
    .event-cell.time {
        width: 80px;
        font-weight: 700;
        color: var(--ws-navy);
        background: var(--ws-gray-bg);
        white-space: nowrap;
    }
    .event-cell.flag {
        width: 30px;
        padding-left: 10px;
        padding-right: 0;
    }
    .event-cell.flag img {
        width: 20px;
        height: 14px;
        border: 1px solid #cbd5e1;
        border-radius: 2px;
    }
    .event-cell.title {
        font-weight: 600;
    }

    /* Células de Dados (Desktop) */
    .event-cell.data-label {
        width: 100px; /* Largura fixa para cada coluna de dados */
        text-align: center;
    }
    .event-cell .label {
        font-size: 9px;
        color: #94a3b8;
        font-weight: 700;
        text-transform: uppercase;
        display: block; /* VISÍVEL NO DESKTOP */
    }
    .event-cell .value {
        font-size: 12px;
        font-weight: 700;
        color: var(--ws-navy);
        font-family: 'Roboto Mono', monospace;
        display: block;
        margin-top: 2px;
    }

    /* Classificação de Risco (Cores de Impacto - BORDA ESQUERDA) */
    .impact-high { border-left: 4px solid var(--ws-red); }
    .impact-medium { border-left: 4px solid var(--ws-yellow); }
    .impact-low { border-left: 4px solid #cbd5e1; }

    /* Destaque de Resultados */
    .result-positive { color: var(--ws-green) !important; }
    .result-negative { color: var(--ws-red) !important; }
    .result-neutral { color: var(--ws-text) !important; }


    /* 🚀 OTIMIZAÇÃO MOBILE (Telas menores que 768px) 🚀 */
    @media (max-width: 768px) {
        
        /* Mude a exibição da linha para FLEX para quebrar */
        .ws-calendar-list-expanded { display: block; }
        .event-row { 
            display: flex; 
            flex-wrap: wrap; 
            align-items: center; 
            position: relative;
            border-bottom: 1px solid #e2e8f0;
        }
        
        /* 1. MANTÉM A BORDA DE IMPACTO (Risco) */
        .impact-high, .impact-medium, .impact-low { 
            border-left-width: 4px;
        }
        
        /* 2. MANTÉM A BANDEIRA */
        .event-cell.flag { 
            display: block; /* CORREÇÃO: Torna a bandeira visível */
            order: 1; 
            flex: 0 0 auto;
            padding-left: 10px;
        }
        
        /* 3. TEMPO e TÍTULO - Linha Principal */
        .event-cell.time {
            order: 2; 
            flex: 0 0 70px;
            padding: 10px 5px 10px 0;
            background: transparent;
            font-size: 11px;
        }
        .event-cell.title { 
            order: 3; 
            flex: 1 1 100%;
            padding: 5px 15px 5px 15px;
            font-size: 13px;
            line-height: 1.3;
        }
        
        /* 4. VALORES (Atual, Previsão, Anterior) - Segunda Linha */
        .event-cell.data-label {
            order: 4; 
            flex: 1 1 33.33%; /* Divide o espaço da segunda linha em 3 */
            width: auto;
            padding: 8px 0px;
            text-align: center;
            background: #f1f5f9; /* Fundo de destaque institucional para os dados */
            border-top: 1px solid #e2e8f0;
        }
        
        /* 5. VISIBILIDADE DOS RÓTULOS E VALORES */
        .event-cell.data-label .label {
            display: block; /* CORREÇÃO: Força o rótulo a aparecer */
            font-size: 8px;
            margin-bottom: 0px;
        }
        .event-cell.data-label .value { 
            font-size: 11px; 
        }
    }
   
  
/* ===== OTIMIZAÇÃO FINAL - RADAR E CALENDÁRIO ===== */

/* 1. Correção da "Armadilha de Scroll" no Radar 
.efx-radar-list {
    /* Habilita rolagem suave com inércia no iOS (sensação de app nativo) 
    -webkit-overflow-scrolling: touch;
    /* Scrollbar mais bonita e fina 
    scrollbar-width: thin;
    scrollbar-color: var(--ws-gold) transparent;
}*/

/* 3. Estilização da Scrollbar (Webkit/Chrome/Safari) */
.efx-radar-list::-webkit-scrollbar {
    width: 6px;
}
.efx-radar-list::-webkit-scrollbar-track {
    background: transparent;
}
.efx-radar-list::-webkit-scrollbar-thumb {
    background-color: var(--ws-gold);
    border-radius: 20px;
}  

/* =========================================
   DESTAQUE DO PRÓXIMO EVENTO
   ========================================= */
.event-row.next-event {
    background: rgba(183, 140, 74, 0.05);
    position: relative;
}

.event-row.next-event:hover {
    background: rgba(183, 140, 74, 0.08);
}

.event-row.next-event .time .hour {
    color: var(--efx-gold, #b78c4a);
    font-weight: 800;
}

.next-indicator {
    margin-left: 4px;
    font-size: 12px;
    animation: pulse 2s infinite;
}

.event-row.event-starting {
    background: rgba(245, 158, 11, 0.05);
    animation: pulse-border 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; transform: scale(1); }
}

@keyframes pulse-border {
    0% { border-left-color: var(--ws-yellow, #f59e0b); }
    50% { border-left-color: #fbbf24; }
    100% { border-left-color: var(--ws-yellow, #f59e0b); }
}

/* Ajuste fino no mobile */
@media (max-width: 768px) {
    .event-row.next-event {
        border-left-width: 4px;
        border-left-color: var(--efx-gold, #b78c4a);
    }
    
    .next-indicator {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

/* Para o primeiro script (com .event-row) */
.event-row.next-event {
    background: rgba(183, 140, 74, 0.05);
    border-left: 4px solid var(--efx-gold);
}

.event-row.event-starting {
    animation: pulse-border 2s infinite;
}

/* Para o segundo script (com tr) */
tr.next-event {
    background: rgba(183, 140, 74, 0.05);
    border-left: 4px solid var(--efx-gold);
}

tr.event-starting {
    animation: pulse-border 2s infinite;
}

/* Badge compartilhado por ambos */
.next-badge {
    animation: pulse 2s infinite;
    margin-left: 4px;
}

/* Animação que você precisa adicionar também */
@keyframes pulse-border {
    0% { border-left-color: var(--efx-gold, #b78c4a); }
    50% { border-left-color: #d4b06a; }
    100% { border-left-color: var(--efx-gold, #b78c4a); }
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; transform: scale(1); }
}

/* USER BAR === */

.efx-mob-lang-nav { display: flex !important; align-items: center !important; justify-content: center !important; margin-right: 10px; }
.efx-flag-mob { width: 29px; height: 29px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.2); }  
  
/* CSS EXCLUSIVO SELECTOR LANG */
.efx-nav-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}

.efx-lang-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.efx-lang-selector a:hover .efx-lang-label {
    color: #f8b500 !important; /* Gold ExpertFX */
}

.efx-lang-selector form { margin: 0 !important; padding: 0 !important; }
.efx-lang-selector .ipsMenu_itemChecked { background: rgba(248, 181, 0, 0.15) !important; }

/* Esconder texto no mobile para não quebrar a barra */
@media (max-width: 767px) {
    .efx-lang-label { display: none !important; }
}
  
/* ===== EXPERTFX SCHOOL - USERBAR PREMIUM ===== */
/* CSS Institucional Premium para Traders */

#elUserNav {
	position: relative !important;	
    background: linear-gradient(135deg, #0d1b3a 0%, #1a2d5e 100%) !important;
    border-bottom: 1px solid rgba(248, 181, 0, 0.3) !important;
    padding: 0px 20px !important;
    margin-top: 0px;
	line-height: 1;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;	
    min-height: 50px !important;
    z-index: 11010 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
	pointer-events: auto !important;	
}

#elUserNav:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #f8b500, transparent) !important;
}

/* UserBar para Usuários Logados */
#elUserNav.cSignedIn {
    justify-content: flex-end !important;
}

/* UserBar para Visitantes */
#elUserNav.cSignedOut {
    justify-content: flex-end !important;
}

/* Itens da UserBar */
#elUserNav > li > a {
	pointer-events: auto !important;
    font-size: 12px; 
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
}

#elUserNav > li > a:hover {
    color: var(--expertfx-gold) !important;
    background: rgba(248, 181, 0, 0.2) !important;
    border-color: var(--expertfx-gold) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.3) !important;
}

#elUserNav > li > a .fa, 
#elUserNav #openOverlaySearchBox {
    font-size: 15px !important; 
    transition: all 0.3s ease !important;
}

#elUserNav > li > a:hover .fa {
    color: var(--expertfx-gold) !important;
    transform: scale(1.1) !important;
}

/* Separadores Premium */
.elUserNav_sep {
    width: 1px !important;
    height: 20px !important;
    background: linear-gradient(180deg, transparent, rgba(248, 181, 0, 0.5), transparent) !important;
    margin: 0 12px !important;
}

/* Botão Criar Conteúdo Premium */
#cCreate {
    margin-right: 10px !important;
}

#elCreateNew {
    background: linear-gradient(135deg, #f8b500 0%, #ffd166 100%) !important;
    color: #1e3c72 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 0px 16px !important;
    border-radius: 25px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

#elCreateNew:hover {
    background: linear-gradient(135deg, #ffd166 0%, #f8b500 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(248, 181, 0, 0.5) !important;
    color: #0d1b3a !important;
}

#elCreateNew i {
    font-size: 16px !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)) !important;
}

/* Menu Criar Conteúdo */
#elCreateNew_menu {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    margin-top: 8px !important;
}

#elCreateNew_menu ul {
    padding: 8px 0 !important;
}

#elCreateNew_menu .ipsMenu_item a {
    color: #1e3c72 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 500 !important;
    padding: 12px 20px !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
}

#elCreateNew_menu .ipsMenu_item a:hover {
    background: linear-gradient(135deg, #f8b500 0%, #ffd166 100%) !important;
    color: #1e3c72 !important;
    border-left-color: #1e3c72 !important;
    transform: translateX(5px) !important;
}

/* Ícones de Notificação Premium */
.cNotifications,
.cInbox,
.cReports {
    position: relative !important;
}

.cNotifications a,
.cInbox a,
.cReports a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.cNotifications a:hover,
.cInbox a:hover,
.cReports a:hover {
    background: rgba(248, 181, 0, 0.3) !important;
    border-color: #f8b500 !important;
    color: #f8b500 !important;
    transform: translateY(-2px) scale(1.1) !important;
}

/* Badges de Notificação Premium */
.ipsNotificationCount {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%) !important;
    border: 2px solid #0d1b3a !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 10px !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 9px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: pulseNotification 2s infinite !important;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.6) !important;
}

@keyframes pulseNotification {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Menu do Usuário Premium */
#cUserLink {
    margin-left: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* espaço entre foto e informações */  
}

#elUserLink {
    color: #ffffff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

#elUserLink:hover {
    background: rgba(248, 181, 0, 0.2) !important;
    border-color: #f8b500 !important;
    color: #f8b500 !important;
    transform: translateY(-1px) !important;
}

/* Foto do Usuário - Premium e transparente */

#cUserLink .ipsUserPhoto {
    width: 50px !important;          /* tamanho fixo */
    height: 50px !important;
  	padding: 0px 0px !important;
    border-radius: 10% !important;   /* deixa circular */
    border: 2px solid rgba(248, 181, 0, 0.3) !important; /* borda dourada leve */
    box-shadow: 0 0 12px rgba(248, 181, 0, 0.4) !important; /* efeito premium */
    opacity: 0.9 !important;         /* semi transparente */
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;       /* força a não encolher */
}

#cUserLink:hover .ipsUserPhoto {
    border-color: #f8b500 !important;
    box-shadow: 0 0 18px rgba(248, 181, 0, 0.7) !important; /* hover mais destacado */
    transform: scale(1.1) !important;
    opacity: 1 !important;
}


/* Dropdown do Usuário Premium */
#elUserLink_menu {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
    margin-top: 8px !important;
    width: 360px !important;
}

#elUserLink_menu .ipsMenu_title {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: #ffffff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

#elUserLink_menu .ipsMenu_item a {
    color: #1e3c72 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 500 !important;
    padding: 12px 20px !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
    display: flex !important;
    align-items: center !important;
}

#elUserLink_menu .ipsMenu_item a:hover {
    background: linear-gradient(135deg, #f8b500 0%, #ffd166 100%) !important;
    color: #1e3c72 !important;
    border-left-color: #1e3c72 !important;
    transform: translateX(5px) !important;
}

/* Seção de Conquistas */
.elUserNav_achievements {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin: 8px !important;
    border: 1px solid rgba(30, 60, 114, 0.1) !important;
}

.elUserNav_achievements__icon {
    color: #f8b500 !important;
}

.elUserNav_achievements__content {
    color: #1e3c72 !important;
}

.ipsAchievementsProgress {
    background: rgba(30, 60, 114, 0.1) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    height: 6px !important;
}

.ipsAchievementsProgress div {
    background: linear-gradient(135deg, #f8b500 0%, #ffd166 100%) !important;
    height: 100% !important;
    transition: width 0.5s ease !important;
}

/* UserBar para Visitantes */
#elUserNav.cSignedOut {
    gap: 15px !important;
}

#elSignInLink a {
    color: #ffffff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

#elSignInLink a:hover {
    background: rgba(248, 181, 0, 0.2) !important;
    border-color: #f8b500 !important;
    color: #f8b500 !important;
}

/* Botão Registrar Premium */
#elRegisterButton {
    background: linear-gradient(135deg, #f8b500 0%, #ffd166 100%) !important;
    color: #1e3c72 !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 8px 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3) !important;
}

#elRegisterButton:hover {
    background: linear-gradient(135deg, #ffd166 0%, #f8b500 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(248, 181, 0, 0.5) !important;
    color: #0d1b3a !important;
}

/* Dark Mode Toggle */
.cUserNav_icon .valaDarkModeToggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
}

.cUserNav_icon .valaDarkModeToggle:hover {
    background: rgba(248, 181, 0, 0.3) !important;
    border-color: #f8b500 !important;
    transform: translateY(-1px) !important;
}

/* Responsividade */
@media (max-width: 979px) {
    #elUserNav {
        padding: 6px 15px !important;
    }
    
    #elUserNav > li {
        margin: 0 2px !important;
    }
    
    #elCreateNew,
    #elUserLink,
    #elSignInLink a {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    .cNotifications a,
    .cInbox a,
    .cReports a {
        width: 36px !important;
        height: 36px !important;
    }
}

/* Estados de Loading */
#elUserNav .ipsLoading {
    opacity: 0.7 !important;
    pointer-events: none !important;
}

/* Acessibilidade */
#elUserNav a:focus-visible {
    outline: 3px solid #f8b500 !important;
    outline-offset: 2px !important;
    border-radius: 6px !important;
}

/* Performance - Reduz movimento quando solicitado */
@media (prefers-reduced-motion: reduce) {
    #elUserNav a,
    #elUserNav .ipsNotificationCount,
    .ipsMenu_item a {
        transition: none !important;
        animation: none !important;
    }
    
    #elUserNav a:hover,
    .ipsMenu_item a:hover {
        transform: none !important;
    }
}
  
/* ===== OTIMIZAÇÃO MOBILE DA USERBAR (EXPERTFX) ===== */
@media (max-width: 767px) {
    #elUserNav {
        /* 1. Remove o vidro pesado */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        /* Usa cor sólida para garantir legibilidade */
        background: #0d1b3a !important; 
        padding: 0 10px !important;
        justify-content: space-between !important; /* Espalha melhor os ícones */
    }

    /* 2. Para a animação de pulso (economiza bateria e foco visual) */
    .ipsNotificationCount {
        animation: none !important;
        box-shadow: none !important;
        border: 1px solid #0d1b3a !important;
    }

    /* 3. Remove efeitos de hover/pulo no toque */
    .cNotifications a:hover,
    .cInbox a:hover,
    .cReports a:hover,
    #elCreateNew:hover,
    #elUserLink:hover {
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    /* 4. Ajusta tamanho dos ícones para não ocupar muito espaço */
    .cNotifications a,
    .cInbox a,
    .cReports a {
        width: 34px !important;
        height: 34px !important;
    }

    /* 5. Foto do usuário totalmente opaca no mobile (melhor performance) */
    #cUserLink .ipsUserPhoto {
        opacity: 1 !important;
        box-shadow: none !important;
        width: 32px !important; /* Levemente menor para caber na tela */
        height: 32px !important;
    }

    /* Esconde o texto "Criar" no mobile, deixa só o ícone + */
    #elCreateNew {
        padding: 0 !important;
        width: 34px !important;
        height: 34px !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }
    #elCreateNew span { /* Supondo que haja um span com texto, ou o próprio texto solto */
        display: none !important;
    }
    #elCreateNew i {
        margin: 0 !important;
    }
}

/* === EFX TERMINAL DESIGN SYSTEM (GLOBAL RESPONSIVE) === */
#efx-terminal-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px; /* Aumentado para melhor ergonomia mobile */
    background: #0d1b3a; 
    border-top: 2px solid #1e293b;
    z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}

.efx-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
    max-width: 800px; /* Garante que em Tablets os ícones não fiquem muito longe */
    margin: 0 auto;
    align-items: center;
}

/* ÍCONES LATERAIS TÉCNICOS */
.efx-nav-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    height: 100%;
}

.efx-nav-slot i {
    font-size: 22px !important; 
    color: #94a3b8 !important; 
    margin-bottom: 3px;
}

.efx-nav-slot span {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

/* BOTÃO PREMIUM (CENTRALIZAÇÃO ABSOLUTA & ESCALA) */
.efx-premium-anchor {
    position: relative;
    overflow: visible; /* Necessário para o botão "pular" pra fora */
}

.efx-premium-box {
    background: linear-gradient(135deg, #f8b500 0%, #ffc107 100%);
    width: 75px;  /* Aumentado de 65px */
    height: 75px; /* Aumentado de 65px */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #0d1b3a; 
    
    /* CENTRALIZAÇÃO MATEMÁTICA */
    position: absolute;
    left: 50%;
    bottom: 15px; 
    transform: translateX(-50%); 
    
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.6);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.efx-premium-box i {
    color: #0d1b3a !important;
    font-size: 28px !important; /* Coroa maior */
    margin-bottom: 0px;
}

.premium-text {
    color: #0d1b3a !important;
    font-size: 12px !important; /* Texto maior e mais legível */
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
}

/* RESPONSIVIDADE PARA TABLETS (Ajusta o botão) */
@media (min-width: 600px) {
    .efx-premium-box {
        width: 85px;
        height: 85px;
        bottom: 20px;
    }
    .efx-premium-box i { font-size: 32px !important; }
}

/* FEEDBACK TÁTIL */
.efx-premium-box:active { 
    transform: translateX(-50%) scale(0.90); 
    box-shadow: 0 0 10px rgba(248, 181, 0, 0.8);
}

/* ===== EXPERTFX REACTION WIDGET (INSTITUCIONAL) ===== */

/* CONTAINER PRINCIPAL */
.premium-reaction-widget {
    /* Gradiente Institucional */
    background: linear-gradient(135deg, var(--widget-bg-start) 0%, var(--widget-bg-end) 100%);
    border-radius: 8px; /* Cantos técnicos */
    padding: 16px;
    margin: 20px 0;
    
    /* Borda Dourada Sutil */
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-top: 3px solid var(--widget-gold);
    
    /* Sombra leve */
    box-shadow: 0 4px 15px rgba(13, 27, 58, 0.15);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* BRILHO DE FUNDO (Estático para performance, animado só no Desktop) */
.premium-reaction-widget::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 90% 10%, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* HEADER */
.premium-reaction-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.premium-reaction-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--widget-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.premium-reaction-subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* GRID DE BOTÕES */
.premium-reaction-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
    position: relative;
    z-index: 2;
}

/* BOTÃO DE REAÇÃO (Chip Premium) */
.premium-reaction-btn {
    background: rgba(255, 255, 255, 0.05); /* Vidro falso leve */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

/* Hover Desktop */
.premium-reaction-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--widget-gold);
    transform: translateY(-2px);
}

/* ÍCONES */
.premium-reaction-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* TEXTO */
.premium-reaction-text {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

.premium-reaction-btn:hover .premium-reaction-text {
    color: var(--widget-gold);
}

/* --- OTIMIZAÇÃO MOBILE (PERFORMANCE MÁXIMA) --- */
@media (max-width: 767px) {
    .premium-reaction-widget {
        padding: 12px;
        margin: 16px 0;
        /* Remove efeitos pesados */
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: 1px solid rgba(197, 160, 89, 0.2); /* Borda simples */
    }

    .premium-reaction-title { font-size: 14px; }
    .premium-reaction-subtitle { font-size: 11px; }

    .premium-reaction-buttons {
        /* Grid mais compacto no celular (2 colunas ou scroll horizontal se preferir) */
        grid-template-columns: repeat(3, 1fr); 
        gap: 6px;
    }

    .premium-reaction-btn {
        padding: 8px 4px;
        /* Remove animações de toque */
        transform: none !important;
        transition: background 0.1s !important;
    }
    
    .premium-reaction-btn:active {
        background: rgba(197, 160, 89, 0.2); /* Feedback tátil rápido */
        border-color: var(--widget-gold);
    }

    .premium-reaction-btn:hover {
        transform: none !important; /* Sem pulo no celular */
    }

    /* Remove brilhos e animações de fundo */
    .premium-reaction-widget::before { display: none; }
}

/* ESTADO DE SUCESSO */
.premium-reaction-widget.thank-you-state {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); /* Verde Floresta Escuro (Sóbrio) */
    border-color: #10b981;
}

    /* ===== EXPERTFX REACTION SYSTEM (INSTITUCIONAL) ===== */
   

    /* 2. CORREÇÕES DE VISIBILIDADE (Mantido do seu original) */
    .ipsHide, .ipsReact_unreact.ipsHide {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* 3. CONTAINER DE REAÇÕES */
    .ipsReact_reactions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        align-items: center !important;
        margin-top: 8px;
    }

    /* 4. BOTÃO DA REAÇÃO (O "Chip" Institucional) */
    .ipsReact_reactCount {
        margin: 0 !important;
        padding: 3px 10px !important;
        
        /* Design Wall Street: Fundo claro, borda sutil, texto escuro */
        background: var(--react-bg) !important;
        border: 1px solid var(--react-border) !important;
        border-radius: 4px !important; /* Cantos mais quadrados = mais sério */
        
        /* Tipografia */
        font-family: 'Inter', 'Segoe UI', sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        color: var(--react-navy) !important;
        
        /* Performance: Transição apenas do que muda */
        transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease !important;
        cursor: pointer;
    }

    /* Hover Premium (Desktop) */
    .ipsReact_reactCount:hover {
        background: #fff !important;
        border-color: var(--react-gold) !important; /* Borda Dourada ao passar o mouse */
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    }

    /* Link interno */
    .ipsReact_reactCount a {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        text-decoration: none !important;
        color: inherit !important;
    }

    /* Ícone da Reação */
    .ipsReact_reactCount img {
        width: 16px !important;
        height: 16px !important;
        object-fit: contain !important;
        vertical-align: middle !important;
    }

    /* Contador Numérico */
    .reaction-count {
        color: inherit !important;
    }

    /* Texto "Você reagiu..." ou resumo */
    .ipsReact_overview {
        font-size: 11px !important;
        color: #94a3b8 !important; /* Cinza azulado profissional */
        font-weight: 500 !important;
        margin-right: 8px !important;
    }

    /* 5. DESTAQUE PARA REAÇÕES DO USUÁRIO (Eu reagi) */
    .ipsReact_reactCount.ipsReact_reacted {
        background: rgba(197, 160, 89, 0.1) !important; /* Fundo Gold bem suave */
        border-color: var(--react-gold) !important;
    }

    /* 6. TRATAMENTO PARA VISITANTES (Sem emoji, apenas visual discreto) */
    body.is-guest .ipsReact_reactCount {
        opacity: 0.8 !important;
        border-style: dashed !important; /* Borda tracejada indica "não clicável/externo" */
        background: #fff !important;
    }

    /* --- OTIMIZAÇÃO MOBILE (Performance) --- */
    @media (max-width: 767px) {
        .ipsReact_reactCount {
            padding: 4px 12px !important; /* Área de toque maior */
            /* Remove efeito de 'pulo' no celular para economizar GPU */
            transform: none !important; 
            box-shadow: none !important;
        }
        
        .ipsReact_reactCount:hover, 
        .ipsReact_reactCount:active {
            transform: none !important;
            background: #f1f5f9 !important; /* Feedback visual simples */
        }

        /* Garante que não quebre linha estranha */
        .ipsReact_reactions {
            gap: 8px !important;
        }
    }
	
  /* TOPICO OUVIR */
  
  .efx-player-container {
    /* Margin top maior para acomodar a cabeça do boneco saindo da caixa */
    margin: 40px 0 30px 0; 
    padding: 15px 25px 15px 10px; /* Padding esquerdo menor para aproximar o boneco */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-left: 5px solid #10b981;
    border-radius: 16px; /* Bordas mais arredondadas */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    font-family: 'Inter', 'Roboto', sans-serif;
    position: relative;
    /* Importante: Visible para a cabeça sair da caixa */
    overflow: visible; 
    transform: translateZ(0); 
  }

  .efx-player-bg-decoration {
    position: absolute;
    right: 10px;
    top: -15px;
    font-size: 80px;
    opacity: 0.04;
    pointer-events: none;
    color: #1e293b;
    z-index: 0;
  }

  /* Wrapper do Personagem em Pé */
  .efx-mascot-wrapper {
    position: relative;
    width: 80px; /* Largura da área do boneco */
    height: 100px; /* Altura base */
    display: flex;
    align-items: flex-end; /* Alinha o pé na base */
    justify-content: center;
    flex-shrink: 0;
    margin-top: -35px; /* Faz ele subir e "sair" da caixa */
    margin-bottom: -15px; /* Ajuste fino na base */
    z-index: 10;
  }

  .efx-mascot-img {
    max-height: 135px; /* Altura real do boneco */
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /* Sombra projetada no contorno do PNG (Premium Look) */
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
  }
  
  /* Efeito hover no boneco */
  .efx-mascot-img:hover {
    transform: scale(1.05) translateY(-2px);
  }

  /* Container do conteúdo (texto + botão) */
  .efx-content-wrapper {
    flex: 1;
    min-width: 250px; /* Largura mínima para o conteúdo */
    padding-left: 10px;
  }

  /* Ajustes Mobile - Mantendo layout lado a lado */
  @media (max-width: 768px) {
    .efx-player-container {
      padding: 15px 20px 15px 5px; /* Padding reduzido */
      flex-wrap: nowrap; /* Impede quebra de linha */
      align-items: flex-start; /* Alinha itens ao topo */
      margin: 30px 0 25px 0;
      gap: 10px; /* Reduz gap */
    }

    .efx-mascot-wrapper {
      width: 60px; /* Largura reduzida */
      height: 80px; /* Altura reduzida */
      margin-top: -25px; /* Ajuste menor para mobile */
      margin-bottom: -10px;
      flex-shrink: 0; /* Impede que o boneco encolha */
    }

    .efx-mascot-img {
      max-height: 100px; /* Altura reduzida para mobile */
    }

    .efx-content-wrapper {
      min-width: 0; /* Remove largura mínima */
      padding-left: 5px;
      text-align: left; /* Alinha texto à esquerda */
      flex: 1;
    }

    /* Ajustes para telas muito pequenas */
    @media (max-width: 480px) {
      .efx-player-container {
        padding: 15px 15px 15px 0;
        margin: 25px 0 20px 0;
        gap: 8px;
      }

      .efx-mascot-wrapper {
        width: 50px;
        height: 70px;
        margin-top: -20px;
      }

      .efx-mascot-img {
        max-height: 85px;
      }

      .efx-content-wrapper {
        padding-left: 3px;
      }
    }
  }

    /* --- 2. REMOVENDO A "CARA DE FÓRUM" (HACKS) --- */
    /* Oculta a coluna de votação (setas para cima/baixo) */
    .cRatingColumn, .cAnswerRate {
        display: none !important; 
    }
    /* Oculta ícones de pasta/fórum antes do título */
    .ipsType_pageTitle i.fa-folder, 
    .ipsType_pageTitle i.fa-comments {
        display: none !important;
    }

    /* --- 3. CABEÇALHO "RELATÓRIO EXECUTIVO" --- */
    .ipsPageHeader {
        background-color: #fff !important;
        border: 1px solid var(--efx-border) !important;
        border-top: 4px solid var(--efx-navy) !important; /* Topo Sólido */
        border-radius: 2px !important; /* Cantos levemente retos */
        padding: 25px !important;
        margin-bottom: 25px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important; /* Sombra ultra leve */
    }

    /* --- 5. BADGE PREMIUM (ESTILO ETIQUETA) --- */
    span[style*="background:#FFD700"] {
        background: var(--efx-navy) !important;
        color: #fff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 700 !important;
        font-size: 9px !important;
        text-transform: uppercase !important;
        padding: 3px 8px !important;
        border-radius: 2px !important;
        letter-spacing: 1px !important;
        display: inline-block !important;
        margin-bottom: 5px !important;
        vertical-align: middle !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* --- 6. DADOS DO AUTOR (LINHA FINA) --- */
    .ipsPageHeader__meta {
        border-top: 1px solid #f1f5f9 !important;
        padding-top: 15px !important;
        margin-top: 15px !important;
    }
    
    /* Foto do autor quadrada (Business style) */
    .ipsUserPhoto_mini img, .ipsUserPhoto_tiny img { 
        border-radius: 2px !important;
        filter: grayscale(100%); /* Foto preto e branco = Clássico */
    }

    .ipsType_blendLinks strong { 
        color: var(--efx-navy) !important; 
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* --- 7. CORPO DO TEXTO (JORNAL) --- */
    .cPost .ipsType_richText {
        font-family: 'Georgia', 'Times New Roman', serif !important;
        font-size: 18px !important;
        line-height: 1.7 !important;
        color: #1e293b !important; /* Texto escuro para contraste */
        text-align: justify !important;
    }

    /* Botões de Ação (Responder) - Estilo Clean */
    .ipsToolList .ipsButton {
        border-radius: 0px !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }
    .ipsButton_important {
        background: var(--efx-navy) !important;
        border-color: var(--efx-navy) !important;
    }

    /* --- 8. MOBILE (AJUSTE DO TÍTULO) --- */
    @media screen and (max-width: 768px) {
        .ipsPageHeader {
            padding: 15px !important;
            border-left: none !important;
        }

        /* Título reduzido no celular */
        .ipsType_pageTitle {
            font-size: 1rem !important; /* Tamanho ideal para leitura mobile */
            line-height: 1.3 !important;
        }

        /* Badge ajustado */
        span[style*="background:#FFD700"] {
            font-size: 8px !important;
            padding: 2px 6px !important;
        }

        /* Texto corrido */
        .cPost .ipsType_richText {
            font-size: 17px !important;
            line-height: 1.6 !important;
            text-align: left !important; /* Justificado no mobile cria buracos, left é melhor */
        }
    }  
	
/* 1. BARRA PRINCIPAL - SÓLIDA E RÁPIDA (Sem Blur/Vidro para Performance) */
nav[data-controller='core.front.core.navBar'] {
    /* Fundo Sólido Dark Navy (Zero processamento de GPU) */
    border-bottom: 2px solid #d4af37 !important; /* Dourado */
    /* Sombra simples CSS (Leve) */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
    height: 55px !important;
}