/* Neuron Bold Font Family - Aplicação Global */

/* IMPORTANTE: Escolha uma das opções abaixo */

/* OPÇÃO 1: Se a fonte Neuron Bold estiver disponível no Google Fonts ou outro CDN */
/* Descomente e ajuste a URL conforme necessário */
/*
@import url('https://fonts.googleapis.com/css2?family=Neuron:wght@700&display=swap');
*/

/* OPÇÃO 2: Se você tem os arquivos da fonte localmente */
/* Ajuste os caminhos para os arquivos da fonte Neuron Bold */
@font-face {
  font-family: 'Neuron';
  src: url('../fonts/Neuron-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Usar Bold como padrão para todos os pesos */
@font-face {
  font-family: 'Neuron';
  src: url('../fonts/Neuron-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Aplicação global da fonte Neuron Bold */
* {
  font-family: 'Neuron' !important;
  font-weight: bold !important;
}

body,
html {
  font-family: 'Neuron' !important;
  font-weight: bold !important;
}

/* Elementos específicos */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Neuron' !important;
  font-weight: bold !important;
}

p, span, div, a, li, td, th, label, input, textarea, select, button {
  font-family: 'Neuron' !important;
  font-weight: bold !important;
}

/* Classes específicas do template */
.default-btn,
.navbar-nav,
.top-header-information,
.middle-header-content,
.footer-area,
.blog-content,
.about-content,
.contact-form,
.dentist-details-content,
.services-details-content {
  font-family: 'Neuron' !important;
  font-weight: bold !important;
}

/* Painel administrativo */
.painel * {
  font-family: 'Neuron' !important;
  font-weight: bold !important;
}

