/* Seção do Cabeçalho e Título */
.bible-header {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.bible-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.bible-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.testament-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testament-buttons .btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #666;
    font-weight: bold;
    background-color: #f0f0f0;
    transition: background-color 0.3s, color 0.3s;
}

.testament-buttons .btn.active {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.testament-buttons .btn:hover {
    background-color: #e8e8e8;
}
.testament-buttons .btn.active:hover {
    background-color: #fff;
}

/* Seção de Livros */
.bible-books {
    padding: 50px 20px;
    background-color: #fff;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.book-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.book-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #ccc;
}

.book-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px;
    font-weight: 600;
}

.book-card .book-type {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 10px;
    font-style: italic;
}

.book-card .book-chapters {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Estilos Responsivos */
@media (max-width: 1200px) {
    .book-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 992px) {
    .book-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .book-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .book-grid {
        grid-template-columns: 1fr;
    }
}