/* =========================================
   IA EXPERIENCE - BRAND TOKENS (BASE)
   ========================================= */

:root {
    /* Paleta de colores */
    --primary: #2717DC;
    --secondary: #9083F1;
    --text-main: #000000;
    --text-muted: #64748b;
    
    /* Sistema tipográfico */
    --font-title: 'TT Interphases Pro', sans-serif;
    --font-body: 'TT Modelica', sans-serif;
    
    /* Sombras y Glassmorphism MEJORADOS */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-blur: blur(25px);
    
    /* Sombra doble para efecto 3D potente */
    --shadow-glass: 
        0 8px 32px 0 rgba(39, 23, 220, 0.15),
        0 40px 100px -20px rgba(39, 23, 220, 0.25);
}

/* FONDO LILA DIFUMINADO */
html {
    position: relative;
    min-height: 100vh;
    background: #c0b9f3 !important;
}

/* Capa de difuminado sobre el fondo */
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   2. CARGA DE FUENTES (Ajustadas a tu carpeta)
   ========================================= */

/* Interphases para Títulos */
@font-face {
    font-family: 'TT Interphases Pro';
    src: url('./assets/fonts/TT Interphases Pro Trl/TT Interphases Pro Trial ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

/* Modelica REGULAR (Peso 400) */
@font-face {
    font-family: 'TT Modelica';
    src: url('./assets/fonts/TT Modelica/TT Modelica Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Modelica BOLD (Peso 700) */
@font-face {
    font-family: 'TT Modelica';
    src: url('./assets/fonts/TT Modelica/TT Modelica Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* =========================================
   3. RESET ESENCIAL
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-body);
    font-weight: 400;
    background: transparent !important;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    margin: 0;
}
