/* ============================================
   ELEVA AMAPÁ — Galeria de Modelos Nota 1000
   Reaproveita dashboard.css e redacao.css.
   ============================================ */

.marcador-exemplo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 0.7rem;
  font-weight: 800;
}

.modelo-card {
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
@media (min-width: 640px) {
  .modelo-card { padding: 2.25rem; }
}

.modelo-nivel {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 0.9rem;
}
.nivel-essencial {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.nivel-muito-importante {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.nivel-importante {
  background: rgba(161, 161, 170, 0.12);
  color: #d4d4d8;
  border: 1px solid rgba(161, 161, 170, 0.25);
}

.modelo-titulo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
.modelo-tema {
  font-size: 0.8rem;
  color: #71717a;
  margin-bottom: 1.5rem;
}

.modelo-texto p {
  font-size: 0.9rem;
  color: #d4d4d8;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  text-align: justify;
}
.modelo-texto p:last-child {
  margin-bottom: 0;
}

/* Marcador numerado clicável dentro do texto */
.marcador {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 900;
  color: #fbbf24;
  text-decoration: none;
  margin-left: 0.1rem;
  padding: 0 0.15rem;
  transition: color 0.15s ease;
}
.marcador:hover {
  color: #fde68a;
}

/* Bloco de anotações */
.modelo-anotacoes {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.anotacoes-titulo {
  font-size: 0.8rem;
  font-weight: 800;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.anotacao {
  font-size: 0.85rem;
  color: #a1a1aa;
  line-height: 1.6;
  background: #0c0c0e;
  border-radius: 0.75rem;
  padding: 0.85rem 1.05rem;
  border-left: 3px solid rgba(245, 158, 11, 0.4);
  scroll-margin-top: 6rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.anotacao strong {
  color: #e4e4e7;
}
.anotacao-num {
  color: #fbbf24;
  font-weight: 900;
  margin-right: 0.2rem;
}

/* Destaque temporário quando o aluno clica no marcador do texto
   (o navegador aplica :target no elemento apontado pelo #href) */
.anotacao:target {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}