/* 
 * CSS para melhorar a legibilidade das leis
 * Arquivo: /css/reading-enhancement.css
 */

/* ===== VARIÁVEIS PARA LEITURA CONFORTÁVEL ===== */
:root {
  /* Tipografia otimizada para leitura */
  --reading-font: 'Georgia', 'Times New Roman', serif;
  --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --reading-size: 18px;
  --reading-line-height: 1.7;
  
  /* Cores para leitura confortável */
  --reading-text: #2c3e50;
  --reading-bg: #fefefe;
  --reading-accent: #3498db;
  --reading-muted: #7f8c8d;
  --reading-border: #ecf0f1;
  
  /* Espaçamentos para respiração do texto */
  --paragraph-spacing: 1.2rem;
  --section-spacing: 2rem;
  --content-max-width: 75ch; /* 75 caracteres - ideal para leitura */
}

/* ===== MELHORIAS GERAIS DE TIPOGRAFIA ===== */
.resultado-bloco {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: var(--reading-bg);
  color: var(--reading-text);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.titulo-pesquisa h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: var(--section-spacing);
  color: var(--reading-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== CONTEÚDO PRINCIPAL DA LEI ===== */
.resultado-pesquisa {
  font-family: var(--reading-font);
  font-size: var(--reading-size);
  line-height: var(--reading-line-height);
  color: var(--reading-text);
  background: transparent;
  padding: 0;
  margin-bottom: var(--section-spacing);
  text-align: left; /* Justificado pode causar espaçamentos estranhos */
}

.resultado-pesquisa p {
  margin-bottom: var(--paragraph-spacing);
  hyphens: auto;
  word-wrap: break-word;
}

.resultado-pesquisa p:last-child {
  margin-bottom: 0;
}

/* ===== LISTAS E ENUMERAÇÕES ===== */
.resultado-pesquisa ul,
.resultado-pesquisa ol {
  margin: var(--paragraph-spacing) 0;
  padding-left: 2rem;
}

.resultado-pesquisa li {
  margin-bottom: 0.5rem;
  line-height: var(--reading-line-height);
}

.resultado-pesquisa li:last-child {
  margin-bottom: 0;
}

/* ===== HEADERS DENTRO DO CONTEÚDO ===== */
.resultado-pesquisa h2,
.resultado-pesquisa h3,
.resultado-pesquisa h4 {
  font-family: var(--heading-font);
  margin-top: calc(var(--section-spacing) * 1.5);
  margin-bottom: var(--paragraph-spacing);
  color: var(--reading-text);
  font-weight: 600;
  line-height: 1.4;
}

.resultado-pesquisa h2 {
  font-size: 1.4rem;
  border-bottom: 2px solid var(--reading-border);
  padding-bottom: 0.5rem;
}

.resultado-pesquisa h3 {
  font-size: 1.2rem;
}

.resultado-pesquisa h4 {
  font-size: 1.1rem;
}

/* ===== CITAÇÕES E DESTAQUES ===== */
.resultado-pesquisa blockquote {
  margin: var(--section-spacing) 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--reading-accent);
  background: rgba(52, 152, 219, 0.05);
  font-style: italic;
  color: var(--reading-muted);
}

.resultado-pesquisa strong,
.resultado-pesquisa b {
  color: var(--reading-text);
  font-weight: 600;
}

.resultado-pesquisa em,
.resultado-pesquisa i {
  color: var(--reading-muted);
}

/* ===== LINKS DENTRO DO CONTEÚDO ===== */
.resultado-pesquisa a {
  color: var(--reading-accent);
  text-decoration: underline;
  text-decoration-color: rgba(52, 152, 219, 0.3);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.resultado-pesquisa a:hover {
  color: #2980b9;
  text-decoration-color: #2980b9;
}

/* ===== SEÇÃO DE REFERÊNCIAS ===== */
.referencias {
  margin-top: var(--section-spacing);
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid var(--reading-accent);
}

.referencias h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--reading-text);
}

.referencias a {
  color: var(--reading-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.referencias a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* ===== RESPONSIVIDADE PARA LEITURA ===== */
@media (max-width: 768px) {
  :root {
    --reading-size: 17px;
    --content-max-width: 100%;
  }
  
  .resultado-bloco {
    padding: 1.5rem 1rem;
    margin: 1rem;
  }
  
  .titulo-pesquisa h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  :root {
    --reading-size: 16px;
    --reading-line-height: 1.6;
  }
  
  .resultado-bloco {
    padding: 1rem 0.75rem;
    margin: 0.5rem;
  }
}

/* ===== MODO ESCURO (OPCIONAL) ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --reading-text: #e8e6e3;
    --reading-bg: #1a1a1a;
    --reading-accent: #58a6ff;
    --reading-muted: #8b949e;
    --reading-border: #30363d;
  }
  
  .referencias {
    background: #21262d;
  }
  
  .resultado-pesquisa blockquote {
    background: rgba(88, 166, 255, 0.1);
  }
}

/* ===== MELHORIAS DE FOCO E ACESSIBILIDADE ===== */
.resultado-pesquisa:focus-within {
  outline: 2px solid var(--reading-accent);
  outline-offset: 2px;
}

/* Seleção de texto melhorada */
::selection {
  background: rgba(52, 152, 219, 0.2);
  color: var(--reading-text);
}

/* Suavizar transições de scroll */
html {
  scroll-behavior: smooth;
}

/* ===== IMPRESSÃO ===== */
@media print {
  .resultado-bloco {
    box-shadow: none;
    max-width: none;
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .referencias {
    background: none;
    border: 1px solid #ccc;
  }
  
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
}
