:root {
  --novaera-navy: #1C2331; /* Exemplo: Um azul escuro para Navy */
  --novaera-electric-blue: #00FFFF; /* Exemplo: Um ciano vibrante para Electric Blue */
  --novaera-gray-gradient-start: #999999; /* 60% Cinza */
  --novaera-gray-gradient-end: #B3B3B3; /* 30% Cinza (mais claro) */
  --novaera-white: #FFFFFF;
}

/* Sobrescrever blue-gradient do MDB */
.blue-gradient {
  background-image: linear-gradient(45deg, var(--novaera-navy) 0%, var(--novaera-navy) 100%) !important;
  background-color: var(--novaera-navy) !important; /* Fallback */
}

/* Exemplo para elementos de destaque */
.text-electric-blue {
  color: var(--novaera-electric-blue) !important;
}

.bg-electric-blue {
  background-color: var(--novaera-electric-blue) !important;
}

/* Typography */
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Note: Avant Garde Bold is not a standard Google Font. You might need to self-host it or use a similar alternative. */
/* If the brand text is still text-based somewhere, apply this: */
/* .navbar-brand strong { font-family: 'Avant Garde Bold', sans-serif; } */