/* 
 * Configurações adicionais para modernizar o Blog Binds
 * Aplicadas via wp_head para sobrescrever estilos do tema
 */

/* Melhorar o layout geral */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6 !important;
    color: #1a1a1a !important;
}

/* Header moderno com glassmorphism */
.main-head {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Logo moderno */
.logo-image {
    height: 40px !important;
    width: auto !important;
    transition: transform 0.3s ease !important;
}

.logo-image:hover {
    transform: scale(1.05) !important;
}

/* Navegação moderna */
.main-nav ul {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2rem !important;
}

.main-nav a {
    color: #1a1a1a !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 0.5rem 0 !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}

.main-nav a:hover {
    color: #6366f1 !important;
}

.main-nav a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #6366f1, #8b5cf6) !important;
    transition: width 0.3s ease !important;
}

.main-nav a:hover::after {
    width: 100% !important;
}

/* Cards de posts modernos */
.post-card, .post-item, .post {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 2rem !important;
}

.post-card:hover, .post-item:hover, .post:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Thumbnails modernos */
.post-thumbnail, .post-thumb img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.post-card:hover .post-thumbnail, .post-item:hover .post-thumb img {
    transform: scale(1.05) !important;
}

/* Títulos modernos */
.post-title, .entry-title, h1, h2, h3 {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
}

.post-title a, .entry-title a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.post-title a:hover, .entry-title a:hover {
    color: #6366f1 !important;
}

/* Botões modernos */
.btn, .button, .more-link, a[class*="btn"] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.btn:hover, .button:hover, .more-link:hover, a[class*="btn"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
}

/* Sidebar moderna */
.sidebar, .widget-area {
    background: #f9fafb !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    border: 1px solid #e5e7eb !important;
}

.sidebar h3, .widget-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
}

.sidebar h3::after, .widget-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -0.5rem !important;
    left: 0 !important;
    width: 2rem !important;
    height: 3px !important;
    background: linear-gradient(90deg, #6366f1, #8b5cf6) !important;
    border-radius: 2px !important;
}

/* Footer moderno */
.site-footer {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 3rem 0 2rem !important;
    margin-top: 4rem !important;
}

/* Categorias modernas */
.post-category, .cat-links a, .entry-meta .cat-links a {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: white !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Meta informações modernas */
.post-meta, .entry-meta {
    color: #9ca3af !important;
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .post-card, .post-item, .post {
        margin-bottom: 1.5rem !important;
    }
    
    .sidebar, .widget-area {
        padding: 1.5rem !important;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px !important;
}

::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}

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

.post-card, .post-item, .post {
    animation: fadeInUp 0.6s ease-out !important;
}
