/* ARQUIVO: estilo.css */
:root {
    --bordo: #800000;
    --fundo-zebra: #f9f9f9;
    --fundo-botao: #eee;
    --texto-preto: #000000;
}

body { 
    font-family: 'Segoe UI', Tahoma, sans-serif; 
    margin: 0; 
    color: #333; 
    line-height: 1.5; 
}

/* CABEÇALHO PADRÃO */
header { 
    background: var(--bordo); 
    color: white; 
    padding: 10px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

header h1 { font-size: 1.2rem; margin: 0; }

.container { 
    max-width: 900px; 
    margin: 30px auto; 
    padding: 0 15px; 
}

/* LINKS E BOTÕES DE VOLTAR */
.voltar { 
    text-decoration: none; 
    color: var(--bordo); 
    font-size: 0.9rem; 
    font-weight: bold; 
    display: block; 
    margin-bottom: 20px; 
    text-align: left; 
}

/* GRADE DO ALFABETO */
.grade-alfabeto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.letra-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: var(--fundo-botao);
    color: var(--bordo);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid #ccc;
    transition: 0.2s;
}

.letra-link:hover {
    background: var(--bordo);
    color: white;
}

/* LISTA DE AUTORES (Botões Horizontais) */
.lista-autores { display: flex; flex-direction: column; gap: 15px; }

.autor-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--fundo-botao);
    color: var(--texto-preto);
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1.3rem;
    font-weight: bold;
}

.autor-link:hover { border-color: var(--bordo); background: #f0f0f0; }

/* TABELA DE OBRAS */
.tabela-obras { width: 100%; border-collapse: collapse; }
.tabela-obras td { padding: 12px 10px; border-bottom: 1px solid #ddd; }
.tabela-obras tr:nth-child(even) { background-color: var(--fundo-zebra); }
.obra-titulo { font-weight: bold; font-size: 1.1rem; color: var(--texto-preto); }

/* RODAPÉ */
footer { 
    text-align: center; 
    padding: 30px; 
    font-size: 0.85rem; 
    color: #666; 
    border-top: 1px solid #eee; 
    margin-top: 40px; 
}

footer a { color: var(--bordo); text-decoration: none; font-weight: bold; }