/* ============================================
   NEXORA - Executive Noir Design System
   ============================================ */

/* ---- Google Fonts Import ---- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Literata:wght@400;500&family=Montserrat:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');


/* ---- Base ---- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Literata', serif;
    background-color: #131313;
    color: #e4e2e1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: #e9c176;
    color: #0e0e0e;
}

/* ---- Component: Primary Button Glow ---- */
.btn-primary-glow {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ---- Material Symbols (reservado para uso futuro) ---- */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ---- Custom Styles ---- */


       
        .glass-card {
            background: rgba(26, 26, 26, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(51, 51, 51, 0.5);
        }

        .gold-glow {
            box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
        }

        .fade-in {
            animation: fadeIn 1.2s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }