/* ============================================
        CSS DE ESTRATÉGIAS DE ESTUDO
============================================ */

.bc-estrategias-archive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bc-archive-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2563eb;
}

.bc-archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.bc-archive-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Filtros */
.bc-filtros-estrategias {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #e2e8f0;
}

.bc-filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.bc-filtro-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.bc-filtro-item select,
.bc-filtro-item input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bc-filtro-item select:focus,
.bc-filtro-item input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bc-btn-filtrar {
    padding: 12px 30px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.bc-btn-filtrar:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Grid de Cards */
.bc-estrategias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bc-estrategia-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

/* HOVER IGUAL EDITAIS ABERTOS */
.bc-estrategia-card:hover {
    transform: translateY(-4px);
    box-shadow:
        3px 3px 0 #1a73e8,
        0 5px 15px rgba(0,0,0,0.46);
    border-color: #1a73e8;
}

.bc-estrategia-card:active {
    transform: translateY(6px);
    box-shadow: 0 4px 10px rgba(0, 94, 233, 0.25);
    border-color: #005ee9;
}

/* Badge de tipo */
.bc-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.bc-badge-hub {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bc-badge-satelite {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.bc-card-thumbnail {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bc-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-card-content {
    padding: 25px;
}

.bc-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.bc-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.bc-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.bc-card-title a:hover {
    color: #2563eb;
}

.bc-card-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.bc-card-date {
    font-size: 0.85rem;
    color: #94a3b8;
}

.bc-btn-ler-mais {
    padding: 8px 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bc-btn-ler-mais:hover {
    background: #1e40af;
    transform: translateX(3px);
    color: white;
}

/* Paginação */
.bc-pagination a {
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    .bc-estrategias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bc-filtros-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-archive-title {
        font-size: 2rem;
    }
}