/* ========================================
   PREVIBOM - Tema 3
   Prefeitura de Bom Jesus da Penha
   ======================================== */

.previbom-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.previbom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.filtro-tipo-btn {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.filtro-tipo-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.publicacao-item {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.publicacao-item:hover {
    background: var(--bg-gray-50);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .previbom-card {
        margin-bottom: 1.5rem;
    }
    
    .filtro-tipo-btn {
        margin-bottom: 0.5rem;
    }
}
