/* Estilos específicos para layout compacto dos livros da Bíblia */

/* Animações suaves */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animações */
.testamento-section {
    animation: slideInUp 0.6s ease-out;
}

.livro-card {
    animation: fadeInScale 0.4s ease-out;
    animation-fill-mode: both;
}

/* Delay escalonado para os cards */
.livro-card:nth-child(1) { animation-delay: 0.1s; }
.livro-card:nth-child(2) { animation-delay: 0.15s; }
.livro-card:nth-child(3) { animation-delay: 0.2s; }
.livro-card:nth-child(4) { animation-delay: 0.25s; }
.livro-card:nth-child(5) { animation-delay: 0.3s; }
.livro-card:nth-child(6) { animation-delay: 0.35s; }
.livro-card:nth-child(7) { animation-delay: 0.4s; }
.livro-card:nth-child(8) { animation-delay: 0.45s; }

/* Efeitos hover melhorados */
.livro-card {
    position: relative;
    overflow: hidden;
}

.livro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.livro-card:hover::before {
    left: 100%;
}

/* Indicador visual para livros populares */
.livro-card.popular {
    border-color: var(--brand-secondary);
    background: linear-gradient(135deg, var(--brand-white) 0%, #fafafa 100%);
}

.livro-card.popular .livro-nome {
    color: var(--brand-secondary);
}

/* Melhorias no contador de livros */
.testamento-count {
    position: relative;
    overflow: hidden;
}

.testamento-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s;
}

.testamento-title:hover .testamento-count::before {
    left: 100%;
}

/* Estados de loading para quando os livros estão carregando */
.livros-loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.6rem;
}

.livro-skeleton {
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 6px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Melhorias para acessibilidade */
.livro-link:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.testamento-title:focus-within {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Indicadores visuais para diferentes tipos de livros */
.livro-card[data-tipo="historico"] {
    border-left: 3px solid #8B4513;
}

.livro-card[data-tipo="poetico"] {
    border-left: 3px solid #9370DB;
}

.livro-card[data-tipo="profetico"] {
    border-left: 3px solid #FF6347;
}

.livro-card[data-tipo="evangelho"] {
    border-left: 3px solid #32CD32;
}

.livro-card[data-tipo="epistola"] {
    border-left: 3px solid #4169E1;
}

.livro-card[data-tipo="apocaliptico"] {
    border-left: 3px solid #DC143C;
}

/* Tooltip para informações adicionais */
.livro-card[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}

/* Melhorias para telas muito pequenas */
@media (max-width: 360px) {
    .livros-grid {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
        gap: 0.3rem;
    }
    
    .livro-card {
        padding: 0.4rem 0.2rem;
    }
    
    .livro-nome {
        font-size: 0.7rem;
        line-height: 1;
    }
    
    .livro-info {
        font-size: 0.6rem;
    }
    
    .testamento-title {
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }
}

/* Modo escuro (se implementado futuramente) */
@media (prefers-color-scheme: dark) {
    .livro-card {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .livro-card:hover {
        border-color: var(--brand-primary);
        background: #333;
    }
    
    .livro-nome {
        color: var(--brand-primary);
    }
    
    .testamento-title {
        background: #2a2a2a;
        color: #e0e0e0;
    }
}

/* Print styles */
@media print {
    .livros-biblia {
        background: none !important;
        box-shadow: none !important;
    }
    
    .livro-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .testamento-title {
        break-after: avoid;
    }
}