/* NHaas Grotesk Font Faces */

/* NHaas Grotesk DS Pro - Ultra Thin */
@font-face {
    font-family: 'NHaasGroteskDSPro';
    src: url('../fonts/NHaasGroteskDSPro-15UltTh.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* NHaas Grotesk DS Pro - Thin */
@font-face {
    font-family: 'NHaasGroteskDSPro';
    src: url('../fonts/NHaasGroteskDSPro-25Th.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* NHaas Grotesk DS Pro - Regular */
@font-face {
    font-family: 'NHaasGroteskDSPro';
    src: url('../fonts/NHaasGroteskDSPro-55Rg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* NHaas Grotesk TX Pro - Regular (TTF) */
@font-face {
    font-family: 'NHaasGroteskTXPro';
    src: url('../fonts/NHaasGroteskTXPro-55Rg.ttf') format('truetype'),
         url('../fonts/NHaasGroteskTXPro-55Rg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* NHaas Grotesk TX Pro - Medium */
@font-face {
    font-family: 'NHaasGroteskTXPro';
    src: url('../fonts/NHaasGroteskTXPro-65Md.ttf') format('truetype'),
         url('../fonts/NHaasGroteskTXPro-65Md.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* NHaas Grotesk TX Pro - Bold */
@font-face {
    font-family: 'NHaasGroteskTXPro';
    src: url('../fonts/NHaasGroteskTXPro-75Bd.ttf') format('truetype'),
         url('../fonts/NHaasGroteskTXPro-75Bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables para facilitar o uso */
:root {
    --font-primary: 'NHaasGroteskTXPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-secondary: 'NHaasGroteskDSPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Aplicação global da fonte */
body {
    font-family: var(--font-primary);
}

/* Classes utilitárias para diferentes pesos */
.font-ultra-thin {
    font-family: var(--font-secondary);
    font-weight: 100;
}

.font-thin {
    font-family: var(--font-secondary);
    font-weight: 200;
}

.font-regular {
    font-family: var(--font-primary);
    font-weight: 400;
}

.font-medium {
    font-family: var(--font-primary);
    font-weight: 500;
}

.font-bold {
    font-family: var(--font-primary);
    font-weight: 700;
}

/* Aplicação específica para elementos comuns */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 500;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Para o Summernote - aplicar fonte aos editores de texto */
.note-editable {
    font-family: var(--font-primary) !important;
}

.note-editor .note-toolbar {
    font-family: var(--font-primary) !important;
}

.note-dropdown-menu {
    font-family: var(--font-primary) !important;
}
