/* ═══════════════════════════════════════════════════════════
   TEMA CTC - Cataract Training Center
   Identidade escura da area do aluno (mockup aprovado pelo cliente).
   Carregar DEPOIS do design-system.css, com <html data-theme="dark">.
   Accent azul (botoes/CTAs) + teal da marca CTC (logo e detalhes).
   ═══════════════════════════════════════════════════════════ */

:root,
[data-theme="dark"] {
  --accent: #2e7cf6;
  --accent-soft: rgba(46, 124, 246, .14);
  --accent-hover: #5595f8;
  --ctc-teal: #35c7c0;
}

[data-theme="dark"] {
  --bg:  #080d18;
  --bg2: #0e1424;
  --bg3: #141b2e;
  --border: #1d2740;
  --text:  #e9edf6;
  --text2: #aab4cc;
  --text3: #7583a3;
}

html[data-theme="dark"] .input:focus {
  box-shadow: 0 0 0 3px rgba(46, 124, 246, .18);
}

/* Selo "Piloto demonstrativo" adaptado ao fundo escuro */
html[data-theme="dark"] .tag-piloto {
  background: rgba(245, 158, 11, .15);
  color: #fbbf24;
}

/* Links de navegacao nao sublinham no hover (anula o a:hover global) */
a.logo-ctc:hover,
a.sidebar-item:hover,
a.btn:hover,
a.filter-btn:hover {
  text-decoration: none;
}

/* Logo CTC */
.logo-ctc {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.3px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo-ctc .sigla {
  color: var(--ctc-teal);
  border-right: 2px solid var(--ctc-teal);
  padding-right: 9px;
  font-size: 19px;
}
.logo-ctc small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text3);
}
