/* public/css/global.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&family=Rajdhani:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    /* --- Paleta "Gobierno Táctico" --- */
    --bg-deep: #020617;       /* Azul casi negro */
    --primary: #3b82f6;       /* Azul brillante tech */
    --primary-glow: rgba(59, 130, 246, 0.5);
    
    --accent-red: #ef4444;    /* Rojo alerta/policial */
    --accent-green: #10b981;  /* Verde operativo */
    
    --text-main: #f8fafc;     /* Blanco humo */
    --text-muted: #94a3b8;    /* Gris metalizado */

    /* --- Vidrio (Glassmorphism) --- */
    --glass-surface: rgba(15, 23, 42, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);

    /* --- Tipografías --- */
    --font-ui: 'Inter', sans-serif;       /* Textos generales */
    --font-hud: 'Inter', sans-serif;    /* Números y datos técnicos */
    --font-brand: 'Inter', sans-serif;  /* Tipografía para el branding */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Desactiva el marcado azul de texto en todo el portal */
html,
body,
body * {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body *::selection {
    background: transparent;
    color: inherit;
}

body {
    font-family: var(--font-ui);
    background-color: var(--bg-deep);
    color: var(--text-main);
    overflow: hidden; /* Evita scroll en el login */
    height: 100vh;
}

/* --- Utilidades --- */
.hidden {
    display: none !important;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Branding-style labels: usar Orbitron en pequeñas etiquetas de estado/stat */
.exp-stat-label,
.stat-label,
.ptr-stat-label,
.exp-portal-card .exp-portal-title,
.bnk-brand span,
body.home-page .landing-brand span,
.exp-brand span {
    font-family: var(--font-brand);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}


/* Footer styles (Shared) */
.exp-footer {
    margin-top: auto;
    border-top: 1px solid rgba(148,163,184,0.22);
    background: rgba(3,6,15,0.84);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.exp-footer-shell {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.5rem 0 2rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1240px;
}
.exp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.exp-footer-links a {
    text-decoration: none;
    color: #cbd5e1;
    border: 1px solid rgba(148,163,184,0.28);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    font-family: var(--exp-font, 'Inter', sans-serif);
    transition: all 0.2s ease;
}
.exp-footer-links a:hover {
    color: #f8fafc;
    border-color: rgba(56,189,248,0.62);
}
.exp-footer-note {
    margin: 0;
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}
.exp-footer-strong {
    color: #f8fafc;
    font-weight: 700;
}
.exp-footer-watermark {
    position: absolute;
    right: 2.2rem;
    bottom: -18px;
    opacity: 0.14;
    pointer-events: none;
}
.exp-footer-watermark img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(2,6,23,0.5));
}
